diff options
author | John Fastabend <john.r.fastabend@intel.com> | 2012-06-20 19:56:21 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-21 15:06:00 -0700 |
commit | bb1dfefdc62fa68107c4c9f1374cb856743a9434 (patch) | |
tree | c99e17b49d9f0a95720a1300d12dd0279f0cdbf2 /net/dcb | |
parent | f73332fc39e35a6ac14f892390adcd34a63b00d3 (diff) | |
download | kernel_goldelico_gta04-bb1dfefdc62fa68107c4c9f1374cb856743a9434.zip kernel_goldelico_gta04-bb1dfefdc62fa68107c4c9f1374cb856743a9434.tar.gz kernel_goldelico_gta04-bb1dfefdc62fa68107c4c9f1374cb856743a9434.tar.bz2 |
net: dcb: fix small regression in __dcbnl_pg_setcfg()
A small regression was introduced in the reply command of
dcbnl_pg_setcfg(). User space apps may be expecting the
DCB_ATTR_PG_CFG attribute to be returned with the patch
below TX or RX variants are returned.
commit 7be994138b188387691322921c08e19bddf6d3c5
Author: Thomas Graf <tgraf@suug.ch>
Date: Wed Jun 13 02:54:55 2012 +0000
dcbnl: Shorten all command handling functions
This patch reverts this behavior and returns DCB_ATTR_PG_CFG
Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dcb')
-rw-r--r-- | net/dcb/dcbnl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/dcb/dcbnl.c b/net/dcb/dcbnl.c index 0a36007..013da86 100644 --- a/net/dcb/dcbnl.c +++ b/net/dcb/dcbnl.c @@ -852,8 +852,7 @@ static int __dcbnl_pg_setcfg(struct net_device *netdev, struct nlmsghdr *nlh, } } - return nla_put_u8(skb, - (dir ? DCB_CMD_PGRX_SCFG : DCB_CMD_PGTX_SCFG), 0); + return nla_put_u8(skb, DCB_ATTR_PG_CFG, 0); } static int dcbnl_pgtx_setcfg(struct net_device *netdev, struct nlmsghdr *nlh, |