All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] KVM: arm64: do not source virt/lib/Kconfig twice
@ 2024-02-04  7:43 ` Masahiro Yamada
  0 siblings, 0 replies; 4+ messages in thread
From: Masahiro Yamada @ 2024-02-04  7:43 UTC (permalink / raw)
  To: Marc Zyngier, Oliver Upton, James Morse, Suzuki K Poulose,
	Zenghui Yu, kvmarm
  Cc: Masahiro Yamada, Catalin Marinas, Will Deacon, linux-arm-kernel,
	linux-kernel

For ARCH=arm64, virt/lib/Kconfig is sourced twice,
from arch/arm64/kvm/Kconfig and from drivers/vfio/Kconfig.
There is no good reason to parse virt/lib/Kconfig twice.

Commit 2412405b3141 ("KVM: arm/arm64: register irq bypass consumer
on ARM/ARM64") should not have added this 'source' directive.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
---

 arch/arm64/kvm/Kconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm64/kvm/Kconfig b/arch/arm64/kvm/Kconfig
index 6c3c8ca73e7f..27ca89b628a0 100644
--- a/arch/arm64/kvm/Kconfig
+++ b/arch/arm64/kvm/Kconfig
@@ -3,7 +3,6 @@
 # KVM configuration
 #
 
-source "virt/lib/Kconfig"
 source "virt/kvm/Kconfig"
 
 menuconfig VIRTUALIZATION
-- 
2.40.1


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

* [PATCH] KVM: arm64: do not source virt/lib/Kconfig twice
@ 2024-02-04  7:43 ` Masahiro Yamada
  0 siblings, 0 replies; 4+ messages in thread
From: Masahiro Yamada @ 2024-02-04  7:43 UTC (permalink / raw)
  To: Marc Zyngier, Oliver Upton, James Morse, Suzuki K Poulose,
	Zenghui Yu, kvmarm
  Cc: Masahiro Yamada, Catalin Marinas, Will Deacon, linux-arm-kernel,
	linux-kernel

For ARCH=arm64, virt/lib/Kconfig is sourced twice,
from arch/arm64/kvm/Kconfig and from drivers/vfio/Kconfig.
There is no good reason to parse virt/lib/Kconfig twice.

Commit 2412405b3141 ("KVM: arm/arm64: register irq bypass consumer
on ARM/ARM64") should not have added this 'source' directive.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
---

 arch/arm64/kvm/Kconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm64/kvm/Kconfig b/arch/arm64/kvm/Kconfig
index 6c3c8ca73e7f..27ca89b628a0 100644
--- a/arch/arm64/kvm/Kconfig
+++ b/arch/arm64/kvm/Kconfig
@@ -3,7 +3,6 @@
 # KVM configuration
 #
 
-source "virt/lib/Kconfig"
 source "virt/kvm/Kconfig"
 
 menuconfig VIRTUALIZATION
-- 
2.40.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] KVM: arm64: do not source virt/lib/Kconfig twice
  2024-02-04  7:43 ` Masahiro Yamada
@ 2024-02-04 13:09   ` Marc Zyngier
  -1 siblings, 0 replies; 4+ messages in thread
From: Marc Zyngier @ 2024-02-04 13:09 UTC (permalink / raw)
  To: Masahiro Yamada, James Morse, Zenghui Yu, Suzuki K Poulose,
	Oliver Upton, kvmarm
  Cc: Will Deacon, linux-kernel, Catalin Marinas, linux-arm-kernel

On Sun, 4 Feb 2024 16:43:05 +0900, Masahiro Yamada wrote:
> For ARCH=arm64, virt/lib/Kconfig is sourced twice,
> from arch/arm64/kvm/Kconfig and from drivers/vfio/Kconfig.
> There is no good reason to parse virt/lib/Kconfig twice.
> 
> Commit 2412405b3141 ("KVM: arm/arm64: register irq bypass consumer
> on ARM/ARM64") should not have added this 'source' directive.

Applied to fixes, thanks!

[1/1] KVM: arm64: do not source virt/lib/Kconfig twice
      commit: 42dfa94d802a48c871e2017cbf86153270c86632

Cheers,

	M.
-- 
Without deviation from the norm, progress is not possible.



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

* Re: [PATCH] KVM: arm64: do not source virt/lib/Kconfig twice
@ 2024-02-04 13:09   ` Marc Zyngier
  0 siblings, 0 replies; 4+ messages in thread
From: Marc Zyngier @ 2024-02-04 13:09 UTC (permalink / raw)
  To: Masahiro Yamada, James Morse, Zenghui Yu, Suzuki K Poulose,
	Oliver Upton, kvmarm
  Cc: Will Deacon, linux-kernel, Catalin Marinas, linux-arm-kernel

On Sun, 4 Feb 2024 16:43:05 +0900, Masahiro Yamada wrote:
> For ARCH=arm64, virt/lib/Kconfig is sourced twice,
> from arch/arm64/kvm/Kconfig and from drivers/vfio/Kconfig.
> There is no good reason to parse virt/lib/Kconfig twice.
> 
> Commit 2412405b3141 ("KVM: arm/arm64: register irq bypass consumer
> on ARM/ARM64") should not have added this 'source' directive.

Applied to fixes, thanks!

[1/1] KVM: arm64: do not source virt/lib/Kconfig twice
      commit: 42dfa94d802a48c871e2017cbf86153270c86632

Cheers,

	M.
-- 
Without deviation from the norm, progress is not possible.



_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2024-02-04 13:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-04  7:43 [PATCH] KVM: arm64: do not source virt/lib/Kconfig twice Masahiro Yamada
2024-02-04  7:43 ` Masahiro Yamada
2024-02-04 13:09 ` Marc Zyngier
2024-02-04 13:09   ` Marc Zyngier

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.