From patchwork Sun Oct 7 03:56:33 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10629359 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id CFE3B14DB for ; Sun, 7 Oct 2018 03:57:00 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B522629150 for ; Sun, 7 Oct 2018 03:57:00 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A5C1D2915A; Sun, 7 Oct 2018 03:57:00 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.7 required=2.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1E4C029150 for ; Sun, 7 Oct 2018 03:56:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726291AbeJGLCX (ORCPT ); Sun, 7 Oct 2018 07:02:23 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:41364 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726238AbeJGLCX (ORCPT ); Sun, 7 Oct 2018 07:02:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=GcsFwBsTlRGg/ymaDk01OYInWyg4O77CuATR9BiGVRA=; b=Df7TT4UMOwTKwXuuhJ6gyk1gV mbm/io3yJZTTGOCf7x1er1g2NlAXwqH4H5aobjHS5Qg7GpBe8+YrIV7xtRaKRADg0DjFztc0dAo7D BztgT0B+ec6GjtKV+4Yd1KvxEjGllantpK0PesB2M1UO5r6NmiO6jDF1Bqq0xM+mnCgCuV7YJcPt5 3LYcNdwrhC7U56QrFYwKKv9Z6aHARwDO7OxNkWxsEsLX+vWfvTsabdkY3upA0mtxtldBlaXMRcqcS UWab5lj2ex8Z/X3WmJVViENvuB/iHgsDFqRjL7b8nOJ19SIR3+0hYLnhvMQveCVjWuqtvR+9LsPbk DlyVTqXRg==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlab) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1g90BG-0004QT-Nc; Sun, 07 Oct 2018 03:56:34 +0000 To: linux-pci , Bjorn Helgaas Cc: LKML , Alexander Duyck From: Randy Dunlap Subject: [PATCH] PCI: expand the "PF" acronym in Kconfig help text Message-ID: Date: Sat, 6 Oct 2018 20:56:33 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.0 MIME-Version: 1.0 Content-Language: en-US Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Tell users what a PCI PF is in the PCI_PF_STUB config help text. Fixes: a8ccf8a66663 ("PCI/IOV: Add pci-pf-stub driver for PFs that only enable VFs") Signed-off-by: Randy Dunlap Cc: Alexander Duyck Acked-by: Alexander Duyck --- drivers/pci/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- lnx-419-rc6.orig/drivers/pci/Kconfig +++ lnx-419-rc6/drivers/pci/Kconfig @@ -73,9 +73,9 @@ config PCI_PF_STUB depends on PCI_IOV help Say Y or M here if you want to enable support for devices that - require SR-IOV support, while at the same time the PF itself is - not providing any actual services on the host itself such as - storage or networking. + require SR-IOV support, while at the same time the PF (Physical + Function) itself is not providing any actual services on the + host itself such as storage or networking. When in doubt, say N.