Commit b21dddb9 authored by David S. Miller's avatar David S. Miller

decnet: Stop using NLA_PUT*().

These macros contain a hidden goto, and are thus extremely error
prone and make code hard to audit.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 24c410dc
...@@ -695,13 +695,13 @@ static int dn_nl_fill_ifaddr(struct sk_buff *skb, struct dn_ifaddr *ifa, ...@@ -695,13 +695,13 @@ static int dn_nl_fill_ifaddr(struct sk_buff *skb, struct dn_ifaddr *ifa,
ifm->ifa_scope = ifa->ifa_scope; ifm->ifa_scope = ifa->ifa_scope;
ifm->ifa_index = ifa->ifa_dev->dev->ifindex; ifm->ifa_index = ifa->ifa_dev->dev->ifindex;
if (ifa->ifa_address) if ((ifa->ifa_address &&
NLA_PUT_LE16(skb, IFA_ADDRESS, ifa->ifa_address); nla_put_le16(skb, IFA_ADDRESS, ifa->ifa_address)) ||
if (ifa->ifa_local) (ifa->ifa_local &&
NLA_PUT_LE16(skb, IFA_LOCAL, ifa->ifa_local); nla_put_le16(skb, IFA_LOCAL, ifa->ifa_local)) ||
if (ifa->ifa_label[0]) (ifa->ifa_label[0] &&
NLA_PUT_STRING(skb, IFA_LABEL, ifa->ifa_label); nla_put_string(skb, IFA_LABEL, ifa->ifa_label)))
goto nla_put_failure;
return nlmsg_end(skb, nlh); return nlmsg_end(skb, nlh);
nla_put_failure: nla_put_failure:
......
...@@ -204,11 +204,11 @@ static int dn_fib_rule_fill(struct fib_rule *rule, struct sk_buff *skb, ...@@ -204,11 +204,11 @@ static int dn_fib_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
frh->src_len = r->src_len; frh->src_len = r->src_len;
frh->tos = 0; frh->tos = 0;
if (r->dst_len) if ((r->dst_len &&
NLA_PUT_LE16(skb, FRA_DST, r->dst); nla_put_le16(skb, FRA_DST, r->dst)) ||
if (r->src_len) (r->src_len &&
NLA_PUT_LE16(skb, FRA_SRC, r->src); nla_put_le16(skb, FRA_SRC, r->src)))
goto nla_put_failure;
return 0; return 0;
nla_put_failure: nla_put_failure:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment