summaryrefslogtreecommitdiffstats
path: root/net/dcb/dcbnl.c
diff options
context:
space:
mode:
authorPan Bian <bianpan2016@163.com>2016-12-03 08:49:08 -0500
committerDavid S. Miller <davem@davemloft.net>2016-12-03 23:54:25 -0500
commitc66ebf2db555c6ed705044eabd2b37dcd546f68b (patch)
treebcc603ed251cdf86642b9441b4658fa93f4d9b50 /net/dcb/dcbnl.c
parenta38b61009425b3882704270e792a6e743f5d9426 (diff)
net: dcb: set error code on failures
In function dcbnl_cee_fill(), returns the value of variable err on errors. However, on some error paths (e.g. nla put fails), its value may be 0. It may be better to explicitly set a negative errno to variable err before returning. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=188881 Signed-off-by: Pan Bian <bianpan2016@163.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dcb/dcbnl.c')
-rw-r--r--net/dcb/dcbnl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/dcb/dcbnl.c b/net/dcb/dcbnl.c
index 4f6c1862dfd2..3202d75329b5 100644
--- a/net/dcb/dcbnl.c
+++ b/net/dcb/dcbnl.c
@@ -1353,6 +1353,7 @@ static int dcbnl_cee_fill(struct sk_buff *skb, struct net_device *netdev)
1353dcb_unlock: 1353dcb_unlock:
1354 spin_unlock_bh(&dcb_lock); 1354 spin_unlock_bh(&dcb_lock);
1355nla_put_failure: 1355nla_put_failure:
1356 err = -EMSGSIZE;
1356 return err; 1357 return err;
1357} 1358}
1358 1359