All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wang Chen <wangchen@cn.fujitsu.com>
To: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Gerrit Renker <gerrit@erg.abdn.ac.uk>,
	davem@davemloft.net, andi@firstfloor.org, netdev@vger.kernel.org
Subject: Re: [PATCH 3/3] [UDP6]: Counter increment on BH mode
Date: Mon, 03 Dec 2007 15:19:35 +0800	[thread overview]
Message-ID: <4753AE07.1040906@cn.fujitsu.com> (raw)
In-Reply-To: <20071201015438.GC26895@gondor.apana.org.au>

Herbert Xu said the following on 2007-12-1 9:54:
> On Fri, Nov 30, 2007 at 11:19:49AM +0000, Gerrit Renker wrote:
>> |  csum_copy_err:
>> | -	UDP6_INC_STATS_USER(UDP_MIB_INERRORS, is_udplite);
>> | +	UDP6_INC_STATS_BH(UDP_MIB_INERRORS, is_udplite);
>> |  	skb_kill_datagram(sk, skb, flags);
>> |  
>> |  	if (flags & MSG_DONTWAIT)
>> | 
>> Is it not the other way round ?? :- 
> 
> I agree.  Wang Chen, please change this and other appropriate
> BH calls to USER.  Basically recvmsg should always be USER while
> rcv is BH.
> 

Resubmit the patch.

System calls should be USER. So change the BH to USER for
UDP*_INC_STATS_BH().

Signed-off-by: Wang Chen <wangchen@cn.fujitsu.com>
---
 ipv4/udp.c |    4 ++--
 ipv6/udp.c |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

--- linux-2.6.24.rc3.org/net/ipv4/udp.c	2007-12-03 15:10:49.000000000 +0800
+++ linux-2.6.24.rc3/net/ipv4/udp.c	2007-12-03 14:52:54.000000000 +0800
@@ -874,7 +874,7 @@ try_again:
 	if (err)
 		goto out_free;
 
-	UDP_INC_STATS_BH(UDP_MIB_INDATAGRAMS, is_udplite);
+	UDP_INC_STATS_USER(UDP_MIB_INDATAGRAMS, is_udplite);
 
 	sock_recv_timestamp(msg, sk, skb);
 
@@ -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);
 
--- linux-2.6.24.rc3.org/net/ipv6/udp.c	2007-12-03 15:10:49.000000000 +0800
+++ linux-2.6.24.rc3/net/ipv6/udp.c	2007-12-03 15:09:55.000000000 +0800
@@ -164,7 +164,7 @@ try_again:
 	if (err)
 		goto out_free;
 
-	UDP6_INC_STATS_BH(UDP_MIB_INDATAGRAMS, is_udplite);
+	UDP6_INC_STATS_USER(UDP_MIB_INDATAGRAMS, is_udplite);
 
 	sock_recv_timestamp(msg, sk, skb);


  reply	other threads:[~2007-12-03  7:22 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-30  3:09 [PATCH 1/3] [SNMP]: Defer InDataGrams increment until recvmsg() does checksum Wang Chen
2007-11-30  3:15 ` [PATCH 2/3] [UDP]: Clean up for IS_UDPLITE macro Wang Chen
2007-11-30 11:05   ` Gerrit Renker
2007-11-30  3:24 ` [PATCH 3/3] [UDP6]: Counter increment on BH mode Wang Chen
2007-11-30 11:19   ` Gerrit Renker
2007-12-01  1:54     ` Herbert Xu
2007-12-03  7:19       ` Wang Chen [this message]
2007-12-03 11:39         ` Herbert Xu
2007-12-03 11:49           ` Alexey Kuznetsov
2007-12-03 11:54             ` Herbert Xu
2007-12-03 13:17               ` Herbert Xu
2007-12-04  3:50                 ` Wang Chen
2007-12-04  3:57                   ` Herbert Xu
2007-12-15 13:58                 ` Herbert Xu
2007-12-15 17:03                   ` Eric Dumazet
2007-12-16  2:30                     ` [SNMP]: Fix SNMP counters with PREEMPT Herbert Xu
2007-12-20 12:13                       ` David Miller
2007-12-15 18:43                   ` [PATCH 3/3] [UDP6]: Counter increment on BH mode Ingo Molnar
2007-12-16  2:36                     ` Herbert Xu
2007-12-16  8:58                       ` Ingo Molnar
2007-12-17 19:42                       ` Christoph Lameter
2007-12-17 19:40                     ` Christoph Lameter
2007-12-18 11:43                   ` Gerrit Renker
2007-12-18 12:49                     ` Herbert Xu
2007-12-20 12:12                   ` David Miller
2007-11-30 10:57 ` [PATCH 1/3] [SNMP]: Defer InDataGrams increment until recvmsg() does checksum Gerrit Renker

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4753AE07.1040906@cn.fujitsu.com \
    --to=wangchen@cn.fujitsu.com \
    --cc=andi@firstfloor.org \
    --cc=davem@davemloft.net \
    --cc=gerrit@erg.abdn.ac.uk \
    --cc=herbert@gondor.apana.org.au \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.