* [PATCH -next] netdev: inet_timewait_sock.h missing semi-colon when KMEMCHECK is enabled [not found] <1381762088-18880-1-git-send-email-treding@nvidia.com> @ 2013-10-14 19:36 ` Randy Dunlap 2013-10-14 19:53 ` Joe Perches 2013-10-17 19:57 ` David Miller 0 siblings, 2 replies; 6+ messages in thread From: Randy Dunlap @ 2013-10-14 19:36 UTC (permalink / raw) To: Thierry Reding, linux-next, linux-kernel Cc: Mark Brown, netdev@vger.kernel.org, David Miller From: Randy Dunlap <rdunlap@infradead.org> Fix (a few hundred) build errors due to missing semi-colon when KMEMCHECK is enabled: include/net/inet_timewait_sock.h:139:2: error: expected ',', ';' or '}' before 'int' include/net/inet_timewait_sock.h:148:28: error: 'const struct inet_timewait_sock' has no member named 'tw_death_node' Signed-off-by: Randy Dunlap <rdunlap@infradead.org> --- include/net/inet_timewait_sock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- next-2013-1014.orig/include/net/inet_timewait_sock.h +++ next-2013-1014/include/net/inet_timewait_sock.h @@ -135,7 +135,7 @@ struct inet_timewait_sock { tw_transparent : 1, tw_pad : 6, /* 6 bits hole */ tw_tos : 8, - tw_pad2 : 16 /* 16 bits hole */ + tw_pad2 : 16; /* 16 bits hole */ kmemcheck_bitfield_end(flags); u32 tw_ttd; struct inet_bind_bucket *tw_tb; ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH -next] netdev: inet_timewait_sock.h missing semi-colon when KMEMCHECK is enabled 2013-10-14 19:36 ` [PATCH -next] netdev: inet_timewait_sock.h missing semi-colon when KMEMCHECK is enabled Randy Dunlap @ 2013-10-14 19:53 ` Joe Perches 2013-10-14 20:47 ` Randy Dunlap 2013-10-17 19:57 ` David Miller 1 sibling, 1 reply; 6+ messages in thread From: Joe Perches @ 2013-10-14 19:53 UTC (permalink / raw) To: Randy Dunlap Cc: Thierry Reding, linux-next, linux-kernel, Mark Brown, netdev@vger.kernel.org, David Miller On Mon, 2013-10-14 at 12:36 -0700, Randy Dunlap wrote: > From: Randy Dunlap <rdunlap@infradead.org> > > Fix (a few hundred) build errors due to missing semi-colon when > KMEMCHECK is enabled: > > include/net/inet_timewait_sock.h:139:2: error: expected ',', ';' or '}' before 'int' > include/net/inet_timewait_sock.h:148:28: error: 'const struct inet_timewait_sock' has no member named 'tw_death_node' > > Signed-off-by: Randy Dunlap <rdunlap@infradead.org> > --- > include/net/inet_timewait_sock.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- next-2013-1014.orig/include/net/inet_timewait_sock.h > +++ next-2013-1014/include/net/inet_timewait_sock.h > @@ -135,7 +135,7 @@ struct inet_timewait_sock { > tw_transparent : 1, > tw_pad : 6, /* 6 bits hole */ > tw_tos : 8, > - tw_pad2 : 16 /* 16 bits hole */ > + tw_pad2 : 16; /* 16 bits hole */ > kmemcheck_bitfield_end(flags); > u32 tw_ttd; > struct inet_bind_bucket *tw_tb; > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ Shouldn't this be done in kmemcheck.h? include/linux/kmemcheck.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/kmemcheck.h b/include/linux/kmemcheck.h index 39f8453..b9ffad5 100644 --- a/include/linux/kmemcheck.h +++ b/include/linux/kmemcheck.h @@ -62,10 +62,10 @@ bool kmemcheck_is_obj_initialized(unsigned long addr, size_t size); * kmemcheck_annotate_bitfield(a, flags); */ #define kmemcheck_bitfield_begin(name) \ - int name##_begin[0]; + int name##_begin[0] #define kmemcheck_bitfield_end(name) \ - int name##_end[0]; + int name##_end[0] #define kmemcheck_annotate_bitfield(ptr, name) \ do { \ ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH -next] netdev: inet_timewait_sock.h missing semi-colon when KMEMCHECK is enabled 2013-10-14 19:53 ` Joe Perches @ 2013-10-14 20:47 ` Randy Dunlap 2013-10-14 21:24 ` Joe Perches 2013-10-14 21:25 ` Joe Perches 0 siblings, 2 replies; 6+ messages in thread From: Randy Dunlap @ 2013-10-14 20:47 UTC (permalink / raw) To: Joe Perches Cc: Thierry Reding, linux-next, linux-kernel, Mark Brown, netdev@vger.kernel.org, David Miller On 10/14/13 12:53, Joe Perches wrote: > On Mon, 2013-10-14 at 12:36 -0700, Randy Dunlap wrote: >> From: Randy Dunlap <rdunlap@infradead.org> >> >> Fix (a few hundred) build errors due to missing semi-colon when >> KMEMCHECK is enabled: >> >> include/net/inet_timewait_sock.h:139:2: error: expected ',', ';' or '}' before 'int' >> include/net/inet_timewait_sock.h:148:28: error: 'const struct inet_timewait_sock' has no member named 'tw_death_node' >> >> Signed-off-by: Randy Dunlap <rdunlap@infradead.org> >> --- >> include/net/inet_timewait_sock.h | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> --- next-2013-1014.orig/include/net/inet_timewait_sock.h >> +++ next-2013-1014/include/net/inet_timewait_sock.h >> @@ -135,7 +135,7 @@ struct inet_timewait_sock { >> tw_transparent : 1, >> tw_pad : 6, /* 6 bits hole */ >> tw_tos : 8, >> - tw_pad2 : 16 /* 16 bits hole */ >> + tw_pad2 : 16; /* 16 bits hole */ >> kmemcheck_bitfield_end(flags); >> u32 tw_ttd; >> struct inet_bind_bucket *tw_tb; >> -- >> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in >> the body of a message to majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html >> Please read the FAQ at http://www.tux.org/lkml/ > > Shouldn't this be done in kmemcheck.h? This patch makes sense and probably should be merged but it does not fix the build errors that I reported. > include/linux/kmemcheck.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/include/linux/kmemcheck.h b/include/linux/kmemcheck.h > index 39f8453..b9ffad5 100644 > --- a/include/linux/kmemcheck.h > +++ b/include/linux/kmemcheck.h > @@ -62,10 +62,10 @@ bool kmemcheck_is_obj_initialized(unsigned long addr, size_t size); > * kmemcheck_annotate_bitfield(a, flags); > */ > #define kmemcheck_bitfield_begin(name) \ > - int name##_begin[0]; > + int name##_begin[0] > > #define kmemcheck_bitfield_end(name) \ > - int name##_end[0]; > + int name##_end[0] > > #define kmemcheck_annotate_bitfield(ptr, name) \ > do { \ > > > -- -- ~Randy ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH -next] netdev: inet_timewait_sock.h missing semi-colon when KMEMCHECK is enabled 2013-10-14 20:47 ` Randy Dunlap @ 2013-10-14 21:24 ` Joe Perches 2013-10-14 21:25 ` Joe Perches 1 sibling, 0 replies; 6+ messages in thread From: Joe Perches @ 2013-10-14 21:24 UTC (permalink / raw) To: Randy Dunlap Cc: Thierry Reding, linux-next, linux-kernel, Mark Brown, netdev@vger.kernel.org, David Miller On Mon, 2013-10-14 at 13:47 -0700, Randy Dunlap wrote: > On 10/14/13 12:53, Joe Perches wrote: > > On Mon, 2013-10-14 at 12:36 -0700, Randy Dunlap wrote: > >> From: Randy Dunlap <rdunlap@infradead.org> > >> > >> Fix (a few hundred) build errors due to missing semi-colon when > >> KMEMCHECK is enabled: > >> > >> include/net/inet_timewait_sock.h:139:2: error: expected ',', ';' or '}' before 'int' > >> include/net/inet_timewait_sock.h:148:28: error: 'const struct inet_timewait_sock' has no member named 'tw_death_node' > >> > >> Signed-off-by: Randy Dunlap <rdunlap@infradead.org> > >> --- > >> include/net/inet_timewait_sock.h | 2 +- > >> 1 file changed, 1 insertion(+), 1 deletion(-) > >> > >> --- next-2013-1014.orig/include/net/inet_timewait_sock.h > >> +++ next-2013-1014/include/net/inet_timewait_sock.h > >> @@ -135,7 +135,7 @@ struct inet_timewait_sock { > >> tw_transparent : 1, > >> tw_pad : 6, /* 6 bits hole */ > >> tw_tos : 8, > >> - tw_pad2 : 16 /* 16 bits hole */ > >> + tw_pad2 : 16; /* 16 bits hole */ > >> kmemcheck_bitfield_end(flags); > >> u32 tw_ttd; > >> struct inet_bind_bucket *tw_tb; > >> -- > >> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > >> the body of a message to majordomo@vger.kernel.org > >> More majordomo info at http://vger.kernel.org/majordomo-info.html > >> Please read the FAQ at http://www.tux.org/lkml/ > > > > Shouldn't this be done in kmemcheck.h? > > This patch makes sense and probably should be merged > but it does not fix the build errors that I reported. You sure? ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH -next] netdev: inet_timewait_sock.h missing semi-colon when KMEMCHECK is enabled 2013-10-14 20:47 ` Randy Dunlap 2013-10-14 21:24 ` Joe Perches @ 2013-10-14 21:25 ` Joe Perches 1 sibling, 0 replies; 6+ messages in thread From: Joe Perches @ 2013-10-14 21:25 UTC (permalink / raw) To: Randy Dunlap Cc: Thierry Reding, linux-next, linux-kernel, Mark Brown, netdev@vger.kernel.org, David Miller On Mon, 2013-10-14 at 13:47 -0700, Randy Dunlap wrote: > On 10/14/13 12:53, Joe Perches wrote: > > On Mon, 2013-10-14 at 12:36 -0700, Randy Dunlap wrote: > >> From: Randy Dunlap <rdunlap@infradead.org> > >> > >> Fix (a few hundred) build errors due to missing semi-colon when > >> KMEMCHECK is enabled: keyword: enabled... > > Shouldn't this be done in kmemcheck.h? > > This patch makes sense and probably should be merged > but it does not fix the build errors that I reported. Duh, enabled. Yeah, you're sure... ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH -next] netdev: inet_timewait_sock.h missing semi-colon when KMEMCHECK is enabled 2013-10-14 19:36 ` [PATCH -next] netdev: inet_timewait_sock.h missing semi-colon when KMEMCHECK is enabled Randy Dunlap 2013-10-14 19:53 ` Joe Perches @ 2013-10-17 19:57 ` David Miller 1 sibling, 0 replies; 6+ messages in thread From: David Miller @ 2013-10-17 19:57 UTC (permalink / raw) To: rdunlap; +Cc: thierry.reding, linux-next, linux-kernel, broonie, netdev From: Randy Dunlap <rdunlap@infradead.org> Date: Mon, 14 Oct 2013 12:36:32 -0700 > From: Randy Dunlap <rdunlap@infradead.org> > > Fix (a few hundred) build errors due to missing semi-colon when > KMEMCHECK is enabled: > > include/net/inet_timewait_sock.h:139:2: error: expected ',', ';' or '}' before 'int' > include/net/inet_timewait_sock.h:148:28: error: 'const struct inet_timewait_sock' has no member named 'tw_death_node' > > Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Applied, thanks Randy. ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-10-17 19:57 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1381762088-18880-1-git-send-email-treding@nvidia.com>
2013-10-14 19:36 ` [PATCH -next] netdev: inet_timewait_sock.h missing semi-colon when KMEMCHECK is enabled Randy Dunlap
2013-10-14 19:53 ` Joe Perches
2013-10-14 20:47 ` Randy Dunlap
2013-10-14 21:24 ` Joe Perches
2013-10-14 21:25 ` Joe Perches
2013-10-17 19:57 ` David Miller
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).