]> git.baikalelectronics.ru Git - kernel.git/commit
net: cache skb_shinfo() in skb_try_coalesce()
authorEric Dumazet <edumazet@google.com>
Wed, 4 Oct 2017 17:48:35 +0000 (10:48 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 4 Oct 2017 18:34:14 +0000 (11:34 -0700)
commitcf25a2fe4c2945d08530ba1bdfbaf5e0620626aa
tree2d2bec98e7a84c3c1dd1a4a677381bb18dc3f06a
parent98293a7b944118fa9a757036ebe111f817cae7f8
net: cache skb_shinfo() in skb_try_coalesce()

Compiler does not really know that skb_shinfo(to|from) are constants
in skb_try_coalesce(), lets cache their values to shrink code.

We might even take care of skb_zcopy() calls later.

$ size net/core/skbuff.o.before net/core/skbuff.o
   text    data     bss     dec     hex filename
  40727    1298       0   42025    a429 net/core/skbuff.o.before
  40631    1298       0   41929    a3c9 net/core/skbuff.o

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/skbuff.c