diff options
author | Michał Mirosław <mirq-linux@rere.qmqm.pl> | 2012-01-22 04:20:40 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-23 08:41:05 +0400 |
commit | f80400a26a2e8bff541de12834a1134358bb6642 (patch) | |
tree | d88f2bda3e213b576714bb781e274833ef50b9b5 /net | |
parent | b1cc16b8e643096adb92bbcb76c6c4c564141c40 (diff) | |
download | linux-f80400a26a2e8bff541de12834a1134358bb6642.tar.xz |
ethtool: allow ETHTOOL_GSSET_INFO for users
Allow ETHTOOL_GSSET_INFO ethtool ioctl() for unprivileged users.
ETHTOOL_GSTRINGS is already allowed, but is unusable without this one.
Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Acked-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/ethtool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/core/ethtool.c b/net/core/ethtool.c index 921aa2b4b415..369b41894527 100644 --- a/net/core/ethtool.c +++ b/net/core/ethtool.c @@ -1311,6 +1311,7 @@ int dev_ethtool(struct net *net, struct ifreq *ifr) case ETHTOOL_GRXCSUM: case ETHTOOL_GTXCSUM: case ETHTOOL_GSG: + case ETHTOOL_GSSET_INFO: case ETHTOOL_GSTRINGS: case ETHTOOL_GTSO: case ETHTOOL_GPERMADDR: |