Mark function as static in core/filter.c because it is not used outside this file.
This eliminates the following warning in core/filter.c: net/core/filter.c:48:7: warning: no previous prototype for ‘bpf_internal_load_pointer_neg_helper’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria <[email protected]> --- net/core/filter.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/core/filter.c b/net/core/filter.c index ad30d62..a022dad 100644 --- a/net/core/filter.c +++ b/net/core/filter.c @@ -44,7 +44,8 @@ * * Exported for the bpf jit load helper. */ -void *bpf_internal_load_pointer_neg_helper(const struct sk_buff *skb, int k, unsigned int size) +static void *bpf_internal_load_pointer_neg_helper(const struct sk_buff *skb, + int k, unsigned int size) { u8 *ptr = NULL; -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

