* Re: [PATCH] Made bpf_internal_load_pointer_neg_helper static: fixes Sparse warning [not found] <1405708449.11800.2.camel@oc1318858833.ibm.com> @ 2014-08-11 22:00 ` Benjamin Lee 2014-08-12 0:57 ` Alexei Starovoitov 0 siblings, 1 reply; 3+ messages in thread From: Benjamin Lee @ 2014-08-11 22:00 UTC (permalink / raw) To: davem, linux-kernel; +Cc: dany, dany4madden, benjamin.fik.lee I wanted to know what the current status of my patch is since my internship will be ending this Friday and I want to know before then. if there are any problems with it I can fix them before Thursday. Thank you in advance. On Fri, 2014-07-18 at 11:34 -0700, Benjamin Lee wrote: > This patch fixes the following Sparse warning: > > net/core/filter.c:52:6: warning: symbol > 'bpf_internal_load_pointer_neg_helper' was not declared. Should it be > static? > > I declared bpf_internal_load_pointer_neg_helper as static because it > is not referenced elsewhere in the kernel. The patched kernel boots > and runs OK. I verified that the section of code is actually being > compiled by temporarily placing a #pragma message inside the function. > I also verified that the function is being called by temporarily > inserting a call to panic. > > I am a high school student trying to become familiar with the open > source process and the Linux kernel, so your guidance is appreciated. > > Signed-off-by Benjamin Lee <leeben@linux.vnet.ibm.com> > Reviewed-by: Dany Madden <danymadden@us.ibm.com> > Reviewed-by: Jim Keniston <jkenisto@us.ibm.com> > > --- > net/core/filter.c | 3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/net/core/filter.c b/net/core/filter.c > index 735fad8..068442a 100644 > --- a/net/core/filter.c > +++ b/net/core/filter.c > @@ -70,7 +70,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; > ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Made bpf_internal_load_pointer_neg_helper static: fixes Sparse warning 2014-08-11 22:00 ` [PATCH] Made bpf_internal_load_pointer_neg_helper static: fixes Sparse warning Benjamin Lee @ 2014-08-12 0:57 ` Alexei Starovoitov 2014-08-12 5:21 ` Daniel Borkmann 0 siblings, 1 reply; 3+ messages in thread From: Alexei Starovoitov @ 2014-08-12 0:57 UTC (permalink / raw) To: Benjamin Lee, netdev@vger.kernel.org Cc: David S. Miller, linux-kernel@vger.kernel.org, dany, dany4madden, benjamin.fik.lee On Mon, Aug 11, 2014 at 3:00 PM, Benjamin Lee <leeben@linux.vnet.ibm.com> wrote: > I wanted to know what the current status of my patch is since my > internship will be ending this Friday and I want to know before then. if > there are any problems with it I can fix them before Thursday. Thank you > in advance. using scripts/get_maintainer.pl for cc list would have helped to receive response sooner. > On Fri, 2014-07-18 at 11:34 -0700, Benjamin Lee wrote: >> This patch fixes the following Sparse warning: >> >> net/core/filter.c:52:6: warning: symbol >> 'bpf_internal_load_pointer_neg_helper' was not declared. Should it be >> static? >> >> I declared bpf_internal_load_pointer_neg_helper as static because it >> is not referenced elsewhere in the kernel. The patched kernel boots the patch is incorrect, since this function is called out of assembler. Try 'git grep bpf_internal_load_pointer_neg_helper' >> and runs OK. I verified that the section of code is actually being your kernel likely compiled ok, because you don't have CONFIG_BPF_JIT=y in your .config For this reason doing 'make allmodconfig' is recommended. >> compiled by temporarily placing a #pragma message inside the function. >> I also verified that the function is being called by temporarily >> inserting a call to panic. >> >> I am a high school student trying to become familiar with the open >> source process and the Linux kernel, so your guidance is appreciated. >> >> Signed-off-by Benjamin Lee <leeben@linux.vnet.ibm.com> >> Reviewed-by: Dany Madden <danymadden@us.ibm.com> >> Reviewed-by: Jim Keniston <jkenisto@us.ibm.com> >> >> --- >> net/core/filter.c | 3 ++- >> 1 files changed, 2 insertions(+), 1 deletions(-) >> >> diff --git a/net/core/filter.c b/net/core/filter.c >> index 735fad8..068442a 100644 >> --- a/net/core/filter.c >> +++ b/net/core/filter.c >> @@ -70,7 +70,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; >> ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Made bpf_internal_load_pointer_neg_helper static: fixes Sparse warning 2014-08-12 0:57 ` Alexei Starovoitov @ 2014-08-12 5:21 ` Daniel Borkmann 0 siblings, 0 replies; 3+ messages in thread From: Daniel Borkmann @ 2014-08-12 5:21 UTC (permalink / raw) To: Alexei Starovoitov Cc: Benjamin Lee, netdev@vger.kernel.org, David S. Miller, linux-kernel@vger.kernel.org, dany, dany4madden, benjamin.fik.lee On 08/12/2014 02:57 AM, Alexei Starovoitov wrote: > On Mon, Aug 11, 2014 at 3:00 PM, Benjamin Lee <leeben@linux.vnet.ibm.com> wrote: >> I wanted to know what the current status of my patch is since my >> internship will be ending this Friday and I want to know before then. if >> there are any problems with it I can fix them before Thursday. Thank you >> in advance. > > using scripts/get_maintainer.pl for cc list would have helped to > receive response sooner. > >> On Fri, 2014-07-18 at 11:34 -0700, Benjamin Lee wrote: >>> This patch fixes the following Sparse warning: >>> >>> net/core/filter.c:52:6: warning: symbol >>> 'bpf_internal_load_pointer_neg_helper' was not declared. Should it be >>> static? >>> >>> I declared bpf_internal_load_pointer_neg_helper as static because it >>> is not referenced elsewhere in the kernel. The patched kernel boots > > the patch is incorrect, since this function is called out of assembler. > Try 'git grep bpf_internal_load_pointer_neg_helper' Agreed. ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-08-12 5:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1405708449.11800.2.camel@oc1318858833.ibm.com>
2014-08-11 22:00 ` [PATCH] Made bpf_internal_load_pointer_neg_helper static: fixes Sparse warning Benjamin Lee
2014-08-12 0:57 ` Alexei Starovoitov
2014-08-12 5:21 ` Daniel Borkmann
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox