diff options
author | Jiri Pirko <jpirko@redhat.com> | 2011-03-11 22:14:39 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-16 15:53:54 -0400 |
commit | 8a4eb5734e8d1dc60a8c28576bbbdfdcc643626d (patch) | |
tree | ed4cd2f9a2a04a30994a8f8964a81834c895c0c9 /net/core/skbuff.c | |
parent | 2d7011ca79f1a8792e04d131b8ea21db179ab917 (diff) |
net: introduce rx_handler results and logic around that
This patch allows rx_handlers to better signalize what to do next to
it's caller. That makes skb->deliver_no_wcard no longer needed.
kernel-doc for rx_handler_result is taken from Nicolas' patch.
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Reviewed-by: Nicolas de Pesloüan <nicolas.2p.debian@free.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/skbuff.c')
-rw-r--r-- | net/core/skbuff.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 1eb526a848ff..801dd08908f9 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c | |||
@@ -523,7 +523,6 @@ static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old) | |||
523 | new->ip_summed = old->ip_summed; | 523 | new->ip_summed = old->ip_summed; |
524 | skb_copy_queue_mapping(new, old); | 524 | skb_copy_queue_mapping(new, old); |
525 | new->priority = old->priority; | 525 | new->priority = old->priority; |
526 | new->deliver_no_wcard = old->deliver_no_wcard; | ||
527 | #if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE) | 526 | #if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE) |
528 | new->ipvs_property = old->ipvs_property; | 527 | new->ipvs_property = old->ipvs_property; |
529 | #endif | 528 | #endif |