Skip to content
Snippets Groups Projects
Commit 0c1ad04a authored by WANG Cong's avatar WANG Cong Committed by David S. Miller
Browse files

netpoll: prevent netpoll setup on slave devices


In commit 8d8fc29d
(netpoll: disable netpoll when enslave a device), we automatically
disable netpoll when the underlying device is being enslaved,
we also need to prevent people from setuping netpoll on
devices that are already enslaved.

Signed-off-by: default avatarWANG Cong <amwang@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fe6fe792
No related branches found
No related tags found
No related merge requests found
......@@ -792,6 +792,12 @@ int netpoll_setup(struct netpoll *np)
return -ENODEV;
}
if (ndev->master) {
printk(KERN_ERR "%s: %s is a slave device, aborting.\n",
np->name, np->dev_name);
return -EBUSY;
}
if (!netif_running(ndev)) {
unsigned long atmost, atleast;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment