diff options
| author | Carlos Grillet <carlos@carlosgrillet.me> | 2026-06-25 19:25:46 +0200 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2026-07-02 12:17:14 +0200 |
| commit | 32b00984e002708d55b3ad3830198d3ba9126e09 (patch) | |
| tree | 727b134a9a22bcb79e8a37da82b4dae5fb953c62 /include | |
| parent | 9cc4d9720d70f391dca52a07e72652f1693a6239 (diff) | |
| download | linux-32b00984e002708d55b3ad3830198d3ba9126e09.tar.gz linux-32b00984e002708d55b3ad3830198d3ba9126e09.zip | |
netfilter: replace u_int8_t and u_int16t with u8 and u16
Use preferred kernel integer type u8 instead of the POSIX u_int8_t
variant.
No functional change.
Signed-off-by: Carlos Grillet <carlos@carlosgrillet.me>
Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/ip_vs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h index 49297fec448a..ed2e9bc1bb4e 100644 --- a/include/net/ip_vs.h +++ b/include/net/ip_vs.h @@ -2123,7 +2123,7 @@ void ip_vs_update_conntrack(struct sk_buff *skb, struct ip_vs_conn *cp, int outin); int ip_vs_confirm_conntrack(struct sk_buff *skb); void ip_vs_nfct_expect_related(struct sk_buff *skb, struct nf_conn *ct, - struct ip_vs_conn *cp, u_int8_t proto, + struct ip_vs_conn *cp, u8 proto, const __be16 port, int from_rs); void ip_vs_conn_drop_conntrack(struct ip_vs_conn *cp); |
