From patchwork Mon Jun 15 17:06:38 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jake Oshins X-Patchwork-Id: 6610831 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: X-Original-To: patchwork-linux-pci@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 874C79F1C1 for ; Mon, 15 Jun 2015 17:08:52 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 981AE20784 for ; Mon, 15 Jun 2015 17:08:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D787320779 for ; Mon, 15 Jun 2015 17:08:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755840AbbFORIe (ORCPT ); Mon, 15 Jun 2015 13:08:34 -0400 Received: from o1.f.az.sendgrid.net ([208.117.55.132]:56030 "EHLO o1.f.az.sendgrid.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755699AbbFORIQ (ORCPT ); Mon, 15 Jun 2015 13:08:16 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sendgrid.me; h=from:to:cc:subject:in-reply-to:references; s=smtpapi; bh=B9GNb71Wu4c0qxb0sbXXCj6RODQ=; b=znebLML66827KKsDm81p2QAFXCQ12 zHw/6IWgdbERai4cM19gmozwVr6dHlPZjCs8PzuIKjfEdaAVqgEiRsYHraFkgerc r8UZqLpdpE4IiTeeCc2YcvTA4VjdTVRUyPeQaQ47UIXXJQroYx101Qv9/xzVKbpO tJcSXpu1Zqy6U0= Received: by filter-326.sjc1.sendgrid.net with SMTP id filter-326.9099.557F064127 2015-06-15 17:07:13.812798971 +0000 UTC Received: from jakeoshinsu2.jakeoshinsu2.d1.internal.cloudapp.net (unknown [104.210.40.47]) by ismtpd-091 (SG) with ESMTP id 14df83070c4.28ee.104ced Mon, 15 Jun 2015 17:07:13 +0000 (UTC) From: jakeo@microsoft.com To: gregkh@linuxfoundation.org, kys@microsoft.com, linux-kernel@vger.kernel.org, devel@linuxdriverproject.org, olaf@aepfle.de, apw@canonical.com, vkuznets@redhat.com, bhelgaas@google.com, linux-pci@vger.kernel.org, pebolle@tiscali.nl, haiyangz@microsoft.com, mebersol@microsoft.com Cc: Jake Oshins Subject: [PATCH v2 5/6] drivers:hv: Define the channel type for Hyper-V PCI Express pass-through Date: Mon, 15 Jun 2015 17:06:38 +0000 Message-Id: <1434387999-1885-6-git-send-email-jakeo@microsoft.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1434387999-1885-1-git-send-email-jakeo@microsoft.com> References: <1434387999-1885-1-git-send-email-jakeo@microsoft.com> X-SG-EID: lfnueJVzSjg1mfuVqqukVH7tZvRy9mfCIcBnfbfzaMMAeeVlbCmBCzRyZ1cgoqqmrfI+bzzIEfiZYo gq3Z4wifK4BEppTRV61jPPwcgUr/ZXguKHDgKwSSTGiPwP95nE8Xwd9T+ocjIqGW6slkXutJFco3xe 50udbEHpz+xrtkw= Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY, URIBL_GREY 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: Jake Oshins This patch updates the list of VMBus channel GUIDs, defining the one for PCI Express pass-through. Signed-off-by: Jake Oshins --- include/linux/hyperv.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 6fec42d..1903238 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -1144,6 +1144,17 @@ int vmbus_procnum_to_vpnum(int procnum); } /* + * PCI Express Pass Through + * {44C4F61D-4444-4400-9D52-802E27EDE19F} + */ + +#define HV_PCIE_GUID \ + .guid = { \ + 0x1D, 0xF6, 0xC4, 0x44, 0x44, 0x44, 0x00, 0x44, \ + 0x9D, 0x52, 0x80, 0x2E, 0x27, 0xED, 0xE1, 0x9F \ + } + +/* * Common header for Hyper-V ICs */