From patchwork Thu Dec 12 11:09:23 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Romanovsky X-Patchwork-Id: 1208384 Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="LAPqzh13"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 47YWKC0gGxz9sPK for ; Thu, 12 Dec 2019 22:09:35 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728934AbfLLLJd (ORCPT ); Thu, 12 Dec 2019 06:09:33 -0500 Received: from mail.kernel.org ([198.145.29.99]:56724 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728613AbfLLLJd (ORCPT ); Thu, 12 Dec 2019 06:09:33 -0500 Received: from localhost (unknown [193.47.165.251]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id F365C2173E; Thu, 12 Dec 2019 11:09:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1576148972; bh=7ENS/89lnbwcbC/C0h3w4lNBwZWoUvb8BYPBh1lMWQs=; h=From:To:Cc:Subject:Date:From; b=LAPqzh13mWxSkMRKlVpsS85wM5Xp6y6z1po2liHkZaSZzJaMRTvL8yBFxEToLzwpj ALkQcsx8vve5RI3Mxeek46mc6mmhpubbMbhSMWzNpRPUk/tzDKPDtYpJ5XEKZGDQ8k wEejDfpKG2JCXBgccAYqoSuawAEGri8BAVVoQHKc= From: Leon Romanovsky To: Doug Ledford , Jason Gunthorpe Cc: Leon Romanovsky , RDMA mailing list , Shahaf Shuler , Yishai Hadas , Saeed Mahameed , linux-netdev Subject: [PATCH rdma-next 0/5] VIRTIO_NET Emulation Offload Date: Thu, 12 Dec 2019 13:09:23 +0200 Message-Id: <20191212110928.334995-1-leon@kernel.org> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Leon Romanovsky Hi, In this series, we introduce VIRTIO_NET_Q HW offload capability, so SW will be able to create special general object with relevant virtqueue properties. This series is based on -rc patches: https://lore.kernel.org/linux-rdma/20191212100237.330654-1-leon@kernel.org Thanks Yishai Hadas (5): net/mlx5: Add Virtio Emulation related device capabilities net/mlx5: Expose vDPA emulation device capabilities IB/mlx5: Extend caps stage to handle VAR capabilities IB/mlx5: Introduce VAR object and its alloc/destroy methods IB/mlx5: Add mmap support for VAR drivers/infiniband/hw/mlx5/main.c | 202 ++++++++++++++++++- drivers/infiniband/hw/mlx5/mlx5_ib.h | 17 ++ drivers/net/ethernet/mellanox/mlx5/core/fw.c | 7 + include/linux/mlx5/device.h | 9 + include/linux/mlx5/mlx5_ifc.h | 15 ++ include/uapi/rdma/mlx5_user_ioctl_cmds.h | 17 ++ 6 files changed, 264 insertions(+), 3 deletions(-) --- 2.20.1