From: David Miller <davem@davemloft.net>
To: gerrit@erg.abdn.ac.uk
Cc: netdev@vger.kernel.org, kaber@coreworks.de, jmorris@namei.org
Subject: Re: [ PATCH 2.6.17-rc6 1/1] udp.c: counting InDatagrams which are never delivered
Date: Sun, 11 Jun 2006 23:13:00 -0700 (PDT) [thread overview]
Message-ID: <20060611.231300.95505265.davem@davemloft.net> (raw)
In-Reply-To: <200606120702.46014@strip-the-willow>
From: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Date: Mon, 12 Jun 2006 07:02:45 +0100
> This is clearly preferable - would it look like this:
>
> csum_copy_err:
> UDP_INC_STATS_BH(UDP_MIB_INERRORS);
> UDP_DEC_STATS_BH(UDP_MIB_INDATAGRAMS); /* requires new macro */
>
> skb_kill_datagram(sk, skb, flags);
> /* ... */
>
> in udp_recvmsg? Here I must pass - there is no xxx_DEC_BH macro in
> include/net/snmp.h and I don't know whether the following guess is correct:
>
> #define SNMP_DEC_STATS_BH(mib, field) \
> (per_cpu_ptr(mib[0], raw_smp_processor_id())->mibs[field]--)
>
> If this is correct, then it seems done; one could use this macro or add
> a corresponding UDP_DEC_STATS_BH to include/net/udp.h .
The index of mib[] in those macros is always "!in_softirq()", the
*_BH() variants use zero for the index because they are called in
contexts where we know that "!in_sortirq()" evaluates to false.
So your SNMP_DEC_STATS_BH() macro is correct.
Can you cook up the patch, which adds your SNMP_DEC_STATS_BH() macro,
the UDP_DEC_STATS_BH counterpart, and the change that uses it in
net/ipv4/udp.c?
I'd appreciate this, thanks a lot.
next prev parent reply other threads:[~2006-06-12 6:12 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-06 18:25 [ PATCH 2.6.17-rc6 1/1] udp.c: counting InDatagrams which are never delivered Gerrit Renker
2006-06-12 4:29 ` David Miller
2006-06-12 6:02 ` Gerrit Renker
2006-06-12 6:13 ` David Miller [this message]
2006-06-12 7:22 ` Gerrit Renker
2006-06-12 6:18 ` Herbert Xu
2006-06-12 6:49 ` David Miller
2006-06-12 7:43 ` Herbert Xu
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=20060611.231300.95505265.davem@davemloft.net \
--to=davem@davemloft.net \
--cc=gerrit@erg.abdn.ac.uk \
--cc=jmorris@namei.org \
--cc=kaber@coreworks.de \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).