ethtool: fec: fix FEC_NONE check
authorJakub Kicinski <kuba@kernel.org>
Fri, 26 Mar 2021 20:22:22 +0000 (13:22 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 26 Mar 2021 22:09:45 +0000 (15:09 -0700)
Dan points out we need to use the mask not the bit (which is 0).

Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Fixes: 42ce127d9864 ("ethtool: fec: sanitize ethtool_fecparam->fec")
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ethtool/ioctl.c

index 8797533..26b3e70 100644 (file)
@@ -2586,7 +2586,7 @@ static int ethtool_set_fecparam(struct net_device *dev, void __user *useraddr)
        if (copy_from_user(&fecparam, useraddr, sizeof(fecparam)))
                return -EFAULT;
 
-       if (!fecparam.fec || fecparam.fec & ETHTOOL_FEC_NONE_BIT)
+       if (!fecparam.fec || fecparam.fec & ETHTOOL_FEC_NONE)
                return -EINVAL;
 
        fecparam.active_fec = 0;