linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH for-next 0/2] IB/{core,mlx4_ib}: RX/TX checksum offload
@ 2015-08-05 15:34 Amir Vadai
       [not found] ` <1438788867-18332-1-git-send-email-amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 19+ messages in thread
From: Amir Vadai @ 2015-08-05 15:34 UTC (permalink / raw)
  To: Doug Ledford
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Yevgeny Petrilin, Or Gerlitz,
	Tal Alon, Moshe Lazer, Bodong Wang, Eric Dube, Amir Vadai

Hi Doug,

This small patchset introduces a new member "csum_cap" inside ib_device_attr.
It is used to report RX/TX checksum offload capabilities of the device.
Having a new field enables reporting more specific capabilities than
the single bit IB_DEVICE_IP_CSUM.

This will be used by a revised version of the IP checksum patches [1], that
will be sent later on.

The patchset was applied and tested over branch to-be-rebased/for-4.3, commit
153b730 ("Merge branch 'hfi1-v4' into to-be-rebased/for-4.3")

[1] - libibverbs: https://patchwork.kernel.org/patch/6604211/
      libmlx4: https://patchwork.kernel.org/patch/6604221/

Thanks,
Amir

Amir Vadai (1):
  IB/mlx4_ib: Add support for RX/TX checksum offload capabilities report

Bodong Wang (1):
  IB/core: Add support for RX/TX checksum offload capabilities report

 drivers/infiniband/core/uverbs_cmd.c | 6 ++++++
 drivers/infiniband/hw/mlx4/main.c    | 6 ++++++
 include/rdma/ib_verbs.h              | 8 ++++++++
 include/uapi/rdma/ib_user_verbs.h    | 2 ++
 4 files changed, 22 insertions(+)

-- 
2.4.3.413.ga5fe668

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found] ` <1438788867-18332-1-git-send-email-amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
@ 2015-08-05 15:34   ` Amir Vadai
       [not found]     ` <1438788867-18332-2-git-send-email-amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  2015-08-05 15:34   ` [PATCH for-next 2/2] IB/mlx4_ib: " Amir Vadai
  2015-09-02 14:32   ` [PATCH for-next 0/2] IB/{core,mlx4_ib}: RX/TX checksum offload Christoph Lameter
  2 siblings, 1 reply; 19+ messages in thread
From: Amir Vadai @ 2015-08-05 15:34 UTC (permalink / raw)
  To: Doug Ledford
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Yevgeny Petrilin, Or Gerlitz,
	Tal Alon, Moshe Lazer, Bodong Wang, Eric Dube, Amir Vadai

From: Bodong Wang <bodong-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>

- TX/RX checksum offload capabilities are now reporting through
  a new member "csum_cap" inside ib_device_attr.
- The capabilities cover IP_HDR and TCP_UDP.

Signed-off-by: Bodong Wang <bodong-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
Signed-off-by: Amir Vadai <amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
---
 drivers/infiniband/core/uverbs_cmd.c | 6 ++++++
 include/rdma/ib_verbs.h              | 8 ++++++++
 include/uapi/rdma/ib_user_verbs.h    | 2 ++
 3 files changed, 16 insertions(+)

diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c
index bbb02ff..c3d7c54 100644
--- a/drivers/infiniband/core/uverbs_cmd.c
+++ b/drivers/infiniband/core/uverbs_cmd.c
@@ -3435,6 +3435,12 @@ int ib_uverbs_ex_query_device(struct ib_uverbs_file *file,
 	copy_query_dev_fields(file, &resp.base, &attr);
 	resp.comp_mask = 0;
 
+	if (ucore->outlen < resp.response_length + sizeof(resp.csum_caps))
+		goto end;
+
+	resp.csum_caps = attr.csum_caps;
+	resp.response_length += sizeof(resp.csum_caps);
+
 	if (ucore->outlen < resp.response_length + sizeof(resp.odp_caps))
 		goto end;
 
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h
index 0940051..582483e 100644
--- a/include/rdma/ib_verbs.h
+++ b/include/rdma/ib_verbs.h
@@ -190,6 +190,13 @@ struct ib_cq_init_attr {
 	u32		flags;
 };
 
+enum ib_csum_cap_flags {
+	IB_CSUM_RX_TCP_UDP       = 1 << 0,
+	IB_CSUM_RX_IP_HDR        = 1 << 1,
+	IB_CSUM_TX_TCP_UDP       = 1 << 2,
+	IB_CSUM_TX_IP_HDR        = 1 << 3
+};
+
 struct ib_device_attr {
 	u64			fw_ver;
 	__be64			sys_image_guid;
@@ -236,6 +243,7 @@ struct ib_device_attr {
 	struct ib_odp_caps	odp_caps;
 	uint64_t		timestamp_mask;
 	uint64_t		hca_core_clock; /* in KHZ */
+	u32                     csum_caps;
 };
 
 enum ib_mtu {
diff --git a/include/uapi/rdma/ib_user_verbs.h b/include/uapi/rdma/ib_user_verbs.h
index 978841e..5eb7de1 100644
--- a/include/uapi/rdma/ib_user_verbs.h
+++ b/include/uapi/rdma/ib_user_verbs.h
@@ -205,6 +205,7 @@ struct ib_uverbs_query_device_resp {
 
 struct ib_uverbs_ex_query_device {
 	__u32 comp_mask;
+	__u32 csum_caps;
 	__u32 reserved;
 };
 
@@ -221,6 +222,7 @@ struct ib_uverbs_odp_caps {
 struct ib_uverbs_ex_query_device_resp {
 	struct ib_uverbs_query_device_resp base;
 	__u32 comp_mask;
+	__u32 csum_caps;
 	__u32 response_length;
 	struct ib_uverbs_odp_caps odp_caps;
 	__u64 timestamp_mask;
-- 
2.4.3.413.ga5fe668

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH for-next 2/2] IB/mlx4_ib: Add support for RX/TX checksum offload capabilities report
       [not found] ` <1438788867-18332-1-git-send-email-amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  2015-08-05 15:34   ` [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report Amir Vadai
@ 2015-08-05 15:34   ` Amir Vadai
  2015-09-02 14:32   ` [PATCH for-next 0/2] IB/{core,mlx4_ib}: RX/TX checksum offload Christoph Lameter
  2 siblings, 0 replies; 19+ messages in thread
From: Amir Vadai @ 2015-08-05 15:34 UTC (permalink / raw)
  To: Doug Ledford
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Yevgeny Petrilin, Or Gerlitz,
	Tal Alon, Moshe Lazer, Bodong Wang, Eric Dube, Amir Vadai

Use the new capability flags for RX/TX checksum offload.

Signed-off-by: Amir Vadai <amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
---
 drivers/infiniband/hw/mlx4/main.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/infiniband/hw/mlx4/main.c b/drivers/infiniband/hw/mlx4/main.c
index 1437ed5..2af7554 100644
--- a/drivers/infiniband/hw/mlx4/main.c
+++ b/drivers/infiniband/hw/mlx4/main.c
@@ -442,6 +442,12 @@ static int mlx4_ib_query_device(struct ib_device *ibdev,
 		props->device_cap_flags |= IB_DEVICE_MANAGED_FLOW_STEERING;
 	}
 
+	if ((dev->dev->caps.rx_checksum_flags_port[1] > 0) ||
+	    (dev->dev->caps.rx_checksum_flags_port[2] > 0))
+		props->csum_caps |= IB_CSUM_RX_TCP_UDP | IB_CSUM_RX_IP_HDR;
+
+	props->csum_caps |= IB_CSUM_TX_TCP_UDP | IB_CSUM_TX_IP_HDR;
+
 	props->vendor_id	   = be32_to_cpup((__be32 *) (out_mad->data + 36)) &
 		0xffffff;
 	props->vendor_part_id	   = dev->dev->persist->pdev->device;
-- 
2.4.3.413.ga5fe668

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* RE: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]     ` <1438788867-18332-2-git-send-email-amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
@ 2015-08-05 16:17       ` Hefty, Sean
       [not found]         ` <1828884A29C6694DAF28B7E6B8A82373A9022CBD-P5GAC/sN6hkd3b2yrw5b5LfspsVTdybXVpNB7YpNyf8@public.gmane.org>
  2015-08-05 17:16       ` Jason Gunthorpe
  1 sibling, 1 reply; 19+ messages in thread
From: Hefty, Sean @ 2015-08-05 16:17 UTC (permalink / raw)
  To: Amir Vadai, Doug Ledford
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Yevgeny Petrilin, Or Gerlitz,
	Tal Alon, Moshe Lazer, Bodong Wang, Eric Dube

> +enum ib_csum_cap_flags {
> +	IB_CSUM_RX_TCP_UDP       = 1 << 0,
> +	IB_CSUM_RX_IP_HDR        = 1 << 1,
> +	IB_CSUM_TX_TCP_UDP       = 1 << 2,
> +	IB_CSUM_TX_IP_HDR        = 1 << 3
> +};

TPC and UDP should be separate flags.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* RE: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]         ` <1828884A29C6694DAF28B7E6B8A82373A9022CBD-P5GAC/sN6hkd3b2yrw5b5LfspsVTdybXVpNB7YpNyf8@public.gmane.org>
@ 2015-08-05 16:49           ` Yevgeny Petrilin
       [not found]             ` <HE1PR05MB1004A52EBD00FA30FAFFD225AA750-eBadYZ65MZ9M5L2kK+KmM9qRiQSDpxhJvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
  2015-08-05 22:29           ` Or Gerlitz
  1 sibling, 1 reply; 19+ messages in thread
From: Yevgeny Petrilin @ 2015-08-05 16:49 UTC (permalink / raw)
  To: Hefty, Sean, Amir Vadai, Doug Ledford
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Or Gerlitz, Tal Alon,
	Moshe Lazer, Bodong Wang, Eric Dube

> > +enum ib_csum_cap_flags {
> > +	IB_CSUM_RX_TCP_UDP       = 1 << 0,
> > +	IB_CSUM_RX_IP_HDR        = 1 << 1,
> > +	IB_CSUM_TX_TCP_UDP       = 1 << 2,
> > +	IB_CSUM_TX_IP_HDR        = 1 << 3
> > +};
> 
> TPC and UDP should be separate flags.

Can you explain why?
What we are advertising here is offloads for L3 and L4 checksums, why should it be per protocol?
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* RE: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]             ` <HE1PR05MB1004A52EBD00FA30FAFFD225AA750-eBadYZ65MZ9M5L2kK+KmM9qRiQSDpxhJvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
@ 2015-08-05 17:12               ` Hefty, Sean
  0 siblings, 0 replies; 19+ messages in thread
From: Hefty, Sean @ 2015-08-05 17:12 UTC (permalink / raw)
  To: Yevgeny Petrilin, Amir Vadai, Doug Ledford
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Or Gerlitz, Tal Alon,
	Moshe Lazer, Bodong Wang, Eric Dube

> > > +enum ib_csum_cap_flags {
> > > +	IB_CSUM_RX_TCP_UDP       = 1 << 0,
> > > +	IB_CSUM_RX_IP_HDR        = 1 << 1,
> > > +	IB_CSUM_TX_TCP_UDP       = 1 << 2,
> > > +	IB_CSUM_TX_IP_HDR        = 1 << 3
> > > +};
> >
> > TPC and UDP should be separate flags.
> 
> Can you explain why?

For the same reason that you didn't include *all* L4 headers.

> What we are advertising here is offloads for L3 and L4 checksums, why
> should it be per protocol?

Because UDP and TCP have different headers, and it's entirely possible for a NIC (e.g. usnic) to support offloading one but not the other.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]     ` <1438788867-18332-2-git-send-email-amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  2015-08-05 16:17       ` Hefty, Sean
@ 2015-08-05 17:16       ` Jason Gunthorpe
       [not found]         ` <20150805171634.GA12274-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
  1 sibling, 1 reply; 19+ messages in thread
From: Jason Gunthorpe @ 2015-08-05 17:16 UTC (permalink / raw)
  To: Amir Vadai
  Cc: Doug Ledford, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	Yevgeny Petrilin, Or Gerlitz, Tal Alon, Moshe Lazer, Bodong Wang,
	Eric Dube

On Wed, Aug 05, 2015 at 06:34:26PM +0300, Amir Vadai wrote:
>  struct ib_uverbs_ex_query_device {
>  	__u32 comp_mask;
> +	__u32 csum_caps;
>  	__u32 reserved;
>  };

Uh no.

> @@ -221,6 +222,7 @@ struct ib_uverbs_odp_caps {
>  struct ib_uverbs_ex_query_device_resp {
>  	struct ib_uverbs_query_device_resp base;
>  	__u32 comp_mask;
> +	__u32 csum_caps;
>  	__u32 response_length;
>  	struct ib_uverbs_odp_caps odp_caps;
>  	__u64 timestamp_mask;

Also totally wrong.

Or, WTF? why is something so screwed up like this being sent to the list?

NAK

Jason
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]         ` <20150805171634.GA12274-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
@ 2015-08-05 22:16           ` Or Gerlitz
       [not found]             ` <CAJ3xEMgFCx3Xaan2WYL53HRnhdvnoDsS2TriYbENQizpnV31dw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  2015-08-06 11:00           ` Haggai Eran
  1 sibling, 1 reply; 19+ messages in thread
From: Or Gerlitz @ 2015-08-05 22:16 UTC (permalink / raw)
  To: Jason Gunthorpe
  Cc: Amir Vadai, Doug Ledford, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	Yevgeny Petrilin, Or Gerlitz, Tal Alon, Moshe Lazer, Bodong Wang,
	Eric Dube

On Wed, Aug 5, 2015 at 8:16 PM, Jason Gunthorpe
<jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> wrote:
> On Wed, Aug 05, 2015 at 06:34:26PM +0300, Amir Vadai wrote:
>>  struct ib_uverbs_ex_query_device {
>>       __u32 comp_mask;
>> +     __u32 csum_caps;
>>       __u32 reserved;
>>  };
>
> Uh no.
>
>> @@ -221,6 +222,7 @@ struct ib_uverbs_odp_caps {
>>  struct ib_uverbs_ex_query_device_resp {
>>       struct ib_uverbs_query_device_resp base;
>>       __u32 comp_mask;
>> +     __u32 csum_caps;
>>       __u32 response_length;
>>       struct ib_uverbs_odp_caps odp_caps;
>>       __u64 timestamp_mask;
>
> Also totally wrong.
>
> Or, WTF? why is something so screwed up like this being sent to the list?
> NAK


Jason,

So -- shit happens, I am trying to figure out if an internal review
has been done, b/c we do have some folks who terribly master the
extended uverbs framework, right...? if this is wrong it's good that
you rejected the patch and even put it in WTF response, but again, I
see that the author is someone new to the upstream rdma stack and we
should encourage more people to participate... so you sent him back
home to do HW, let's see what this will yield.

Or.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]         ` <1828884A29C6694DAF28B7E6B8A82373A9022CBD-P5GAC/sN6hkd3b2yrw5b5LfspsVTdybXVpNB7YpNyf8@public.gmane.org>
  2015-08-05 16:49           ` Yevgeny Petrilin
@ 2015-08-05 22:29           ` Or Gerlitz
       [not found]             ` <CAJ3xEMgzKdFVtFfXC93EH=gBVGCpVJzKWm=C4RYttc1uz+phhQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  1 sibling, 1 reply; 19+ messages in thread
From: Or Gerlitz @ 2015-08-05 22:29 UTC (permalink / raw)
  To: Hefty, Sean
  Cc: Amir Vadai, Doug Ledford, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	Yevgeny Petrilin, Or Gerlitz, Tal Alon, Moshe Lazer, Bodong Wang,
	Eric Dube

On Wed, Aug 5, 2015 at 7:17 PM, Hefty, Sean <sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> wrote:
> TPC and UDP should be separate flags.


Sean,

I don't think we should over-complex things vs. what the network stack
does for many (since kernel 2.4?!) years. They have basically three
flags

NETIF_F_IP_CSUM - device can checksum TCP/UDP over IPv4
NETIF_F_IP6_CSUM  - device can checksum TCP/UDP over IPv6
NETIF_F_HW_CSUM - device can checksum all packets

I would say that it makes sense to consider the IB_DEVICE_UD_IP_CSUM
dev cap we have for ~10 years to be equivalent for NETIF_F_IP_CSUM and
apply also for devices supports RAW PACKETs QPs.

Not sure if we need to add now the IPv6 support too, unless there are
real offload consumers, ditoo for the HW checksum. The focus better be
around building user space code that well supports the IPv5 device
cap.

Or.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* RE: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]             ` <CAJ3xEMgzKdFVtFfXC93EH=gBVGCpVJzKWm=C4RYttc1uz+phhQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2015-08-05 23:23               ` Hefty, Sean
       [not found]                 ` <1828884A29C6694DAF28B7E6B8A82373A9022F1D-P5GAC/sN6hkd3b2yrw5b5LfspsVTdybXVpNB7YpNyf8@public.gmane.org>
  0 siblings, 1 reply; 19+ messages in thread
From: Hefty, Sean @ 2015-08-05 23:23 UTC (permalink / raw)
  To: Or Gerlitz
  Cc: Amir Vadai, Doug Ledford, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	Yevgeny Petrilin, Or Gerlitz, Tal Alon, Moshe Lazer, Bodong Wang,
	Eric Dube

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 613 bytes --]

> I don't think we should over-complex things vs. what the network stack
> does for many (since kernel 2.4?!) years. They have basically three
> flags
>
> NETIF_F_IP_CSUM - device can checksum TCP/UDP over IPv4
> NETIF_F_IP6_CSUM  - device can checksum TCP/UDP over IPv6
> NETIF_F_HW_CSUM - device can checksum all packets

I fail to see how defining a flag to mean one thing complicates things.  Plus, the proposed patch doesn't even follow what the network stack does.
N‹§²æìr¸›yúèšØb²X¬¶Ç§vØ^–)Þº{.nÇ+‰·¥Š{±­ÙšŠ{ayº\x1dʇڙë,j\a­¢f£¢·hš‹»öì\x17/oSc¾™Ú³9˜uÀ¦æå‰È&jw¨®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿïêäz¹Þ–Šàþf£¢·hšˆ§~ˆmš

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

* Re: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]             ` <CAJ3xEMgFCx3Xaan2WYL53HRnhdvnoDsS2TriYbENQizpnV31dw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2015-08-06  0:00               ` Jason Gunthorpe
       [not found]                 ` <20150806000042.GC2483-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
  0 siblings, 1 reply; 19+ messages in thread
From: Jason Gunthorpe @ 2015-08-06  0:00 UTC (permalink / raw)
  To: Or Gerlitz
  Cc: Amir Vadai, Doug Ledford, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	Yevgeny Petrilin, Or Gerlitz, Tal Alon, Moshe Lazer, Bodong Wang,
	Eric Dube

On Thu, Aug 06, 2015 at 01:16:17AM +0300, Or Gerlitz wrote:
> So -- shit happens, I am trying to figure out if an internal review
> has been done, b/c we do have some folks who terribly master the
> extended uverbs framework, right...?

You and Matan had no problem doing the timestamp stuff properly in
this area, so I assume so..

I would *strongly* encourage either of you to publicly do the proper
review and explain why the above patches are wrong. Then there is some
record someone in future can find to discuss all this..

> to the upstream rdma stack and we should encourage more people to
> participate... so you sent him back home to do HW, let's see what
> this will yield.

The participating we are sorely lacking right now is on the review
side, which is like most of the kernel, unfortunately.

Jason
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]                 ` <20150806000042.GC2483-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
@ 2015-08-06  8:18                   ` Or Gerlitz
  0 siblings, 0 replies; 19+ messages in thread
From: Or Gerlitz @ 2015-08-06  8:18 UTC (permalink / raw)
  To: Jason Gunthorpe
  Cc: Amir Vadai, Doug Ledford, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	Yevgeny Petrilin, Or Gerlitz, Tal Alon, Moshe Lazer, Bodong Wang,
	Eric Dube

On Thu, Aug 6, 2015 at 3:00 AM, Jason Gunthorpe
<jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> wrote:
[...]

> The participating we are sorely lacking right now is on the review
> side, which is like most of the kernel, unfortunately.

I agree, if a proper internal review was taking place here, it
wouldn't been sent this way. But you know,
it can happen and good you pointed this out for us to take a point and
try to make sure we do things right.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]                 ` <1828884A29C6694DAF28B7E6B8A82373A9022F1D-P5GAC/sN6hkd3b2yrw5b5LfspsVTdybXVpNB7YpNyf8@public.gmane.org>
@ 2015-08-06  8:21                   ` Or Gerlitz
  0 siblings, 0 replies; 19+ messages in thread
From: Or Gerlitz @ 2015-08-06  8:21 UTC (permalink / raw)
  To: Hefty, Sean
  Cc: Amir Vadai, Doug Ledford, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	Yevgeny Petrilin, Or Gerlitz, Tal Alon, Moshe Lazer, Bodong Wang,
	Eric Dube

On Thu, Aug 6, 2015 at 2:23 AM, Hefty, Sean <sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> wrote:
>> I don't think we should over-complex things vs. what the network stack
>> does for many (since kernel 2.4?!) years. They have basically three
>> flags
>>
>> NETIF_F_IP_CSUM - device can checksum TCP/UDP over IPv4
>> NETIF_F_IP6_CSUM  - device can checksum TCP/UDP over IPv6
>> NETIF_F_HW_CSUM - device can checksum all packets
>
> I fail to see how defining a flag to mean one thing complicates things.

b/c we are talking on offloading IP, TCP, UDP and friends checksum --
something the networking
stack does since 1991 or alike, and I don't see the point to go any
further from where they are.

> Plus, the proposed patch doesn't even follow what the network stack does.

To make it clear, I didn't say that the proposed patch did what I
sketched, I provided a response to you and a reviewer comment in the
same reply...
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]         ` <20150805171634.GA12274-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
  2015-08-05 22:16           ` Or Gerlitz
@ 2015-08-06 11:00           ` Haggai Eran
       [not found]             ` <HE1PR05MB1355B04E4B418A48DB5137B0C1740-eBadYZ65MZ+lkJP6d7MyxNqRiQSDpxhJvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
       [not found]             ` <CAG53R5UUgp5JHkwGVtY1MrrthgyVeoRS_N+-4WsOKQ-T2y04wA@mail.gmail.com>
  1 sibling, 2 replies; 19+ messages in thread
From: Haggai Eran @ 2015-08-06 11:00 UTC (permalink / raw)
  To: Jason Gunthorpe, Amir Vadai
  Cc: Doug Ledford, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	Yevgeny Petrilin, Or Gerlitz, Tal Alon, Moshe Lazer, Bodong Wang,
	Eric Dube

On Wednesday, August 5, 2015 8:16 PM, Jason Gunthorpe jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> wrote:
> On Wed, Aug 05, 2015 at 06:34:26PM +0300, Amir Vadai wrote:
>>  struct ib_uverbs_ex_query_device {
>>       __u32 comp_mask;
>> +     __u32 csum_caps;
>>       __u32 reserved;
>>  };
> 
> Uh no.
This is the struct of the command, not the response. There is no need to extend it. The command is designed to always return as much information as possible, so the user space code doesn't need to pass anything for it to work.

Even if you did want to extend it, you would need to replace the reserved word. The structs in this header file must be made in such way that they have the same size on 32-bit systems and on 64-bit systems (see the comment at the beginning of the header file). This is why the reserved word is there. 

> 
>> @@ -221,6 +222,7 @@ struct ib_uverbs_odp_caps {
>>  struct ib_uverbs_ex_query_device_resp {
>>       struct ib_uverbs_query_device_resp base;
>>       __u32 comp_mask;
>> +     __u32 csum_caps;
>>       __u32 response_length;
>>       struct ib_uverbs_odp_caps odp_caps;
>>       __u64 timestamp_mask;
> 
> Also totally wrong.

The response struct must maintain backward compatibility. You cannot change the order of the existing fields. The only valid way of extending it is at the end. Here too, you must make sure that the struct has the same size on 32-bit systems, so you would need to add a 32-bit reserved word at the end.

Haggai
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]             ` <HE1PR05MB1355B04E4B418A48DB5137B0C1740-eBadYZ65MZ+lkJP6d7MyxNqRiQSDpxhJvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
@ 2015-08-06 11:47               ` Parav Pandit
  0 siblings, 0 replies; 19+ messages in thread
From: Parav Pandit @ 2015-08-06 11:47 UTC (permalink / raw)
  To: Haggai Eran
  Cc: Jason Gunthorpe, Amir Vadai, Doug Ledford,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA, Yevgeny Petrilin, Or Gerlitz,
	Tal Alon, Moshe Lazer, Bodong Wang, Eric Dube

On Thu, Aug 6, 2015 at 4:30 PM, Haggai Eran <haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org> wrote:
> On Wednesday, August 5, 2015 8:16 PM, Jason Gunthorpe jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> wrote:
>> On Wed, Aug 05, 2015 at 06:34:26PM +0300, Amir Vadai wrote:
>>>  struct ib_uverbs_ex_query_device {
>>>       __u32 comp_mask;
>>> +     __u32 csum_caps;
>>>       __u32 reserved;
>>>  };
>>
>> Uh no.
> This is the struct of the command, not the response. There is no need to extend it. The command is designed to always return as much information as possible, so the user space code doesn't need to pass anything for it to work.
>
> Even if you did want to extend it, you would need to replace the reserved word. The structs in this header file must be made in such way that they have the same size on 32-bit systems and on 64-bit systems (see the comment at the beginning of the header file). This is why the reserved word is there.
>
>>
>>> @@ -221,6 +222,7 @@ struct ib_uverbs_odp_caps {
>>>  struct ib_uverbs_ex_query_device_resp {
>>>       struct ib_uverbs_query_device_resp base;
>>>       __u32 comp_mask;
>>> +     __u32 csum_caps;
>>>       __u32 response_length;
>>>       struct ib_uverbs_odp_caps odp_caps;
>>>       __u64 timestamp_mask;
>>
>> Also totally wrong.
>
> The response struct must maintain backward compatibility. You cannot change the order of the existing fields. The only valid way of extending it is at the end. Here too, you must make sure that the struct has the same size on 32-bit systems, so you would need to add a 32-bit reserved word at the end.
>

As struct ib_uverbs_ex_query_device_resp captures extended
capabilities, does it make sense to have few more reserved words
defined as part of this patch?
So that later on those reserved can be defined in future for
additional features.
This way for every new feature we dont need to bump structure size of
ABI, not we need to define new set of ABI calls.
Its hard to say how much more is sufficient, but was thinking of 8 32-bit words.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]               ` <CAG53R5UUgp5JHkwGVtY1MrrthgyVeoRS_N+-4WsOKQ-T2y04wA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2015-08-06 16:50                 ` Haggai Eran
       [not found]                   ` <55C3903F.40301-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 19+ messages in thread
From: Haggai Eran @ 2015-08-06 16:50 UTC (permalink / raw)
  To: Parav Pandit
  Cc: Jason Gunthorpe, Amir Vadai, Doug Ledford,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA, Yevgeny Petrilin, Or Gerlitz,
	Tal Alon, Moshe Lazer, Bodong Wang, Eric Dube

On 08/06/2015 02:18 PM, Parav Pandit wrote:
> On Thu, Aug 6, 2015 at 4:30 PM, Haggai Eran <haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
> <mailto:haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>> wrote:
> 
>     On Wednesday, August 5, 2015 8:16 PM, Jason Gunthorpe
>     jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org
>     <mailto:jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>> wrote:
>     > On Wed, Aug 05, 2015 at 06:34:26PM +0300, Amir Vadai wrote:
>     >>  struct ib_uverbs_ex_query_device {
>     >>       __u32 comp_mask;
>     >> +     __u32 csum_caps;
>     >>       __u32 reserved;
>     >>  };
>     >
>     > Uh no.
>     This is the struct of the command, not the response. There is no
>     need to extend it. The command is designed to always return as much
>     information as possible, so the user space code doesn't need to pass
>     anything for it to work.
> 
>     Even if you did want to extend it, you would need to replace the
>     reserved word. The structs in this header file must be made in such
>     way that they have the same size on 32-bit systems and on 64-bit
>     systems (see the comment at the beginning of the header file). This
>     is why the reserved word is there.
> 
>     >
>     >> @@ -221,6 +222,7 @@ struct ib_uverbs_odp_caps {
>     >>  struct ib_uverbs_ex_query_device_resp {
>     >>       struct ib_uverbs_query_device_resp base;
>     >>       __u32 comp_mask;
>     >> +     __u32 csum_caps;
>     >>       __u32 response_length;
>     >>       struct ib_uverbs_odp_caps odp_caps;
>     >>       __u64 timestamp_mask;
>     >
>     > Also totally wrong.
> 
>     The response struct must maintain backward compatibility. You cannot
>     change the order of the existing fields. The only valid way of
>     extending it is at the end. Here too, you must make sure that the
>     struct has the same size on 32-bit systems, so you would need to add
>     a 32-bit reserved word at the end.
> 
>     Haggai
> 
> As struct ib_uverbs_ex_query_device_resp captures extended capabilities,
> does it make sense to have few more reserved words defined as part of
> this patch?
> So that later on those reserved can be defined in future for additional
> features.
> This way for every new feature we dont need to bump structure size of
> ABI, not we need to define new set of ABI calls.
> Its hard to say how much more is sufficient, but was thinking of 8
> 32-bit words.
> 

I don't see how increasing the size now would get you anything that
changing the returned response_length field wouldn't. I'm not sure what
you consider an ABI change. Doesn't adding new meaning to reserved
fields count as a change? In any case, increasing the response length
doesn't require adding new calls. The kernel code will agree to fill
only the fields that fit in the buffer provided by the user-space caller.

Haggai
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report
       [not found]                   ` <55C3903F.40301-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
@ 2015-08-06 17:27                     ` Parav Pandit
  0 siblings, 0 replies; 19+ messages in thread
From: Parav Pandit @ 2015-08-06 17:27 UTC (permalink / raw)
  To: Haggai Eran
  Cc: Jason Gunthorpe, Amir Vadai, Doug Ledford,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA, Yevgeny Petrilin, Or Gerlitz,
	Tal Alon, Moshe Lazer, Bodong Wang, Eric Dube

On Thu, Aug 6, 2015 at 10:20 PM, Haggai Eran <haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org> wrote:
> On 08/06/2015 02:18 PM, Parav Pandit wrote:
>> On Thu, Aug 6, 2015 at 4:30 PM, Haggai Eran <haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
>> <mailto:haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>> wrote:
>>
>>     On Wednesday, August 5, 2015 8:16 PM, Jason Gunthorpe
>>     jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org
>>     <mailto:jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>> wrote:
>>     > On Wed, Aug 05, 2015 at 06:34:26PM +0300, Amir Vadai wrote:
>>     >>  struct ib_uverbs_ex_query_device {
>>     >>       __u32 comp_mask;
>>     >> +     __u32 csum_caps;
>>     >>       __u32 reserved;
>>     >>  };
>>     >
>>     > Uh no.
>>     This is the struct of the command, not the response. There is no
>>     need to extend it. The command is designed to always return as much
>>     information as possible, so the user space code doesn't need to pass
>>     anything for it to work.
>>
>>     Even if you did want to extend it, you would need to replace the
>>     reserved word. The structs in this header file must be made in such
>>     way that they have the same size on 32-bit systems and on 64-bit
>>     systems (see the comment at the beginning of the header file). This
>>     is why the reserved word is there.
>>
>>     >
>>     >> @@ -221,6 +222,7 @@ struct ib_uverbs_odp_caps {
>>     >>  struct ib_uverbs_ex_query_device_resp {
>>     >>       struct ib_uverbs_query_device_resp base;
>>     >>       __u32 comp_mask;
>>     >> +     __u32 csum_caps;
>>     >>       __u32 response_length;
>>     >>       struct ib_uverbs_odp_caps odp_caps;
>>     >>       __u64 timestamp_mask;
>>     >
>>     > Also totally wrong.
>>
>>     The response struct must maintain backward compatibility. You cannot
>>     change the order of the existing fields. The only valid way of
>>     extending it is at the end. Here too, you must make sure that the
>>     struct has the same size on 32-bit systems, so you would need to add
>>     a 32-bit reserved word at the end.
>>
>>     Haggai
>>
>> As struct ib_uverbs_ex_query_device_resp captures extended capabilities,
>> does it make sense to have few more reserved words defined as part of
>> this patch?
>> So that later on those reserved can be defined in future for additional
>> features.
>> This way for every new feature we dont need to bump structure size of
>> ABI, not we need to define new set of ABI calls.
>> Its hard to say how much more is sufficient, but was thinking of 8
>> 32-bit words.
>>
>
> I don't see how increasing the size now would get you anything that
> changing the returned response_length field wouldn't.

It won't. Eventually this code will have switch case for various
different response length to support backward compatibility. I was
trying to avoid adding such switch-case. Instead based on supported
kernel version, it will fill up the information.

> I'm not sure what
> you consider an ABI change. Doesn't adding new meaning to reserved
> fields count as a change? In any case, increasing the response length
> doesn't require adding new calls.

Yes, it doesn't. I don't see issue with response length increase, it
solves it. I was considering a solution where we don't have to keep
doing that.

> The kernel code will agree to fill only the fields that fit in the buffer provided by the user-space caller.
>
> Haggai
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH for-next 0/2] IB/{core,mlx4_ib}: RX/TX checksum offload
       [not found] ` <1438788867-18332-1-git-send-email-amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  2015-08-05 15:34   ` [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report Amir Vadai
  2015-08-05 15:34   ` [PATCH for-next 2/2] IB/mlx4_ib: " Amir Vadai
@ 2015-09-02 14:32   ` Christoph Lameter
       [not found]     ` <alpine.DEB.2.11.1509020930430.12270-wcBtFHqTun5QOdAKl3ChDw@public.gmane.org>
  2 siblings, 1 reply; 19+ messages in thread
From: Christoph Lameter @ 2015-09-02 14:32 UTC (permalink / raw)
  To: Amir Vadai
  Cc: Doug Ledford, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	Yevgeny Petrilin, Or Gerlitz, Tal Alon, Moshe Lazer, Bodong Wang,
	Eric Dube

On Wed, 5 Aug 2015, Amir Vadai wrote:

> This will be used by a revised version of the IP checksum patches [1], that
> will be sent later on.

Ok when can we get the full set for testing? Seems that the libibverbs and
libmlx4 portions are missing?
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH for-next 0/2] IB/{core,mlx4_ib}: RX/TX checksum offload
       [not found]     ` <alpine.DEB.2.11.1509020930430.12270-wcBtFHqTun5QOdAKl3ChDw@public.gmane.org>
@ 2015-09-03  6:22       ` Or Gerlitz
  0 siblings, 0 replies; 19+ messages in thread
From: Or Gerlitz @ 2015-09-03  6:22 UTC (permalink / raw)
  To: Christoph Lameter, Bodong Wang
  Cc: Amir Vadai, Doug Ledford, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	Yevgeny Petrilin, Tal Alon, Moshe Lazer, Eric Dube

On 9/2/2015 5:32 PM, Christoph Lameter wrote:
> On Wed, 5 Aug 2015, Amir Vadai wrote:
>
>> This will be used by a revised version of the IP checksum patches [1], that
>> will be sent later on.
> Ok when can we get the full set for testing? Seems that the libibverbs and
> libmlx4 portions are missing?

not accurate.

After this post, we have posted patched to libibverbs/libmlx4 on Aug 
17th, that require no kernel changes.

Please test these ones and skip this post for now and let us know how's 
going with them:

https://patchwork.kernel.org/patch/7025581/
https://patchwork.kernel.org/patch/7025611/

I copied the author,

Or.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2015-09-03  6:22 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-05 15:34 [PATCH for-next 0/2] IB/{core,mlx4_ib}: RX/TX checksum offload Amir Vadai
     [not found] ` <1438788867-18332-1-git-send-email-amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2015-08-05 15:34   ` [PATCH for-next 1/2] IB/core: Add support for RX/TX checksum offload capabilities report Amir Vadai
     [not found]     ` <1438788867-18332-2-git-send-email-amirv-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2015-08-05 16:17       ` Hefty, Sean
     [not found]         ` <1828884A29C6694DAF28B7E6B8A82373A9022CBD-P5GAC/sN6hkd3b2yrw5b5LfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-08-05 16:49           ` Yevgeny Petrilin
     [not found]             ` <HE1PR05MB1004A52EBD00FA30FAFFD225AA750-eBadYZ65MZ9M5L2kK+KmM9qRiQSDpxhJvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2015-08-05 17:12               ` Hefty, Sean
2015-08-05 22:29           ` Or Gerlitz
     [not found]             ` <CAJ3xEMgzKdFVtFfXC93EH=gBVGCpVJzKWm=C4RYttc1uz+phhQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-08-05 23:23               ` Hefty, Sean
     [not found]                 ` <1828884A29C6694DAF28B7E6B8A82373A9022F1D-P5GAC/sN6hkd3b2yrw5b5LfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-08-06  8:21                   ` Or Gerlitz
2015-08-05 17:16       ` Jason Gunthorpe
     [not found]         ` <20150805171634.GA12274-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2015-08-05 22:16           ` Or Gerlitz
     [not found]             ` <CAJ3xEMgFCx3Xaan2WYL53HRnhdvnoDsS2TriYbENQizpnV31dw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-08-06  0:00               ` Jason Gunthorpe
     [not found]                 ` <20150806000042.GC2483-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2015-08-06  8:18                   ` Or Gerlitz
2015-08-06 11:00           ` Haggai Eran
     [not found]             ` <HE1PR05MB1355B04E4B418A48DB5137B0C1740-eBadYZ65MZ+lkJP6d7MyxNqRiQSDpxhJvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2015-08-06 11:47               ` Parav Pandit
     [not found]             ` <CAG53R5UUgp5JHkwGVtY1MrrthgyVeoRS_N+-4WsOKQ-T2y04wA@mail.gmail.com>
     [not found]               ` <CAG53R5UUgp5JHkwGVtY1MrrthgyVeoRS_N+-4WsOKQ-T2y04wA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-08-06 16:50                 ` Haggai Eran
     [not found]                   ` <55C3903F.40301-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2015-08-06 17:27                     ` Parav Pandit
2015-08-05 15:34   ` [PATCH for-next 2/2] IB/mlx4_ib: " Amir Vadai
2015-09-02 14:32   ` [PATCH for-next 0/2] IB/{core,mlx4_ib}: RX/TX checksum offload Christoph Lameter
     [not found]     ` <alpine.DEB.2.11.1509020930430.12270-wcBtFHqTun5QOdAKl3ChDw@public.gmane.org>
2015-09-03  6:22       ` Or Gerlitz

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