|
@@ -953,7 +953,7 @@ net_rx_queue_update_kobjects(struct net_device *dev, int old_num, int new_num)
|
|
|
while (--i >= new_num) {
|
|
|
struct kobject *kobj = &dev->_rx[i].kobj;
|
|
|
|
|
|
- if (!list_empty(&dev_net(dev)->exit_list))
|
|
|
+ if (!atomic_read(&dev_net(dev)->count))
|
|
|
kobj->uevent_suppress = 1;
|
|
|
if (dev->sysfs_rx_queue_group)
|
|
|
sysfs_remove_group(kobj, dev->sysfs_rx_queue_group);
|
|
@@ -1371,7 +1371,7 @@ netdev_queue_update_kobjects(struct net_device *dev, int old_num, int new_num)
|
|
|
while (--i >= new_num) {
|
|
|
struct netdev_queue *queue = dev->_tx + i;
|
|
|
|
|
|
- if (!list_empty(&dev_net(dev)->exit_list))
|
|
|
+ if (!atomic_read(&dev_net(dev)->count))
|
|
|
queue->kobj.uevent_suppress = 1;
|
|
|
#ifdef CONFIG_BQL
|
|
|
sysfs_remove_group(&queue->kobj, &dql_group);
|
|
@@ -1558,7 +1558,7 @@ void netdev_unregister_kobject(struct net_device *ndev)
|
|
|
{
|
|
|
struct device *dev = &(ndev->dev);
|
|
|
|
|
|
- if (!list_empty(&dev_net(ndev)->exit_list))
|
|
|
+ if (!atomic_read(&dev_net(ndev)->count))
|
|
|
dev_set_uevent_suppress(dev, 1);
|
|
|
|
|
|
kobject_get(&dev->kobj);
|