From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 34747C47095 for ; Tue, 8 Jun 2021 01:04:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 18AC36109F for ; Tue, 8 Jun 2021 01:04:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231243AbhFHBGe (ORCPT ); Mon, 7 Jun 2021 21:06:34 -0400 Received: from linux.microsoft.com ([13.77.154.182]:45932 "EHLO linux.microsoft.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230209AbhFHBGd (ORCPT ); Mon, 7 Jun 2021 21:06:33 -0400 Received: by linux.microsoft.com (Postfix, from userid 1004) id 1202B20B83DC; Mon, 7 Jun 2021 18:04:41 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 1202B20B83DC DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxonhyperv.com; s=default; t=1623114281; bh=gFXV7UcUvIFsGJoKrUGikjqVL6ndMcZc3w1HB4lYFM4=; h=From:To:Cc:Subject:Date:From; b=OALig6DK+vsBIGu9eDuiF9kbEzTj2A2mAkWgxkBHK31zthaxe8568A2eyE5YrmdY4 ZmADwOvkfcdQY9p6GtTLzOWAhgEzcpwDy5NlwielQkWRoHyub78+etCQ95ip6Zf+sw sO9ERxucY3195Xr6sv2vLe5bexoaLT6QhU1xeTsw= From: longli@linuxonhyperv.com To: linux-kernel@vger.kernel.org, linux-hyperv@vger.kernel.org Cc: Long Li , "K. Y. Srinivasan" , Haiyang Zhang , Stephen Hemminger , Wei Liu , Dexuan Cui Subject: [PATCH 0/2] Add a driver for host accelerated Microsoft Azure Blob Storage access Date: Mon, 7 Jun 2021 18:04:34 -0700 Message-Id: <1623114276-11696-1-git-send-email-longli@linuxonhyperv.com> X-Mailer: git-send-email 1.8.3.1 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Long Li Microsoft Azure Blob Storage servcie exposes a REST API to applications for data access. While it's flexible and works on most platforms, it's not as efficient as native network stack. This patchset implements a VSC that communicates with a VSP on the host to execute blob storage access via native network stack on the host. Long Li (2): Drivers: hv: vmbus: add support to ignore certain PCIE devices Drivers: hv: add XStore Fastpath driver MAINTAINERS | 1 + drivers/hv/Kconfig | 11 + drivers/hv/Makefile | 1 + drivers/hv/channel_mgmt.c | 49 ++++ drivers/hv/hv_xs_fastpath.c | 579 ++++++++++++++++++++++++++++++++++++++++++++ drivers/hv/hv_xs_fastpath.h | 82 +++++++ include/linux/hyperv.h | 9 + 7 files changed, 732 insertions(+) create mode 100644 drivers/hv/hv_xs_fastpath.c create mode 100644 drivers/hv/hv_xs_fastpath.h Cc: K. Y. Srinivasan Cc: Haiyang Zhang Cc: Stephen Hemminger Cc: Wei Liu Cc: Dexuan Cui -- 1.8.3.1