Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7a0ff716c2282f4b8d89c65850a4f17399628154
Commit:     7a0ff716c2282f4b8d89c65850a4f17399628154
Parent:     3f192b5c584b8ecddc6069717aaf36d8fa244713
Author:     Mitsuru Chinen <[EMAIL PROTECTED]>
AuthorDate: Mon Nov 5 21:29:17 2007 -0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Nov 7 04:08:54 2007 -0800

    [IPv6] SNMP: Restore Udp6InErrors incrementation
    
    As the checksum verification is postponed till user calls recv or poll,
    the inrementation of Udp6InErrors counter should be also postponed.
    Currently, it is postponed in non-blocking operation case. However it
    should be postponed in all case like the IPv4 code.
    
    Signed-off-by: Mitsuru Chinen <[EMAIL PROTECTED]>
    Acked-by: Herbert Xu <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 net/ipv6/udp.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c
index caebad6..8344d8c 100644
--- a/net/ipv6/udp.c
+++ b/net/ipv6/udp.c
@@ -205,12 +205,11 @@ out:
        return err;
 
 csum_copy_err:
+       UDP6_INC_STATS_USER(UDP_MIB_INERRORS, is_udplite);
        skb_kill_datagram(sk, skb, flags);
 
-       if (flags & MSG_DONTWAIT) {
-               UDP6_INC_STATS_USER(UDP_MIB_INERRORS, is_udplite);
+       if (flags & MSG_DONTWAIT)
                return -EAGAIN;
-       }
        goto try_again;
 }
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to