* [PATCH rdma-next 0/3] Extend mlx5_ib software steering interface
@ 2020-09-03 7:38 Leon Romanovsky
2020-09-03 7:38 ` [PATCH mlx5-next 1/3] RDMA/mlx5: Add sw_owner_v2 bit capability Leon Romanovsky
2020-09-17 18:10 ` [PATCH rdma-next 0/3] Extend mlx5_ib software steering interface Jason Gunthorpe
0 siblings, 2 replies; 5+ messages in thread
From: Leon Romanovsky @ 2020-09-03 7:38 UTC (permalink / raw)
To: Doug Ledford, Jason Gunthorpe
Cc: Leon Romanovsky, Alex Vesker, linux-rdma, netdev, Saeed Mahameed
From: Leon Romanovsky <leonro@nvidia.com>
This series from Alex extends software steering interface to support
devices with extra capability "sw_owner_2" which will replace existing
"sw_owner".
Thanks
Alex Vesker (3):
RDMA/mlx5: Add sw_owner_v2 bit capability
RDMA/mlx5: Allow DM allocation for sw_owner_v2 enabled devices
RDMA/mlx5: Expose TIR and QP ICM address for sw_owner_v2 devices
drivers/infiniband/hw/mlx5/main.c | 4 +++-
drivers/infiniband/hw/mlx5/qp.c | 6 ++++--
include/linux/mlx5/mlx5_ifc.h | 3 ++-
3 files changed, 9 insertions(+), 4 deletions(-)
--
2.26.2
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH mlx5-next 1/3] RDMA/mlx5: Add sw_owner_v2 bit capability
2020-09-03 7:38 [PATCH rdma-next 0/3] Extend mlx5_ib software steering interface Leon Romanovsky
@ 2020-09-03 7:38 ` Leon Romanovsky
2020-09-17 18:10 ` [PATCH rdma-next 0/3] Extend mlx5_ib software steering interface Jason Gunthorpe
1 sibling, 0 replies; 5+ messages in thread
From: Leon Romanovsky @ 2020-09-03 7:38 UTC (permalink / raw)
To: Doug Ledford, Jason Gunthorpe
Cc: Alex Vesker, linux-rdma, netdev, Saeed Mahameed
From: Alex Vesker <valex@nvidia.com>
Added sw_owner_v2 which will be enabled for future devices,
replacing sw_owner bit.
Signed-off-by: Alex Vesker <valex@nvidia.com>
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
include/linux/mlx5/mlx5_ifc.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/linux/mlx5/mlx5_ifc.h b/include/linux/mlx5/mlx5_ifc.h
index aee25e4fb2cc..651591a2965d 100644
--- a/include/linux/mlx5/mlx5_ifc.h
+++ b/include/linux/mlx5/mlx5_ifc.h
@@ -420,7 +420,8 @@ struct mlx5_ifc_flow_table_prop_layout_bits {
u8 reserved_at_1a[0x2];
u8 ipsec_encrypt[0x1];
u8 ipsec_decrypt[0x1];
- u8 reserved_at_1e[0x2];
+ u8 sw_owner_v2[0x1];
+ u8 reserved_at_1f[0x1];
u8 termination_table_raw_traffic[0x1];
u8 reserved_at_21[0x1];
--
2.26.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH rdma-next 0/3] Extend mlx5_ib software steering interface
2020-09-03 7:38 [PATCH rdma-next 0/3] Extend mlx5_ib software steering interface Leon Romanovsky
2020-09-03 7:38 ` [PATCH mlx5-next 1/3] RDMA/mlx5: Add sw_owner_v2 bit capability Leon Romanovsky
@ 2020-09-17 18:10 ` Jason Gunthorpe
2020-09-17 18:13 ` Leon Romanovsky
1 sibling, 1 reply; 5+ messages in thread
From: Jason Gunthorpe @ 2020-09-17 18:10 UTC (permalink / raw)
To: Leon Romanovsky
Cc: Doug Ledford, Leon Romanovsky, Alex Vesker, linux-rdma, netdev,
Saeed Mahameed
On Thu, Sep 03, 2020 at 10:38:54AM +0300, Leon Romanovsky wrote:
> From: Leon Romanovsky <leonro@nvidia.com>
>
> This series from Alex extends software steering interface to support
> devices with extra capability "sw_owner_2" which will replace existing
> "sw_owner".
>
> Thanks
>
> Alex Vesker (3):
> RDMA/mlx5: Add sw_owner_v2 bit capability
> RDMA/mlx5: Allow DM allocation for sw_owner_v2 enabled devices
> RDMA/mlx5: Expose TIR and QP ICM address for sw_owner_v2 devices
Ok, can you update the shared branch with the first patch? Thanks
Jason
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH rdma-next 0/3] Extend mlx5_ib software steering interface
2020-09-17 18:10 ` [PATCH rdma-next 0/3] Extend mlx5_ib software steering interface Jason Gunthorpe
@ 2020-09-17 18:13 ` Leon Romanovsky
2020-09-18 13:42 ` Jason Gunthorpe
0 siblings, 1 reply; 5+ messages in thread
From: Leon Romanovsky @ 2020-09-17 18:13 UTC (permalink / raw)
To: Jason Gunthorpe
Cc: Doug Ledford, Alex Vesker, linux-rdma, netdev, Saeed Mahameed
On Thu, Sep 17, 2020 at 03:10:26PM -0300, Jason Gunthorpe wrote:
> On Thu, Sep 03, 2020 at 10:38:54AM +0300, Leon Romanovsky wrote:
> > From: Leon Romanovsky <leonro@nvidia.com>
> >
> > This series from Alex extends software steering interface to support
> > devices with extra capability "sw_owner_2" which will replace existing
> > "sw_owner".
> >
> > Thanks
> >
> > Alex Vesker (3):
> > RDMA/mlx5: Add sw_owner_v2 bit capability
> > RDMA/mlx5: Allow DM allocation for sw_owner_v2 enabled devices
> > RDMA/mlx5: Expose TIR and QP ICM address for sw_owner_v2 devices
>
> Ok, can you update the shared branch with the first patch? Thanks
Done, thanks
9d8feb460adb RDMA/mlx5: Add sw_owner_v2 bit capability
>
> Jason
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH rdma-next 0/3] Extend mlx5_ib software steering interface
2020-09-17 18:13 ` Leon Romanovsky
@ 2020-09-18 13:42 ` Jason Gunthorpe
0 siblings, 0 replies; 5+ messages in thread
From: Jason Gunthorpe @ 2020-09-18 13:42 UTC (permalink / raw)
To: Leon Romanovsky
Cc: Doug Ledford, Alex Vesker, linux-rdma, netdev, Saeed Mahameed
On Thu, Sep 17, 2020 at 09:13:21PM +0300, Leon Romanovsky wrote:
> On Thu, Sep 17, 2020 at 03:10:26PM -0300, Jason Gunthorpe wrote:
> > On Thu, Sep 03, 2020 at 10:38:54AM +0300, Leon Romanovsky wrote:
> > > From: Leon Romanovsky <leonro@nvidia.com>
> > >
> > > This series from Alex extends software steering interface to support
> > > devices with extra capability "sw_owner_2" which will replace existing
> > > "sw_owner".
> > >
> > > Thanks
> > >
> > > Alex Vesker (3):
> > > RDMA/mlx5: Add sw_owner_v2 bit capability
> > > RDMA/mlx5: Allow DM allocation for sw_owner_v2 enabled devices
> > > RDMA/mlx5: Expose TIR and QP ICM address for sw_owner_v2 devices
> >
> > Ok, can you update the shared branch with the first patch? Thanks
>
> Done, thanks
> 9d8feb460adb RDMA/mlx5: Add sw_owner_v2 bit capability
Applied to for-next, thanks
Jason
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-09-18 13:42 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-03 7:38 [PATCH rdma-next 0/3] Extend mlx5_ib software steering interface Leon Romanovsky
2020-09-03 7:38 ` [PATCH mlx5-next 1/3] RDMA/mlx5: Add sw_owner_v2 bit capability Leon Romanovsky
2020-09-17 18:10 ` [PATCH rdma-next 0/3] Extend mlx5_ib software steering interface Jason Gunthorpe
2020-09-17 18:13 ` Leon Romanovsky
2020-09-18 13:42 ` Jason Gunthorpe
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).