kernel/net/decnet/dn_table.c
.. .. @@ -156,7 +156,7 @@ 156 156 default: 157 157 printk(KERN_DEBUG "DECnet: dn_rehash_zone: BUG! %d\n", 158 158 old_divisor); 159 - /* fall through */159 + fallthrough;160 160 case 256: 161 161 new_divisor = 1024; 162 162 new_hashmask = 0x3FF; .. .. @@ -348,7 +348,8 @@ 348 348 struct rtnexthop *nhp; 349 349 struct nlattr *mp_head; 350 350 351 - if (!(mp_head = nla_nest_start(skb, RTA_MULTIPATH)))351 + mp_head = nla_nest_start_noflag(skb, RTA_MULTIPATH);352 + if (!mp_head)352 353 goto errout; 353 354 354 355 for_nexthops(fi) {