diff options
author | Jamal Hadi Salim <jhs@mojatatu.com> | 2011-08-15 05:25:40 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-08-17 20:10:20 -0700 |
commit | 8919bc13e8d92c5b082c5c0321567383a071f5bc (patch) | |
tree | 1558f718b5fb02cdd0fca1ac53d1cb8199463d2c /net | |
parent | c2bceb3d7f145af5a0916bea700f2f9d380901ea (diff) | |
download | linux-3.10-8919bc13e8d92c5b082c5c0321567383a071f5bc.tar.gz linux-3.10-8919bc13e8d92c5b082c5c0321567383a071f5bc.tar.bz2 linux-3.10-8919bc13e8d92c5b082c5c0321567383a071f5bc.zip |
net_sched: fix port mirror/redirect stats reporting
When a redirected or mirrored packet is dropped by the target
device we need to record statistics.
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/sched/act_mirred.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sched/act_mirred.c b/net/sched/act_mirred.c index 102fc212cd6..e051398fdf6 100644 --- a/net/sched/act_mirred.c +++ b/net/sched/act_mirred.c @@ -196,8 +196,7 @@ static int tcf_mirred(struct sk_buff *skb, const struct tc_action *a, skb2->skb_iif = skb->dev->ifindex; skb2->dev = dev; - dev_queue_xmit(skb2); - err = 0; + err = dev_queue_xmit(skb2); out: if (err) { |