Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bbca17680f82b1ba3122d41e8bc675aebf6d1cf2
Commit:     bbca17680f82b1ba3122d41e8bc675aebf6d1cf2
Parent:     b2bf1e2659b1cba5e65f81781cfd530be447f80b
Author:     Wang Chen <[EMAIL PROTECTED]>
AuthorDate: Mon Dec 3 22:36:13 2007 +1100
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Jan 28 14:55:49 2008 -0800

    [UDP]: Counter increment should be in USER mode for recvmsg
    
    System calls should be USER. So change the BH to USER for
    UDP*_INC_STATS_BH().
    
    Signed-off-by: Wang Chen <[EMAIL PROTECTED]>
    Signed-off-by: Herbert Xu <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 net/ipv4/udp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c
index 5e67e32..d0283b7 100644
--- a/net/ipv4/udp.c
+++ b/net/ipv4/udp.c
@@ -899,7 +899,7 @@ out:
        return err;
 
 csum_copy_err:
-       UDP_INC_STATS_BH(UDP_MIB_INERRORS, is_udplite);
+       UDP_INC_STATS_USER(UDP_MIB_INERRORS, is_udplite);
 
        skb_kill_datagram(sk, skb, flags);
 
-
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