rps: Fix build with CONFIG_SYSFS enabled
Fix build with CONFIG_SYSFS not enabled. Signed-off-by: Tom Herbert <therbert@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
70f60a220b
commit
e880eb6c5c
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue