diff options
author | Don Skidmore <donald.c.skidmore@intel.com> | 2008-12-15 01:06:23 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-15 01:06:23 -0800 |
commit | 8b124a8e14c04378466ddfe63e41fc5035f957eb (patch) | |
tree | 62798f7ca17324eea6c4d4c8a7461ddf0d996c81 /net/dcb | |
parent | 5ecc361444a0c641a73cce05fb652d0e3c944451 (diff) | |
download | linux-3.10-8b124a8e14c04378466ddfe63e41fc5035f957eb.tar.gz linux-3.10-8b124a8e14c04378466ddfe63e41fc5035f957eb.tar.bz2 linux-3.10-8b124a8e14c04378466ddfe63e41fc5035f957eb.zip |
net: fix dcbnl_setnumtcs operation check
dcbml_setnumtcs wasn't checking for the presence of the setnumtcs
function. Instead, it was checking for setstate which was a bug.
Signed-off-by: Don Skidmore <donald.c.skidmore@intel.com>
Signed-off-by: Eric W Multanen <eric.w.multanen@intel.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dcb')
-rw-r--r-- | net/dcb/dcbnl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dcb/dcbnl.c b/net/dcb/dcbnl.c index 79a351d323a..a1254061629 100644 --- a/net/dcb/dcbnl.c +++ b/net/dcb/dcbnl.c @@ -469,7 +469,7 @@ static int dcbnl_setnumtcs(struct net_device *netdev, struct nlattr **tb, u8 value; int i; - if (!tb[DCB_ATTR_NUMTCS] || !netdev->dcbnl_ops->setstate) + if (!tb[DCB_ATTR_NUMTCS] || !netdev->dcbnl_ops->setnumtcs) return ret; ret = nla_parse_nested(data, DCB_NUMTCS_ATTR_MAX, tb[DCB_ATTR_NUMTCS], |