All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-wired-lan] [PATCH S13 v2 00/17] Bug fixes and minor feature updates for ice
@ 2019-02-27  0:35 Anirudh Venkataramanan
  2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 01/17] ice: fix static analysis warnings Anirudh Venkataramanan
                   ` (16 more replies)
  0 siblings, 17 replies; 35+ messages in thread
From: Anirudh Venkataramanan @ 2019-02-27  0:35 UTC (permalink / raw)
  To: intel-wired-lan

Changes in v2:
1. Remove redundant initialization of vsi->idx
2. Remove unimplemented function prototype ice_set_vf_bw
3. Resolve conflicts after dropping set channels patch in the last series

Akeem G Abodunrin (4):
  ice: Fix issue reconfiguring VF queues
  ice: Add support for PF/VF promiscuous mode
  ice: Don't let VF know that it is untrusted
  ice: Get VF VSI instances directly via PF

Alan Brady (1):
  ice: use irq_num var in ice_vsi_req_irq_msix

Anirudh Venkataramanan (2):
  ice: Remove unused function prototype
  ice: Remove unused vsi_id field

Brett Creeley (1):
  ice: Enable link events over the ARQ

Bruce Allan (2):
  ice: fix static analysis warnings
  ice: fix some function prototype and signature style issues

Christopher N Bednarz (1):
  ice: Do not set LB_EN for prune switch rules

Kiran Patil (1):
  ice: fix the divide by zero issue

Michal Swiatkowski (1):
  ice: Restore VLAN switch rule if port VLAN existed before

Victor Raj (2):
  ice: code cleanup in ice_sched.c
  ice: update VSI config dynamically

Yashaswini Raghuram Prathivadi Bhayankaram (2):
  ice: Enable LAN_EN for the right recipes
  ice: Set LAN_EN for all directional rules

 drivers/net/ethernet/intel/ice/ice.h             |  23 +-
 drivers/net/ethernet/intel/ice/ice_common.c      |  65 +++--
 drivers/net/ethernet/intel/ice/ice_common.h      |  24 +-
 drivers/net/ethernet/intel/ice/ice_ethtool.c     |  25 +-
 drivers/net/ethernet/intel/ice/ice_lib.c         |  60 +++-
 drivers/net/ethernet/intel/ice/ice_lib.h         |   2 +-
 drivers/net/ethernet/intel/ice/ice_main.c        | 202 +++++++++++---
 drivers/net/ethernet/intel/ice/ice_sched.c       |  94 ++-----
 drivers/net/ethernet/intel/ice/ice_switch.c      | 339 ++++++++++++++++++++++-
 drivers/net/ethernet/intel/ice/ice_switch.h      |  25 +-
 drivers/net/ethernet/intel/ice/ice_txrx.c        |  48 ++--
 drivers/net/ethernet/intel/ice/ice_type.h        |   1 -
 drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c | 243 +++++++++++++---
 drivers/net/ethernet/intel/ice/ice_virtchnl_pf.h |  20 +-
 14 files changed, 920 insertions(+), 251 deletions(-)

-- 
2.14.5


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

end of thread, other threads:[~2019-03-08  0:53 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-27  0:35 [Intel-wired-lan] [PATCH S13 v2 00/17] Bug fixes and minor feature updates for ice Anirudh Venkataramanan
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 01/17] ice: fix static analysis warnings Anirudh Venkataramanan
2019-02-28 23:54   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 02/17] ice: Remove unused function prototype Anirudh Venkataramanan
2019-02-28 23:50   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 03/17] ice: Fix issue reconfiguring VF queues Anirudh Venkataramanan
2019-03-08  0:49   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 04/17] ice: fix the divide by zero issue Anirudh Venkataramanan
2019-02-28 23:08   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 05/17] ice: fix some function prototype and signature style issues Anirudh Venkataramanan
2019-02-28 23:53   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 06/17] ice: Remove unused vsi_id field Anirudh Venkataramanan
2019-02-28 23:52   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 07/17] ice: code cleanup in ice_sched.c Anirudh Venkataramanan
2019-02-28 23:53   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 08/17] ice: Add support for PF/VF promiscuous mode Anirudh Venkataramanan
2019-03-08  0:50   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 09/17] ice: Enable LAN_EN for the right recipes Anirudh Venkataramanan
2019-03-08  0:50   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 10/17] ice: Do not set LB_EN for prune switch rules Anirudh Venkataramanan
2019-03-08  0:51   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 11/17] ice: Set LAN_EN for all directional rules Anirudh Venkataramanan
2019-03-08  0:53   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 12/17] ice: Don't let VF know that it is untrusted Anirudh Venkataramanan
2019-03-01 23:55   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 13/17] ice: Get VF VSI instances directly via PF Anirudh Venkataramanan
2019-03-08  0:52   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 14/17] ice: update VSI config dynamically Anirudh Venkataramanan
2019-03-08  0:52   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 15/17] ice: Restore VLAN switch rule if port VLAN existed before Anirudh Venkataramanan
2019-03-04 18:43   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 16/17] ice: use irq_num var in ice_vsi_req_irq_msix Anirudh Venkataramanan
2019-02-28 23:07   ` Bowers, AndrewX
2019-02-27  0:35 ` [Intel-wired-lan] [PATCH S13 v2 17/17] ice: Enable link events over the ARQ Anirudh Venkataramanan
2019-03-08  0:51   ` Bowers, AndrewX

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.