From patchwork Sun Jun 14 10:13:38 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Or Gerlitz X-Patchwork-Id: 6604221 Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 4C7509F1C1 for ; Sun, 14 Jun 2015 10:14:07 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7031220685 for ; Sun, 14 Jun 2015 10:14:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8C8A12063B for ; Sun, 14 Jun 2015 10:14:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751129AbbFNKOD (ORCPT ); Sun, 14 Jun 2015 06:14:03 -0400 Received: from [193.47.165.129] ([193.47.165.129]:45258 "EHLO mellanox.co.il" rhost-flags-FAIL-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1750908AbbFNKOC (ORCPT ); Sun, 14 Jun 2015 06:14:02 -0400 Received: from Internal Mail-Server by MTLPINE1 (envelope-from ogerlitz@mellanox.com) with ESMTPS (AES256-SHA encrypted); 14 Jun 2015 13:13:23 +0300 Received: from r-vnc04.mtr.labs.mlnx (r-vnc04.mtr.labs.mlnx [10.208.0.116]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id t5EADd9O017824; Sun, 14 Jun 2015 13:13:39 +0300 From: Or Gerlitz To: Doug Ledford Cc: linux-rdma@vger.kernel.org, Amir Vadai , Tal Alon , Matan Barak , Moshe Lazer , Eyal Perry , Or Gerlitz Subject: [PATCH REPOST libmlx4] Add IP and TCP/UDP TX checksum offload support Date: Sun, 14 Jun 2015 13:13:38 +0300 Message-Id: <1434276818-15972-1-git-send-email-ogerlitz@mellanox.com> X-Mailer: git-send-email 1.7.8.2 Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Moshe Lazer Add support for IBV_SEND_IP_CSUM for posted send work-requests. When this flag is set, enable the HW checksum calculation by setting MLX4_WQE_CTRL_IP_CSUM and MLX4_WQE_CTRL_TCP_UDP_CSUM flags in the WQE control segment. Signed-off-by: Eyal Perry Signed-off-by: Moshe Lazer Signed-off-by: Or Gerlitz --- src/qp.c | 11 ++++++++++- src/wqe.h | 2 ++ 2 files changed, 12 insertions(+), 1 deletions(-) diff --git a/src/qp.c b/src/qp.c index 721bed4..5b800e7 100644 --- a/src/qp.c +++ b/src/qp.c @@ -286,6 +286,10 @@ int mlx4_post_send(struct ibv_qp *ibqp, struct ibv_send_wr *wr, break; case IBV_QPT_UD: + ctrl->srcrb_flags |= + wr->send_flags & IBV_SEND_IP_CSUM ? + htonl(MLX4_WQE_CTRL_IP_CSUM | + MLX4_WQE_CTRL_TCP_UDP_CSUM) : 0; set_datagram_seg(wqe, wr); wqe += sizeof (struct mlx4_wqe_datagram_seg); size += sizeof (struct mlx4_wqe_datagram_seg) / 16; @@ -294,7 +298,12 @@ int mlx4_post_send(struct ibv_qp *ibqp, struct ibv_send_wr *wr, case IBV_QPT_RAW_PACKET: /* For raw eth, the MLX4_WQE_CTRL_SOLICIT flag is used * to indicate that no icrc should be calculated */ - ctrl->srcrb_flags |= htonl(MLX4_WQE_CTRL_SOLICIT); + ctrl->srcrb_flags |= + wr->send_flags & IBV_SEND_IP_CSUM ? + htonl(MLX4_WQE_CTRL_IP_CSUM | + MLX4_WQE_CTRL_TCP_UDP_CSUM | + MLX4_WQE_CTRL_SOLICIT) : + htonl(MLX4_WQE_CTRL_SOLICIT); break; default: diff --git a/src/wqe.h b/src/wqe.h index bbd22ba..ebd5167 100644 --- a/src/wqe.h +++ b/src/wqe.h @@ -41,6 +41,8 @@ enum { MLX4_WQE_CTRL_FENCE = 1 << 6, MLX4_WQE_CTRL_CQ_UPDATE = 3 << 2, MLX4_WQE_CTRL_SOLICIT = 1 << 1, + MLX4_WQE_CTRL_IP_CSUM = 1 << 4, + MLX4_WQE_CTRL_TCP_UDP_CSUM = 1 << 5 }; enum {