]> git.baikalelectronics.ru Git - kernel.git/commit
net: Don't write to current task flags on every packet received.
authorDavid S. Miller <davem@davemloft.net>
Thu, 14 Feb 2013 20:57:38 +0000 (15:57 -0500)
committerDavid S. Miller <davem@davemloft.net>
Thu, 14 Feb 2013 20:57:38 +0000 (15:57 -0500)
commita25e5fcff1db79681734bf4101229683515c9ae9
tree72273ca8e34846ac586a520b792c147bd95cd498
parent7760bbe2e25b2d632703ab009c7d112fb925e69c
net: Don't write to current task flags on every packet received.

Even for non-pfmalloc SKBs, __netif_receive_skb() will do a
tsk_restore_flags() on current unconditionally.

Make __netif_receive_skb() a shim around the existing code, renamed to
__netif_receive_skb_core().  Let __netif_receive_skb() wrap the
__netif_receive_skb_core() call with the task flag modifications, if
necessary.

Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c