netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] netprio_cgroup: Fix build break
@ 2011-11-23 12:32 Neil Horman
  2011-11-23 13:11 ` Kirill Smelkov
  2011-11-23 20:53 ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Neil Horman @ 2011-11-23 12:32 UTC (permalink / raw)
  To: netdev
  Cc: Neil Horman, Kirill Smelkov, David S. Miller, john.r.fastabend,
	robert.w.love, Stephen Rothwell, linux-next

I broke the build with the addition of netprio_cgroups if CONFIG_CGROUPS=n.
This patch corrects it by moving the offending struct into an ifdef
CONFIG_CGROUPS block.  Also clean up a few needless defines and inline functions
that don't get called if CONFIG_CGROUPS isn't defined while Im at it.

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
CC: Kirill Smelkov <kirr@mns.spb.ru>
CC: "David S. Miller" <davem@davemloft.net>
CC: john.r.fastabend@intel.com
CC: robert.w.love@intel.com
CC: Stephen Rothwell <sfr@canb.auug.org.au>
CC: linux-next@vger.kernel.org
---
 include/net/netprio_cgroup.h |   18 +++++-------------
 1 files changed, 5 insertions(+), 13 deletions(-)

diff --git a/include/net/netprio_cgroup.h b/include/net/netprio_cgroup.h
index c432e99..e503b87 100644
--- a/include/net/netprio_cgroup.h
+++ b/include/net/netprio_cgroup.h
@@ -18,11 +18,6 @@
 #include <linux/hardirq.h>
 #include <linux/rcupdate.h>
 
-struct cgroup_netprio_state
-{
-	struct cgroup_subsys_state css;
-	u32 prioidx;
-};
 
 struct netprio_map {
 	struct rcu_head rcu;
@@ -32,6 +27,11 @@ struct netprio_map {
 
 #ifdef CONFIG_CGROUPS
 
+struct cgroup_netprio_state {
+	struct cgroup_subsys_state css;
+	u32 prioidx;
+};
+
 #ifndef CONFIG_NETPRIO_CGROUP
 extern int net_prio_subsys_id;
 #endif
@@ -52,14 +52,6 @@ static inline struct cgroup_netprio_state
 #else
 
 #define sock_update_netprioidx(sk)
-#define skb_update_prio(skb)
-
-static inline struct cgroup_netprio_state
-		*task_netprio_state(struct task_struct *p)
-{
-	return NULL;
-}
-
 #endif
 
 #endif  /* _NET_CLS_CGROUP_H */
-- 
1.7.6.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] netprio_cgroup: Fix build break
  2011-11-23 12:32 [PATCH] netprio_cgroup: Fix build break Neil Horman
@ 2011-11-23 13:11 ` Kirill Smelkov
  2011-11-23 14:22   ` Neil Horman
  2011-11-23 20:53 ` David Miller
  1 sibling, 1 reply; 4+ messages in thread
From: Kirill Smelkov @ 2011-11-23 13:11 UTC (permalink / raw)
  To: Neil Horman
  Cc: netdev, David S. Miller, john.r.fastabend, robert.w.love,
	Stephen Rothwell, linux-next

On Wed, Nov 23, 2011 at 07:32:33AM -0500, Neil Horman wrote:
> I broke the build with the addition of netprio_cgroups if CONFIG_CGROUPS=n.
> This patch corrects it by moving the offending struct into an ifdef
> CONFIG_CGROUPS block.  Also clean up a few needless defines and inline functions
> that don't get called if CONFIG_CGROUPS isn't defined while Im at it.

Thanks Neil, now it compiles ok.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] netprio_cgroup: Fix build break
  2011-11-23 13:11 ` Kirill Smelkov
@ 2011-11-23 14:22   ` Neil Horman
  0 siblings, 0 replies; 4+ messages in thread
From: Neil Horman @ 2011-11-23 14:22 UTC (permalink / raw)
  To: Kirill Smelkov
  Cc: netdev, David S. Miller, john.r.fastabend, robert.w.love,
	Stephen Rothwell, linux-next

On Wed, Nov 23, 2011 at 05:11:47PM +0400, Kirill Smelkov wrote:
> On Wed, Nov 23, 2011 at 07:32:33AM -0500, Neil Horman wrote:
> > I broke the build with the addition of netprio_cgroups if CONFIG_CGROUPS=n.
> > This patch corrects it by moving the offending struct into an ifdef
> > CONFIG_CGROUPS block.  Also clean up a few needless defines and inline functions
> > that don't get called if CONFIG_CGROUPS isn't defined while Im at it.
> 
> Thanks Neil, now it compiles ok.
> 
Np, sorry for the trouble.  I should have double checked that make oldconfig did
what I assumed it did
Neil

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] netprio_cgroup: Fix build break
  2011-11-23 12:32 [PATCH] netprio_cgroup: Fix build break Neil Horman
  2011-11-23 13:11 ` Kirill Smelkov
@ 2011-11-23 20:53 ` David Miller
  1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2011-11-23 20:53 UTC (permalink / raw)
  To: nhorman; +Cc: netdev, kirr, john.r.fastabend, robert.w.love, sfr, linux-next

From: Neil Horman <nhorman@tuxdriver.com>
Date: Wed, 23 Nov 2011 07:32:33 -0500

> I broke the build with the addition of netprio_cgroups if CONFIG_CGROUPS=n.
> This patch corrects it by moving the offending struct into an ifdef
> CONFIG_CGROUPS block.  Also clean up a few needless defines and inline functions
> that don't get called if CONFIG_CGROUPS isn't defined while Im at it.
> 
> Signed-off-by: Neil Horman <nhorman@tuxdriver.com>

Applied, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-11-23 20:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-23 12:32 [PATCH] netprio_cgroup: Fix build break Neil Horman
2011-11-23 13:11 ` Kirill Smelkov
2011-11-23 14:22   ` Neil Horman
2011-11-23 20:53 ` 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).