linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] PCI: expand the "PF" acronym in Kconfig help text
@ 2018-10-07  3:56 Randy Dunlap
  2018-10-07 17:02 ` Alexander Duyck
  2018-10-08 17:33 ` Bjorn Helgaas
  0 siblings, 2 replies; 3+ messages in thread
From: Randy Dunlap @ 2018-10-07  3:56 UTC (permalink / raw)
  To: linux-pci, Bjorn Helgaas; +Cc: LKML, Alexander Duyck

From: Randy Dunlap <rdunlap@infradead.org>

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 <rdunlap@infradead.org>
Cc: Alexander Duyck <alexander.h.duyck@intel.com>
---
 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.
 



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] PCI: expand the "PF" acronym in Kconfig help text
  2018-10-07  3:56 [PATCH] PCI: expand the "PF" acronym in Kconfig help text Randy Dunlap
@ 2018-10-07 17:02 ` Alexander Duyck
  2018-10-08 17:33 ` Bjorn Helgaas
  1 sibling, 0 replies; 3+ messages in thread
From: Alexander Duyck @ 2018-10-07 17:02 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-pci, Bjorn Helgaas, LKML, Duyck, Alexander H

On Sat, Oct 6, 2018 at 8:57 PM Randy Dunlap <rdunlap@infradead.org> wrote:
>
> From: Randy Dunlap <rdunlap@infradead.org>
>
> 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 <rdunlap@infradead.org>
> Cc: Alexander Duyck <alexander.h.duyck@intel.com>
> ---
>  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.

This looks good to me.

Acked-by: Alexander Duyck <alexander.h.duyck@linux.intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] PCI: expand the "PF" acronym in Kconfig help text
  2018-10-07  3:56 [PATCH] PCI: expand the "PF" acronym in Kconfig help text Randy Dunlap
  2018-10-07 17:02 ` Alexander Duyck
@ 2018-10-08 17:33 ` Bjorn Helgaas
  1 sibling, 0 replies; 3+ messages in thread
From: Bjorn Helgaas @ 2018-10-08 17:33 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-pci, Bjorn Helgaas, LKML, Alexander Duyck

On Sat, Oct 06, 2018 at 08:56:33PM -0700, Randy Dunlap wrote:
> From: Randy Dunlap <rdunlap@infradead.org>
> 
> 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 <rdunlap@infradead.org>
> Cc: Alexander Duyck <alexander.h.duyck@intel.com>

Applied with Alexander's ack to for-linus for v4.19.

> ---
>  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.
>  
> 
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-10-08 17:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-07  3:56 [PATCH] PCI: expand the "PF" acronym in Kconfig help text Randy Dunlap
2018-10-07 17:02 ` Alexander Duyck
2018-10-08 17:33 ` Bjorn Helgaas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).