Archived
14
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/arch
Neil Horman 3b885787ea net: Generalize socket rx gap / receive queue overflow cmsg
Create a new socket level option to report number of queue overflows

Recently I augmented the AF_PACKET protocol to report the number of frames lost
on the socket receive queue between any two enqueued frames.  This value was
exported via a SOL_PACKET level cmsg.  AFter I completed that work it was
requested that this feature be generalized so that any datagram oriented socket
could make use of this option.  As such I've created this patch, It creates a
new SOL_SOCKET level option called SO_RXQ_OVFL, which when enabled exports a
SOL_SOCKET level cmsg that reports the nubmer of times the sk_receive_queue
overflowed between any two given frames.  It also augments the AF_PACKET
protocol to take advantage of this new feature (as it previously did not touch
sk->sk_drops, which this patch uses to record the overflow count).  Tested
successfully by me.

Notes:

1) Unlike my previous patch, this patch simply records the sk_drops value, which
is not a number of drops between packets, but rather a total number of drops.
Deltas must be computed in user space.

2) While this patch currently works with datagram oriented protocols, it will
also be accepted by non-datagram oriented protocols. I'm not sure if thats
agreeable to everyone, but my argument in favor of doing so is that, for those
protocols which aren't applicable to this option, sk_drops will always be zero,
and reporting no drops on a receive queue that isn't used for those
non-participating protocols seems reasonable to me.  This also saves us having
to code in a per-protocol opt in mechanism.

3) This applies cleanly to net-next assuming that commit
977750076d (my af packet cmsg patch) is reverted

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-10-12 13:26:31 -07:00
..
alpha net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
arm net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
avr32 net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
blackfin const: constify remaining file_operations 2009-10-01 16:11:11 -07:00
cris net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
frv net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
h8300 net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
ia64 net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
m32r net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
m68k net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
m68knommu headers: utsname.h redux 2009-09-23 18:13:10 -07:00
microblaze Merge branch 'for-linus' of git://git.monstr.eu/linux-2.6-microblaze 2009-09-24 09:01:44 -07:00
mips net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
mn10300 net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
parisc net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
powerpc net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
s390 net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
score Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next 2009-09-23 15:37:02 -07:00
sh sh: Add support DMA Engine to SH7780 2009-09-25 12:19:33 +09:00
sparc net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
um um: Clean up linker script using standard macros. 2009-09-24 17:16:22 -07:00
x86 x86: fix csum_ipv6_magic asm memory clobber 2009-10-01 16:11:12 -07:00
xtensa net: Generalize socket rx gap / receive queue overflow cmsg 2009-10-12 13:26:31 -07:00
.gitignore
Kconfig oprofile: fix oprofile regression: select RING_BUFFER_ALLOW_SWAP 2009-09-17 15:53:42 -04:00