[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4BA7E5BF.1080805@oracle.com>
Date: Mon, 22 Mar 2010 14:48:47 -0700
From: Randy Dunlap <randy.dunlap@...cle.com>
To: Tom Herbert <therbert@...gle.com>
CC: davem@...emloft.net, netdev@...r.kernel.org
Subject: Re: rps: Fix build with CONFIG_SYSFS enabled
On 03/22/10 13:57, Tom Herbert wrote:
> Fix build with CONFIG_SYSFS not enabled.
>
>
> Signed-off-by: Tom Herbert <therbert@...gle.com>
> ---
> diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c
> index 7a46343..f6b6bfe 100644
> --- a/net/core/net-sysfs.c
> +++ b/net/core/net-sysfs.c
> @@ -739,7 +739,9 @@ void netdev_unregister_kobject(struct net_device * net)
> if (!net_eq(dev_net(net), &init_net))
> return;
>
> +#ifdef CONFIG_SYSFS
> rx_queue_remove_kobjects(net);
> +#endif
>
> device_del(dev);
> }
> @@ -780,11 +782,13 @@ int netdev_register_kobject(struct net_device *net)
> if (error)
> return error;
>
> +#ifdef CONFIG_SYSFS
> error = rx_queue_register_kobjects(net);
> if (error) {
> device_del(dev);
> return error;
> }
> +#endif
>
> return error;
> }
>
> --
Dave, this patch and Eric's patch both build OK. Your choice...
--
~Randy
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists