linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 02/20] KVM: PPC: Book3S PR: Fix broken select due to misspelling
       [not found] <20180205012146.23981-1-ulfalizer@gmail.com>
@ 2018-02-05  1:21 ` Ulf Magnusson
  2018-02-05  4:48   ` Paul Mackerras
  0 siblings, 1 reply; 4+ messages in thread
From: Ulf Magnusson @ 2018-02-05  1:21 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-kbuild, tfiga, paul.burton, m.szyprowski, egtvedt,
	linus.walleij, vgupta, mgorman, hch, mina86, robh, sboyd, paulus,
	will.deacon, tony, npiggin, yamada.masahiro, Ulf Magnusson,
	Benjamin Herrenschmidt, Michael Ellerman, kvm-ppc, linuxppc-dev

Commit 76d837a4c0f9 ("KVM: PPC: Book3S PR: Don't include SPAPR TCE code
on non-pseries platforms") added a reference to the globally undefined
symbol PPC_SERIES. Looking at the rest of the commit, PPC_PSERIES was
probably intended.

Change PPC_SERIES to PPC_PSERIES.

Discovered with the
https://github.com/ulfalizer/Kconfiglib/blob/master/examples/list_undefined.py
script.

Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
---
 arch/powerpc/kvm/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/kvm/Kconfig b/arch/powerpc/kvm/Kconfig
index f884a0529dfe..68a0e9d5b440 100644
--- a/arch/powerpc/kvm/Kconfig
+++ b/arch/powerpc/kvm/Kconfig
@@ -69,7 +69,7 @@ config KVM_BOOK3S_64
 	select KVM_BOOK3S_64_HANDLER
 	select KVM
 	select KVM_BOOK3S_PR_POSSIBLE if !KVM_BOOK3S_HV_POSSIBLE
-	select SPAPR_TCE_IOMMU if IOMMU_SUPPORT && (PPC_SERIES || PPC_POWERNV)
+	select SPAPR_TCE_IOMMU if IOMMU_SUPPORT && (PPC_PSERIES || PPC_POWERNV)
 	---help---
 	  Support running unmodified book3s_64 and book3s_32 guest kernels
 	  in virtual machines on book3s_64 host processors.
-- 
2.14.1

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

* Re: [PATCH 02/20] KVM: PPC: Book3S PR: Fix broken select due to misspelling
  2018-02-05  1:21 ` [PATCH 02/20] KVM: PPC: Book3S PR: Fix broken select due to misspelling Ulf Magnusson
@ 2018-02-05  4:48   ` Paul Mackerras
  2018-02-05  4:58     ` Ulf Magnusson
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Mackerras @ 2018-02-05  4:48 UTC (permalink / raw)
  To: Ulf Magnusson
  Cc: linux-kernel, linux-kbuild, tfiga, paul.burton, m.szyprowski,
	egtvedt, linus.walleij, vgupta, mgorman, hch, mina86, robh, sboyd,
	will.deacon, tony, npiggin, yamada.masahiro,
	Benjamin Herrenschmidt, Michael Ellerman, kvm-ppc, linuxppc-dev

On Mon, Feb 05, 2018 at 02:21:14AM +0100, Ulf Magnusson wrote:
> Commit 76d837a4c0f9 ("KVM: PPC: Book3S PR: Don't include SPAPR TCE code
> on non-pseries platforms") added a reference to the globally undefined
> symbol PPC_SERIES. Looking at the rest of the commit, PPC_PSERIES was
> probably intended.
> 
> Change PPC_SERIES to PPC_PSERIES.
> 
> Discovered with the
> https://github.com/ulfalizer/Kconfiglib/blob/master/examples/list_undefined.py
> script.
> 
> Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>

Acked-by: Paul Mackerras <paulus@ozlabs.org>

Which tree is this series going into?

Paul.

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

* Re: [PATCH 02/20] KVM: PPC: Book3S PR: Fix broken select due to misspelling
  2018-02-05  4:48   ` Paul Mackerras
@ 2018-02-05  4:58     ` Ulf Magnusson
  2018-02-05  7:56       ` Paul Mackerras
  0 siblings, 1 reply; 4+ messages in thread
From: Ulf Magnusson @ 2018-02-05  4:58 UTC (permalink / raw)
  To: Paul Mackerras
  Cc: Linux Kernel Mailing List, Linux Kbuild mailing list, tfiga,
	paul.burton, Marek Szyprowski, Hans-Christian Noren Egtvedt,
	Linus Walleij, vgupta, mgorman, hch, mina86, robh, sboyd,
	will.deacon, Tony Lindgren, Nicholas Piggin, Masahiro Yamada,
	Benjamin Herrenschmidt, Michael Ellerman, kvm-ppc, linuxppc-dev

On Mon, Feb 5, 2018 at 5:48 AM, Paul Mackerras <paulus@ozlabs.org> wrote:
> On Mon, Feb 05, 2018 at 02:21:14AM +0100, Ulf Magnusson wrote:
>> Commit 76d837a4c0f9 ("KVM: PPC: Book3S PR: Don't include SPAPR TCE code
>> on non-pseries platforms") added a reference to the globally undefined
>> symbol PPC_SERIES. Looking at the rest of the commit, PPC_PSERIES was
>> probably intended.
>>
>> Change PPC_SERIES to PPC_PSERIES.
>>
>> Discovered with the
>> https://github.com/ulfalizer/Kconfiglib/blob/master/examples/list_undefined.py
>> script.
>>
>> Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
>
> Acked-by: Paul Mackerras <paulus@ozlabs.org>
>
> Which tree is this series going into?
>
> Paul.

I didn't have a particular one in mind. I imagined people would pick
up individual patches into the trees that make the most sense. It was
easiest to do the undefined symbol removal as a kernel-wide batch job.

All patches are against linux-next.

Cheers,
Ulf

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

* Re: [PATCH 02/20] KVM: PPC: Book3S PR: Fix broken select due to misspelling
  2018-02-05  4:58     ` Ulf Magnusson
@ 2018-02-05  7:56       ` Paul Mackerras
  0 siblings, 0 replies; 4+ messages in thread
From: Paul Mackerras @ 2018-02-05  7:56 UTC (permalink / raw)
  To: Ulf Magnusson
  Cc: Linux Kernel Mailing List, Linux Kbuild mailing list, tfiga,
	paul.burton, Marek Szyprowski, Hans-Christian Noren Egtvedt,
	Linus Walleij, vgupta, mgorman, hch, mina86, robh, sboyd,
	will.deacon, Tony Lindgren, Nicholas Piggin, Masahiro Yamada,
	Benjamin Herrenschmidt, Michael Ellerman, kvm-ppc, linuxppc-dev

On Mon, Feb 05, 2018 at 05:58:59AM +0100, Ulf Magnusson wrote:
> On Mon, Feb 5, 2018 at 5:48 AM, Paul Mackerras <paulus@ozlabs.org> wrote:
> > On Mon, Feb 05, 2018 at 02:21:14AM +0100, Ulf Magnusson wrote:
> >> Commit 76d837a4c0f9 ("KVM: PPC: Book3S PR: Don't include SPAPR TCE code
> >> on non-pseries platforms") added a reference to the globally undefined
> >> symbol PPC_SERIES. Looking at the rest of the commit, PPC_PSERIES was
> >> probably intended.
> >>
> >> Change PPC_SERIES to PPC_PSERIES.
> >>
> >> Discovered with the
> >> https://github.com/ulfalizer/Kconfiglib/blob/master/examples/list_undefined.py
> >> script.
> >>
> >> Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
> >
> > Acked-by: Paul Mackerras <paulus@ozlabs.org>
> >
> > Which tree is this series going into?
> >
> > Paul.
> 
> I didn't have a particular one in mind. I imagined people would pick
> up individual patches into the trees that make the most sense. It was
> easiest to do the undefined symbol removal as a kernel-wide batch job.

OK, I'll take this one then.

Paul.

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

end of thread, other threads:[~2018-02-05  7:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20180205012146.23981-1-ulfalizer@gmail.com>
2018-02-05  1:21 ` [PATCH 02/20] KVM: PPC: Book3S PR: Fix broken select due to misspelling Ulf Magnusson
2018-02-05  4:48   ` Paul Mackerras
2018-02-05  4:58     ` Ulf Magnusson
2018-02-05  7:56       ` Paul Mackerras

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