On Fri, 2015-06-12 at 18:50 -0700, Alexei Starovoitov wrote: > > sure, that's better. > If you're going to submit it officialy, please add my Tested-by. > My server is happy now :)
Sure , will do. I tried adding __must_check to __skb_header_pointer() but apparently had to use W=1 to get a warning : make W=1 net/core/ CC net/core/flow_dissector.o net/core/flow_dissector.c: In function ‘__skb_flow_dissect’: net/core/flow_dissector.c:390:19: warning: variable ‘opthdr’ set but not used [-Wunused-but-set-variable] u8 _opthdr[2], *opthdr; diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index cc612fc0a8943ec853b92e6b3516b0e5582299e2..45252c4f49e4020eec523273f23f65ee87cc0bd5 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -2743,8 +2743,9 @@ __wsum __skb_checksum(const struct sk_buff *skb, int offset, int len, __wsum skb_checksum(const struct sk_buff *skb, int offset, int len, __wsum csum); -static inline void *__skb_header_pointer(const struct sk_buff *skb, int offset, - int len, void *data, int hlen, void *buffer) +static inline void * __must_check +__skb_header_pointer(const struct sk_buff *skb, int offset, + int len, void *data, int hlen, void *buffer) { if (hlen - offset >= len) return data + offset; -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html