summaryrefslogtreecommitdiffstats
path: root/net/core/ethtool.c
diff options
context:
space:
mode:
authorDavid S. Miller2005-06-07 00:07:19 +0200
committerDavid S. Miller2005-06-07 00:07:19 +0200
commitfa04ae5c09f3dfedbc923c2954a9a26a573833f1 (patch)
treedf0b22f8d9f8c954cfb6d863dabb89bde430aac4 /net/core/ethtool.c
parentLinux 2.6.12-rc6 (diff)
downloadkernel-qcow2-linux-fa04ae5c09f3dfedbc923c2954a9a26a573833f1.tar.gz
kernel-qcow2-linux-fa04ae5c09f3dfedbc923c2954a9a26a573833f1.tar.xz
kernel-qcow2-linux-fa04ae5c09f3dfedbc923c2954a9a26a573833f1.zip
[ETHTOOL]: Check correct pointer in ethtool_set_coalesce().
It was checking the "GET" function pointer instead of the "SET" one. Looks like a cut&paste error :-) Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/ethtool.c')
-rw-r--r--net/core/ethtool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/ethtool.c b/net/core/ethtool.c
index 8ec484894d68..a3eeb88e1c81 100644
--- a/net/core/ethtool.c
+++ b/net/core/ethtool.c
@@ -356,7 +356,7 @@ static int ethtool_set_coalesce(struct net_device *dev, void __user *useraddr)
{
struct ethtool_coalesce coalesce;
- if (!dev->ethtool_ops->get_coalesce)
+ if (!dev->ethtool_ops->set_coalesce)
return -EOPNOTSUPP;
if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))