From: Florian Westphal <f...@strlen.de> Date: Sat, 23 Sep 2017 21:26:33 +0200
> @@ -1332,6 +1332,14 @@ static int nla_put_iflink(struct sk_buff *skb, const > struct net_device *dev) > return nla_put_u32(skb, IFLA_LINK, ifindex); > } > > +static noinline int nla_put_ifalias(struct sk_buff *skb, struct net_device > *dev) Please do use inline annoations in foo.c files unless there is a very strong specific need. Thank you.