diff options
author | WANG Cong | 2011-06-19 16:13:01 -0700 |
---|---|---|
committer | David S. Miller | 2011-06-19 16:13:01 -0700 |
commit | cefa9993f161c1c2b6b91b7ea2e84a9bfbd43d2e (patch) | |
tree | ea1a587dd6a87e2c8c5ea84855ca068484fecdf5 /drivers | |
parent | 9aa3c94ce59066f545521033007abb6441706068 (diff) |
netpoll: copy dev name of slaves to struct netpoll
Otherwise we will not see the name of the slave dev in error
message:
[ 388.469446] (null): doesn't support polling, aborting.
Signed-off-by: WANG Cong <amwang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/bonding/bond_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 652b30e525d0..eafe44a528ac 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -1297,6 +1297,7 @@ static inline int slave_enable_netpoll(struct slave *slave) goto out; np->dev = slave->dev; + strlcpy(np->dev_name, slave->dev->name, IFNAMSIZ); err = __netpoll_setup(np); if (err) { kfree(np); |