From: David S. Miller Date: Wed, 23 Aug 2006 05:20:14 +0000 (-0700) Subject: [RTNETLINK]: Don't return error on no-metrics. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a57d27fc7107ddcc655ba2812cfebfce3163fd62;p=linux-beck.git [RTNETLINK]: Don't return error on no-metrics. Instead just cancel the nested attribute and return 0. Signed-off-by: David S. Miller --- diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c index eeff0b23e944..8f225499e32e 100644 --- a/net/core/rtnetlink.c +++ b/net/core/rtnetlink.c @@ -202,8 +202,10 @@ int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics) } } - if (!valid) - goto nla_put_failure; + if (!valid) { + nla_nest_cancel(skb, mx); + return 0; + } return nla_nest_end(skb, mx);