All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH mlx5-next 00/24] Mass conversion to light mlx5 command interface
@ 2020-04-20 11:41 Leon Romanovsky
  2020-04-20 11:41 ` [PATCH mlx5-next 01/24] net/mlx5: Update vport.c to new cmd interface Leon Romanovsky
                   ` (24 more replies)
  0 siblings, 25 replies; 29+ messages in thread
From: Leon Romanovsky @ 2020-04-20 11:41 UTC (permalink / raw)
  To: Doug Ledford, Jason Gunthorpe
  Cc: Leon Romanovsky, linux-rdma, Moshe Shemesh, netdev,
	Saeed Mahameed

From: Leon Romanovsky <leonro@mellanox.com>

Hi,

This is a followup to "net/mlx5: Provide simplified command interfaces" [1]
patch with conversion of everything in mlx5_core.

The patch separation is done by file to simplify bisection and they are
all similar, but of course, I can squash it to one mega patch if it is
necessary.

Thanks

[1] https://lore.kernel.org/linux-rdma/20200413142308.936946-2-leon@kernel.org

Leon Romanovsky (24):
  net/mlx5: Update vport.c to new cmd interface
  net/mlx5: Update cq.c to new cmd interface
  net/mlx5: Update debugfs.c to new cmd interface
  net/mlx5: Update ecpf.c to new cmd interface
  net/mlx5: Update eq.c to new cmd interface
  net/mlx5: Update statistics to new cmd interface
  net/mlx5: Update eswitch to new cmd interface
  net/mlx5: Update FPGA to new cmd interface
  net/mlx5: Update fs_core new cmd interface
  net/mlx5: Update fw.c new cmd interface
  net/mlx5: Update lag.c new cmd interface
  net/mlx5: Update gid.c new cmd interface
  net/mlx5: Update mpfs.c new cmd interface
  net/mlx5: Update vxlan.c new cmd interface
  net/mlx5: Update main.c new cmd interface
  net/mlx5: Update mcg.c new cmd interface
  net/mlx5: Update mr.c new cmd interface
  net/mlx5: Update pagealloc.c new cmd interface
  net/mlx5: Update pd.c new cmd interface
  net/mlx5: Update uar.c new cmd interface
  net/mlx5: Update rl.c new cmd interface
  net/mlx5: Update port.c new cmd interface
  net/mlx5: Update SW steering new cmd interface
  net/mlx5: Update transobj.c new cmd interface

 drivers/infiniband/hw/mlx5/ib_virt.c          |   2 +-
 drivers/infiniband/hw/mlx5/mad.c              |   4 +-
 drivers/infiniband/hw/mlx5/qp.c               |  32 ++--
 drivers/net/ethernet/mellanox/mlx5/core/cq.c  |  24 ++-
 .../net/ethernet/mellanox/mlx5/core/debugfs.c |  17 +--
 .../net/ethernet/mellanox/mlx5/core/ecpf.c    |  30 +---
 drivers/net/ethernet/mellanox/mlx5/core/en.h  |   6 +-
 .../ethernet/mellanox/mlx5/core/en/health.c   |   2 +-
 .../mellanox/mlx5/core/en/monitor_stats.c     |  46 ++----
 .../ethernet/mellanox/mlx5/core/en_common.c   |   7 +-
 .../ethernet/mellanox/mlx5/core/en_ethtool.c  |   2 +-
 .../mellanox/mlx5/core/en_fs_ethtool.c        |   2 +-
 .../net/ethernet/mellanox/mlx5/core/en_main.c |  29 ++--
 .../ethernet/mellanox/mlx5/core/en_stats.c    |  17 +--
 .../net/ethernet/mellanox/mlx5/core/en_tc.c   |   6 +-
 drivers/net/ethernet/mellanox/mlx5/core/eq.c  |   5 +-
 .../net/ethernet/mellanox/mlx5/core/eswitch.c |  38 ++---
 .../net/ethernet/mellanox/mlx5/core/eswitch.h |   6 +-
 .../mellanox/mlx5/core/eswitch_offloads.c     |  18 +--
 .../ethernet/mellanox/mlx5/core/fpga/cmd.c    |  28 ++--
 .../net/ethernet/mellanox/mlx5/core/fs_cmd.c  |  80 ++++------
 drivers/net/ethernet/mellanox/mlx5/core/fw.c  |  33 ++--
 drivers/net/ethernet/mellanox/mlx5/core/lag.c |  52 +++----
 .../net/ethernet/mellanox/mlx5/core/lib/gid.c |   5 +-
 .../ethernet/mellanox/mlx5/core/lib/mpfs.c    |  10 +-
 .../ethernet/mellanox/mlx5/core/lib/vxlan.c   |  10 +-
 .../net/ethernet/mellanox/mlx5/core/main.c    |  35 ++---
 drivers/net/ethernet/mellanox/mlx5/core/mcg.c |  10 +-
 drivers/net/ethernet/mellanox/mlx5/core/mr.c  |  20 ++-
 .../ethernet/mellanox/mlx5/core/pagealloc.c   |  13 +-
 drivers/net/ethernet/mellanox/mlx5/core/pd.c  |  11 +-
 .../net/ethernet/mellanox/mlx5/core/port.c    |  11 +-
 drivers/net/ethernet/mellanox/mlx5/core/rl.c  |  21 ++-
 .../mellanox/mlx5/core/steering/dr_cmd.c      |  33 ++--
 .../ethernet/mellanox/mlx5/core/transobj.c    | 113 +++++---------
 drivers/net/ethernet/mellanox/mlx5/core/uar.c |  11 +-
 .../net/ethernet/mellanox/mlx5/core/vport.c   | 142 +++++++++---------
 include/linux/mlx5/cq.h                       |   2 +-
 include/linux/mlx5/transobj.h                 |  19 +--
 include/linux/mlx5/vport.h                    |   3 +-
 40 files changed, 373 insertions(+), 582 deletions(-)

--
2.25.2


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

end of thread, other threads:[~2020-04-23 18:45 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-20 11:41 [PATCH mlx5-next 00/24] Mass conversion to light mlx5 command interface Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 01/24] net/mlx5: Update vport.c to new cmd interface Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 02/24] net/mlx5: Update cq.c " Leon Romanovsky
2020-04-22 16:49   ` Leon Romanovsky
2020-04-22 18:32     ` Jason Gunthorpe
2020-04-22 18:36       ` Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 03/24] net/mlx5: Update debugfs.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 04/24] net/mlx5: Update ecpf.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 05/24] net/mlx5: Update eq.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 06/24] net/mlx5: Update statistics " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 07/24] net/mlx5: Update eswitch " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 08/24] net/mlx5: Update FPGA " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 09/24] net/mlx5: Update fs_core " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 10/24] net/mlx5: Update fw.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 11/24] net/mlx5: Update lag.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 12/24] net/mlx5: Update gid.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 13/24] net/mlx5: Update mpfs.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 14/24] net/mlx5: Update vxlan.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 15/24] net/mlx5: Update main.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 16/24] net/mlx5: Update mcg.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 17/24] net/mlx5: Update mr.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 18/24] net/mlx5: Update pagealloc.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 19/24] net/mlx5: Update pd.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 20/24] net/mlx5: Update uar.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 21/24] net/mlx5: Update rl.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 22/24] net/mlx5: Update port.c " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 23/24] net/mlx5: Update SW steering " Leon Romanovsky
2020-04-20 11:41 ` [PATCH mlx5-next 24/24] net/mlx5: Update transobj.c " Leon Romanovsky
2020-04-23 18:45 ` [PATCH mlx5-next 00/24] Mass conversion to light mlx5 command interface Leon Romanovsky

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.