netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] AF_PACKET: Add documentation for queue mapping fanout mode
@ 2014-01-27 16:43 Neil Horman
  2014-01-27 16:59 ` Daniel Borkmann
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Neil Horman @ 2014-01-27 16:43 UTC (permalink / raw)
  To: netdev; +Cc: Neil Horman, David S. Miller, Daniel Borkmann

Recently I added a new AF_PACKET fanout operation mode in commit
2d36097, but I forgot to document it.  Add PACKET_FANOUT_QM as an available mode
in the af_packet documentation.  Applies to net-next.

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
CC: "David S. Miller" <davem@davemloft.net>
CC: Daniel Borkmann <dborkman@redhat.com>
---
 Documentation/networking/packet_mmap.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/networking/packet_mmap.txt b/Documentation/networking/packet_mmap.txt
index 91ffe1d..1404674 100644
--- a/Documentation/networking/packet_mmap.txt
+++ b/Documentation/networking/packet_mmap.txt
@@ -583,6 +583,7 @@ Currently implemented fanout policies are:
   - PACKET_FANOUT_CPU: schedule to socket by CPU packet arrives on
   - PACKET_FANOUT_RND: schedule to socket by random selection
   - PACKET_FANOUT_ROLLOVER: if one socket is full, rollover to another
+  - PACKET_FANOUT_QM: schedule to socket by skbs recorded queue_mapping
 
 Minimal example code by David S. Miller (try things like "./test eth0 hash",
 "./test eth0 lb", etc.):
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] AF_PACKET: Add documentation for queue mapping fanout mode
  2014-01-27 16:43 [PATCH] AF_PACKET: Add documentation for queue mapping fanout mode Neil Horman
@ 2014-01-27 16:59 ` Daniel Borkmann
  2014-01-27 20:57 ` David Miller
  2014-01-27 21:48 ` Andi Kleen
  2 siblings, 0 replies; 5+ messages in thread
From: Daniel Borkmann @ 2014-01-27 16:59 UTC (permalink / raw)
  To: Neil Horman; +Cc: netdev, David S. Miller

On 01/27/2014 05:43 PM, Neil Horman wrote:
> Recently I added a new AF_PACKET fanout operation mode in commit
> 2d36097, but I forgot to document it.  Add PACKET_FANOUT_QM as an available mode
> in the af_packet documentation.  Applies to net-next.
>
> Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
> CC: "David S. Miller" <davem@davemloft.net>
> CC: Daniel Borkmann <dborkman@redhat.com>

Thanks a bunch, Neil.

Acked-by: Daniel Borkmann <dborkman@redhat.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] AF_PACKET: Add documentation for queue mapping fanout mode
  2014-01-27 16:43 [PATCH] AF_PACKET: Add documentation for queue mapping fanout mode Neil Horman
  2014-01-27 16:59 ` Daniel Borkmann
@ 2014-01-27 20:57 ` David Miller
  2014-01-27 21:48 ` Andi Kleen
  2 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2014-01-27 20:57 UTC (permalink / raw)
  To: nhorman; +Cc: netdev, dborkman

From: Neil Horman <nhorman@tuxdriver.com>
Date: Mon, 27 Jan 2014 11:43:04 -0500

> Recently I added a new AF_PACKET fanout operation mode in commit
> 2d36097, but I forgot to document it.  Add PACKET_FANOUT_QM as an available mode
> in the af_packet documentation.  Applies to net-next.
> 
> Signed-off-by: Neil Horman <nhorman@tuxdriver.com>

Applied.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] AF_PACKET: Add documentation for queue mapping fanout mode
  2014-01-27 16:43 [PATCH] AF_PACKET: Add documentation for queue mapping fanout mode Neil Horman
  2014-01-27 16:59 ` Daniel Borkmann
  2014-01-27 20:57 ` David Miller
@ 2014-01-27 21:48 ` Andi Kleen
  2014-01-28  2:15   ` Neil Horman
  2 siblings, 1 reply; 5+ messages in thread
From: Andi Kleen @ 2014-01-27 21:48 UTC (permalink / raw)
  To: Neil Horman; +Cc: netdev, David S. Miller, Daniel Borkmann

Neil Horman <nhorman@tuxdriver.com> writes:

> Recently I added a new AF_PACKET fanout operation mode in commit
> 2d36097, but I forgot to document it.  Add PACKET_FANOUT_QM as an available mode
> in the af_packet documentation.  Applies to net-next.

Please also send a man page patch.

-Andi

-- 
ak@linux.intel.com -- Speaking for myself only

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] AF_PACKET: Add documentation for queue mapping fanout mode
  2014-01-27 21:48 ` Andi Kleen
@ 2014-01-28  2:15   ` Neil Horman
  0 siblings, 0 replies; 5+ messages in thread
From: Neil Horman @ 2014-01-28  2:15 UTC (permalink / raw)
  To: Andi Kleen; +Cc: netdev, David S. Miller, Daniel Borkmann

On Mon, Jan 27, 2014 at 01:48:01PM -0800, Andi Kleen wrote:
> Neil Horman <nhorman@tuxdriver.com> writes:
> 
> > Recently I added a new AF_PACKET fanout operation mode in commit
> > 2d36097, but I forgot to document it.  Add PACKET_FANOUT_QM as an available mode
> > in the af_packet documentation.  Applies to net-next.
> 
> Please also send a man page patch.
> 
> -Andi
> 
I'll take care of it in the am.  Thanks for the reminder!
Neil

> -- 
> ak@linux.intel.com -- Speaking for myself only
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-01-28  2:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-27 16:43 [PATCH] AF_PACKET: Add documentation for queue mapping fanout mode Neil Horman
2014-01-27 16:59 ` Daniel Borkmann
2014-01-27 20:57 ` David Miller
2014-01-27 21:48 ` Andi Kleen
2014-01-28  2:15   ` Neil Horman

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).