diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2009-09-01 21:37:16 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-09-01 21:37:16 -0400 |
commit | 0625491493d9000e4556bf566d205c28c8e7dc4e (patch) | |
tree | 3bb5524ca48b3c76b93bca9b1d63c4cd1d0a499e /net/ipv6/ip6_output.c | |
parent | f2798eb4e01b095f273f4bf40f511c9d69c0e1da (diff) |
ipv6: ip6_push_pending_frames() should increment IPSTATS_MIB_OUTDISCARDS
qdisc drops should be notified to IP_RECVERR enabled sockets, as done in IPV4.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ip6_output.c')
-rw-r--r-- | net/ipv6/ip6_output.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index 6ad5aadf81ad..a931229856b6 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c | |||
@@ -1520,6 +1520,7 @@ out: | |||
1520 | ip6_cork_release(inet, np); | 1520 | ip6_cork_release(inet, np); |
1521 | return err; | 1521 | return err; |
1522 | error: | 1522 | error: |
1523 | IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS); | ||
1523 | goto out; | 1524 | goto out; |
1524 | } | 1525 | } |
1525 | 1526 | ||