All of lore.kernel.org
 help / color / mirror / Atom feed
* [net-next 00/12][pull request] 40GbE Intel Wired LAN Driver Updates 2018-02-14
@ 2018-02-14 17:45 Jeff Kirsher
  2018-02-14 17:45 ` [net-next 01/12] i40evf: Fix link up issue when queues are disabled Jeff Kirsher
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Jeff Kirsher @ 2018-02-14 17:45 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, nhorman, sassmann, jogreene

This patch series enables the new mqprio hardware offload mechanism
creating traffic classes on VFs for XL710 devices. The parameters
needed to configure these traffic classes/queue channels are provides
by the user via the tc tool. A maximum of four traffic classes can be
created on each VF. This patch series also enables application of cloud
filters to each of these traffic classes. The cloud filters are applied
using the tc-flower classifier.

Example:
    1. tc qdisc add dev vf0 root mqprio num_tc 4 map 0 0 0 0 1 2 2 3\
        queues 2@0 2@2 1@4 1@5 hw 1 mode channel
    2. tc qdisc add dev vf0 ingress
    3. ethtool -K vf0 hw-tc-offload on
    4. ip link set eth0 vf 0 spoofchk off
    5. tc filter add dev vf0 protocol ip parent ffff: prio 1 flower dst_ip\
        192.168.3.5/32 ip_proto udp dst_port 25 skip_sw hw_tc 2

The following are changes since commit 1d631583ae5e40681dc9a41d7cfa845222c3c7ff:
  Merge branch 'net-dev-Make-protocol-ptr-dependent-on-CONFIG'
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 40GbE

Avinash Dayanand (6):
  i40evf: Fix link up issue when queues are disabled
  i40e: Enable ADq and create queue channel/s on VF
  i40evf: Alloc queues for ADq on VF
  i40e: Delete queue channel for ADq on VF
  i40e: Service request to configure bandwidth for ADq on a VF
  i40e: Add and delete cloud filter

Harshitha Ramamurthy (6):
  virtchnl: Add virtchl structures to support queue channels
  i40evf: add ndo_setup_tc callback to i40evf
  i40evf: Add support to configure bw via tc tool
  virtchnl: Add a macro to check the size of a union
  virtchnl: Add filter data structures
  i40evf: Add support to apply cloud filters

 drivers/net/ethernet/intel/i40e/i40e.h             |    6 +
 drivers/net/ethernet/intel/i40e/i40e_main.c        |   16 +-
 drivers/net/ethernet/intel/i40e/i40e_type.h        |    2 +-
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c | 1000 ++++++++++++++++++--
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h |   20 +
 drivers/net/ethernet/intel/i40evf/i40evf.h         |   72 ++
 drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c |    6 +
 drivers/net/ethernet/intel/i40evf/i40evf_main.c    |  803 +++++++++++++++-
 .../net/ethernet/intel/i40evf/i40evf_virtchnl.c    |  300 +++++-
 include/linux/avf/virtchnl.h                       |  107 ++-
 10 files changed, 2237 insertions(+), 95 deletions(-)

-- 
2.14.3

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

end of thread, other threads:[~2018-02-14 20:48 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-14 17:45 [net-next 00/12][pull request] 40GbE Intel Wired LAN Driver Updates 2018-02-14 Jeff Kirsher
2018-02-14 17:45 ` [net-next 01/12] i40evf: Fix link up issue when queues are disabled Jeff Kirsher
2018-02-14 17:45 ` [net-next 02/12] virtchnl: Add virtchl structures to support queue channels Jeff Kirsher
2018-02-14 17:45 ` [net-next 03/12] i40evf: add ndo_setup_tc callback to i40evf Jeff Kirsher
2018-02-14 17:45 ` [net-next 04/12] i40e: Enable ADq and create queue channel/s on VF Jeff Kirsher
2018-02-14 17:45 ` [net-next 05/12] i40evf: Alloc queues for ADq " Jeff Kirsher
2018-02-14 17:45 ` [net-next 06/12] i40e: Delete queue channel " Jeff Kirsher
2018-02-14 17:45 ` [net-next 07/12] i40evf: Add support to configure bw via tc tool Jeff Kirsher
2018-02-14 17:45 ` [net-next 08/12] i40e: Service request to configure bandwidth for ADq on a VF Jeff Kirsher
2018-02-14 17:45 ` [net-next 09/12] virtchnl: Add a macro to check the size of a union Jeff Kirsher
2018-02-14 17:45 ` [net-next 10/12] virtchnl: Add filter data structures Jeff Kirsher
2018-02-14 17:45 ` [net-next 11/12] i40evf: Add support to apply cloud filters Jeff Kirsher
2018-02-14 17:45 ` [net-next 12/12] i40e: Add and delete cloud filter Jeff Kirsher
2018-02-14 20:48 ` [net-next 00/12][pull request] 40GbE Intel Wired LAN Driver Updates 2018-02-14 David Miller

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.