Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f4575d35 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

flow_keys: n_proto type should be __be16



(struct flow_keys)->n_proto is in network order, use
proper type for this.

Fixes following sparse errors :

net/core/flow_dissector.c:139:39: warning: incorrect type in assignment (different base types)
net/core/flow_dissector.c:139:39:    expected unsigned short [unsigned] [usertype] n_proto
net/core/flow_dissector.c:139:39:    got restricted __be16 [assigned] [usertype] proto
net/core/flow_dissector.c:237:23: warning: incorrect type in assignment (different base types)
net/core/flow_dissector.c:237:23:    expected unsigned short [unsigned] [usertype] n_proto
net/core/flow_dissector.c:237:23:    got restricted __be16 [assigned] [usertype] proto

Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Fixes: e0f31d84 ("flow_keys: Record IP layer protocol in skb_flow_dissect()")
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d1e158e2
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -23,7 +23,7 @@ struct flow_keys {
		__be16 port16[2];
		__be16 port16[2];
	};
	};
	u16	thoff;
	u16	thoff;
	u16 n_proto;
	__be16	n_proto;
	u8	ip_proto;
	u8	ip_proto;
};
};