All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm
@ 2014-06-06 23:11 Luis R. Rodriguez
  2014-06-06 23:11 ` [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper Luis R. Rodriguez
                   ` (5 more replies)
  0 siblings, 6 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-06 23:11 UTC (permalink / raw)
  To: tglx, mingo, hpa
  Cc: x86, linux-kernel, Luis R. Rodriguez, Borislav Petkov,
	Pekka Enberg, David Rientjes, Michal Marek, Randy Dunlap,
	levinsasha928, mtosatti, fengguang.wu, David Vrabel,
	Ian Campbell, Konrad Rzeszutek Wilk, xen-devel

From: "Luis R. Rodriguez" <mcgrof@suse.com>

We'll be adding options for xen as well.

Cc: Borislav Petkov <bp@suse.de>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Michal Marek <mmarek@suse.cz>
Cc: Randy Dunlap <rdunlap@infradead.org>
Cc: penberg@kernel.org
Cc: levinsasha928@gmail.com
Cc: mtosatti@redhat.com
Cc: fengguang.wu@intel.com
Cc: David Vrabel <david.vrabel@citrix.com>
Cc: Ian Campbell <Ian.Campbell@citrix.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: xen-devel@lists.xenproject.org
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
---
 arch/x86/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 33f71b0..37621ac 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -269,5 +269,5 @@ define archhelp
   echo  '                  bzdisk/fdimage*/isoimage also accept:'
   echo  '                  FDARGS="..."  arguments for the booted kernel'
   echo  '                  FDINITRD=file initrd for the booted kernel'
-  echo  '  kvmconfig	- Enable additional options for guest kernel support'
+  echo  '  kvmconfig	- Enable additional options for kvm guest kernel support'
 endef
-- 
2.0.0.rc3.18.g00a5b79


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

* [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper
  2014-06-06 23:11 [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm Luis R. Rodriguez
@ 2014-06-06 23:11 ` Luis R. Rodriguez
  2014-06-07  9:11   ` David Rientjes
  2014-06-07  9:11   ` David Rientjes
  2014-06-06 23:11 ` Luis R. Rodriguez
                   ` (4 subsequent siblings)
  5 siblings, 2 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-06 23:11 UTC (permalink / raw)
  To: tglx, mingo, hpa
  Cc: x86, linux-kernel, Luis R. Rodriguez, Borislav Petkov,
	Pekka Enberg, David Rientjes, Michal Marek, Randy Dunlap,
	levinsasha928, mtosatti, fengguang.wu, David Vrabel,
	Ian Campbell, Konrad Rzeszutek Wilk, xen-devel

From: "Luis R. Rodriguez" <mcgrof@suse.com>

This lets you build a kernel which can support xen dom0
or xen gusets by just using:

   make xenconfig

Technically xen supports a dom0 kernel and also a guest
kernel configuration but upon review with the xen team
since we don't have many dom0 options its best to just
combine these two into one.

Cc: Borislav Petkov <bp@suse.de>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Michal Marek <mmarek@suse.cz>
Cc: Randy Dunlap <rdunlap@infradead.org>
Cc: penberg@kernel.org
Cc: levinsasha928@gmail.com
Cc: mtosatti@redhat.com
Cc: fengguang.wu@intel.com
Cc: David Vrabel <david.vrabel@citrix.com>
Cc: Ian Campbell <Ian.Campbell@citrix.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: xen-devel@lists.xenproject.org
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
---
 arch/x86/Makefile           |  7 +++++++
 arch/x86/configs/xen.config | 36 ++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)
 create mode 100644 arch/x86/configs/xen.config

diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 37621ac..9db34e2 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -256,6 +256,12 @@ kvmconfig:
 	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/kvm_guest.config
 	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
 
+PHONY += xenconfig
+xenconfig:
+	$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
+	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/xen.config
+	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
+
 define archhelp
   echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'
   echo  '  install      - Install kernel using'
@@ -270,4 +276,5 @@ define archhelp
   echo  '                  FDARGS="..."  arguments for the booted kernel'
   echo  '                  FDINITRD=file initrd for the booted kernel'
   echo  '  kvmconfig	- Enable additional options for kvm guest kernel support'
+  echo  '  xenconfig    - Enable additional options for xen dom0 and guest kernel support'
 endef
diff --git a/arch/x86/configs/xen.config b/arch/x86/configs/xen.config
new file mode 100644
index 0000000..fbfbe5c
--- /dev/null
+++ b/arch/x86/configs/xen.config
@@ -0,0 +1,36 @@
+CONFIG_XEN=y
+CONFIG_XEN_DOM0=y
+CONFIG_XEN_PVHVM=y
+CONFIG_XEN_MAX_DOMAIN_MEMORY=500
+CONFIG_XEN_SAVE_RESTORE=y
+# CONFIG_XEN_DEBUG_FS is not set
+CONFIG_XEN_PVH=y
+CONFIG_PCI_XEN=y
+CONFIG_XEN_PCIDEV_FRONTEND=m
+CONFIG_XEN_BLKDEV_FRONTEND=m
+CONFIG_XEN_BLKDEV_BACKEND=m
+CONFIG_XEN_NETDEV_FRONTEND=m
+CONFIG_XEN_NETDEV_BACKEND=m
+CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y
+CONFIG_HVC_XEN=y
+CONFIG_HVC_XEN_FRONTEND=y
+CONFIG_TCG_XEN=m
+CONFIG_XEN_WDT=m
+CONFIG_XEN_FBDEV_FRONTEND=y
+CONFIG_XEN_BALLOON=y
+CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
+CONFIG_XEN_SCRUB_PAGES=y
+CONFIG_XEN_DEV_EVTCHN=m
+CONFIG_XEN_BACKEND=y
+CONFIG_XENFS=m
+CONFIG_XEN_COMPAT_XENFS=y
+CONFIG_XEN_SYS_HYPERVISOR=y
+CONFIG_XEN_XENBUS_FRONTEND=y
+CONFIG_XEN_GNTDEV=m
+CONFIG_XEN_GRANT_DEV_ALLOC=m
+CONFIG_SWIOTLB_XEN=y
+CONFIG_XEN_PCIDEV_BACKEND=m
+CONFIG_XEN_PRIVCMD=m
+CONFIG_XEN_ACPI_PROCESSOR=m
+CONFIG_XEN_MCE_LOG=y
+CONFIG_XEN_HAVE_PVMMU=y
-- 
2.0.0.rc3.18.g00a5b79


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

* [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper
  2014-06-06 23:11 [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm Luis R. Rodriguez
  2014-06-06 23:11 ` [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper Luis R. Rodriguez
@ 2014-06-06 23:11 ` Luis R. Rodriguez
  2014-06-06 23:11 ` [PATCH 3/3] x86, platform, kconfig: add virtconfig " Luis R. Rodriguez
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-06 23:11 UTC (permalink / raw)
  To: tglx, mingo, hpa
  Cc: Michal Marek, Randy Dunlap, Ian Campbell, Luis R. Rodriguez, x86,
	linux-kernel, mtosatti, Pekka Enberg, fengguang.wu,
	levinsasha928, David Rientjes, xen-devel, Borislav Petkov,
	David Vrabel

From: "Luis R. Rodriguez" <mcgrof@suse.com>

This lets you build a kernel which can support xen dom0
or xen gusets by just using:

   make xenconfig

Technically xen supports a dom0 kernel and also a guest
kernel configuration but upon review with the xen team
since we don't have many dom0 options its best to just
combine these two into one.

Cc: Borislav Petkov <bp@suse.de>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Michal Marek <mmarek@suse.cz>
Cc: Randy Dunlap <rdunlap@infradead.org>
Cc: penberg@kernel.org
Cc: levinsasha928@gmail.com
Cc: mtosatti@redhat.com
Cc: fengguang.wu@intel.com
Cc: David Vrabel <david.vrabel@citrix.com>
Cc: Ian Campbell <Ian.Campbell@citrix.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: xen-devel@lists.xenproject.org
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
---
 arch/x86/Makefile           |  7 +++++++
 arch/x86/configs/xen.config | 36 ++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)
 create mode 100644 arch/x86/configs/xen.config

diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 37621ac..9db34e2 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -256,6 +256,12 @@ kvmconfig:
 	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/kvm_guest.config
 	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
 
+PHONY += xenconfig
+xenconfig:
+	$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
+	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/xen.config
+	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
+
 define archhelp
   echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'
   echo  '  install      - Install kernel using'
@@ -270,4 +276,5 @@ define archhelp
   echo  '                  FDARGS="..."  arguments for the booted kernel'
   echo  '                  FDINITRD=file initrd for the booted kernel'
   echo  '  kvmconfig	- Enable additional options for kvm guest kernel support'
+  echo  '  xenconfig    - Enable additional options for xen dom0 and guest kernel support'
 endef
diff --git a/arch/x86/configs/xen.config b/arch/x86/configs/xen.config
new file mode 100644
index 0000000..fbfbe5c
--- /dev/null
+++ b/arch/x86/configs/xen.config
@@ -0,0 +1,36 @@
+CONFIG_XEN=y
+CONFIG_XEN_DOM0=y
+CONFIG_XEN_PVHVM=y
+CONFIG_XEN_MAX_DOMAIN_MEMORY=500
+CONFIG_XEN_SAVE_RESTORE=y
+# CONFIG_XEN_DEBUG_FS is not set
+CONFIG_XEN_PVH=y
+CONFIG_PCI_XEN=y
+CONFIG_XEN_PCIDEV_FRONTEND=m
+CONFIG_XEN_BLKDEV_FRONTEND=m
+CONFIG_XEN_BLKDEV_BACKEND=m
+CONFIG_XEN_NETDEV_FRONTEND=m
+CONFIG_XEN_NETDEV_BACKEND=m
+CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y
+CONFIG_HVC_XEN=y
+CONFIG_HVC_XEN_FRONTEND=y
+CONFIG_TCG_XEN=m
+CONFIG_XEN_WDT=m
+CONFIG_XEN_FBDEV_FRONTEND=y
+CONFIG_XEN_BALLOON=y
+CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
+CONFIG_XEN_SCRUB_PAGES=y
+CONFIG_XEN_DEV_EVTCHN=m
+CONFIG_XEN_BACKEND=y
+CONFIG_XENFS=m
+CONFIG_XEN_COMPAT_XENFS=y
+CONFIG_XEN_SYS_HYPERVISOR=y
+CONFIG_XEN_XENBUS_FRONTEND=y
+CONFIG_XEN_GNTDEV=m
+CONFIG_XEN_GRANT_DEV_ALLOC=m
+CONFIG_SWIOTLB_XEN=y
+CONFIG_XEN_PCIDEV_BACKEND=m
+CONFIG_XEN_PRIVCMD=m
+CONFIG_XEN_ACPI_PROCESSOR=m
+CONFIG_XEN_MCE_LOG=y
+CONFIG_XEN_HAVE_PVMMU=y
-- 
2.0.0.rc3.18.g00a5b79

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

* [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-06 23:11 [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm Luis R. Rodriguez
                   ` (2 preceding siblings ...)
  2014-06-06 23:11 ` [PATCH 3/3] x86, platform, kconfig: add virtconfig " Luis R. Rodriguez
@ 2014-06-06 23:11 ` Luis R. Rodriguez
  2014-06-07  9:04   ` Borislav Petkov
                     ` (3 more replies)
  2014-06-07  9:08 ` [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm David Rientjes
  2014-06-07  9:08 ` David Rientjes
  5 siblings, 4 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-06 23:11 UTC (permalink / raw)
  To: tglx, mingo, hpa
  Cc: x86, linux-kernel, Luis R. Rodriguez, Borislav Petkov,
	Pekka Enberg, David Rientjes, Michal Marek, Randy Dunlap,
	levinsasha928, mtosatti, fengguang.wu, David Vrabel,
	Ian Campbell, Konrad Rzeszutek Wilk, xen-devel

From: "Luis R. Rodriguez" <mcgrof@suse.com>

This lets you use:

   make virtconfig

to merge you current kernel configuration with options to
enable both kvm and xen (dom0 and guest) requirements.

Cc: Borislav Petkov <bp@suse.de>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Michal Marek <mmarek@suse.cz>
Cc: Randy Dunlap <rdunlap@infradead.org>
Cc: penberg@kernel.org
Cc: levinsasha928@gmail.com
Cc: mtosatti@redhat.com
Cc: fengguang.wu@intel.com
Cc: David Vrabel <david.vrabel@citrix.com>
Cc: Ian Campbell <Ian.Campbell@citrix.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: xen-devel@lists.xenproject.org
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
---
 arch/x86/Makefile | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 9db34e2..f2df13e 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -262,6 +262,11 @@ xenconfig:
 	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/xen.config
 	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
 
+PHONY += virtconfig
+virtconfig:
+	$(Q)$(MAKE) kvmconfig
+	$(Q)$(MAKE) xenconfig
+
 define archhelp
   echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'
   echo  '  install      - Install kernel using'
@@ -277,4 +282,5 @@ define archhelp
   echo  '                  FDINITRD=file initrd for the booted kernel'
   echo  '  kvmconfig	- Enable additional options for kvm guest kernel support'
   echo  '  xenconfig    - Enable additional options for xen dom0 and guest kernel support'
+  echo  '  virtconfig   - Enable additional options for kvm and xen kernel support'
 endef
-- 
2.0.0.rc3.18.g00a5b79


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

* [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-06 23:11 [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm Luis R. Rodriguez
  2014-06-06 23:11 ` [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper Luis R. Rodriguez
  2014-06-06 23:11 ` Luis R. Rodriguez
@ 2014-06-06 23:11 ` Luis R. Rodriguez
  2014-06-06 23:11 ` Luis R. Rodriguez
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-06 23:11 UTC (permalink / raw)
  To: tglx, mingo, hpa
  Cc: Michal Marek, Randy Dunlap, Ian Campbell, Luis R. Rodriguez, x86,
	linux-kernel, mtosatti, Pekka Enberg, fengguang.wu,
	levinsasha928, David Rientjes, xen-devel, Borislav Petkov,
	David Vrabel

From: "Luis R. Rodriguez" <mcgrof@suse.com>

This lets you use:

   make virtconfig

to merge you current kernel configuration with options to
enable both kvm and xen (dom0 and guest) requirements.

Cc: Borislav Petkov <bp@suse.de>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Michal Marek <mmarek@suse.cz>
Cc: Randy Dunlap <rdunlap@infradead.org>
Cc: penberg@kernel.org
Cc: levinsasha928@gmail.com
Cc: mtosatti@redhat.com
Cc: fengguang.wu@intel.com
Cc: David Vrabel <david.vrabel@citrix.com>
Cc: Ian Campbell <Ian.Campbell@citrix.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: xen-devel@lists.xenproject.org
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
---
 arch/x86/Makefile | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 9db34e2..f2df13e 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -262,6 +262,11 @@ xenconfig:
 	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/xen.config
 	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
 
+PHONY += virtconfig
+virtconfig:
+	$(Q)$(MAKE) kvmconfig
+	$(Q)$(MAKE) xenconfig
+
 define archhelp
   echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'
   echo  '  install      - Install kernel using'
@@ -277,4 +282,5 @@ define archhelp
   echo  '                  FDINITRD=file initrd for the booted kernel'
   echo  '  kvmconfig	- Enable additional options for kvm guest kernel support'
   echo  '  xenconfig    - Enable additional options for xen dom0 and guest kernel support'
+  echo  '  virtconfig   - Enable additional options for kvm and xen kernel support'
 endef
-- 
2.0.0.rc3.18.g00a5b79

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-06 23:11 ` Luis R. Rodriguez
@ 2014-06-07  9:04   ` Borislav Petkov
  2014-06-09 17:15     ` Luis R. Rodriguez
  2014-06-09 17:15     ` Luis R. Rodriguez
  2014-06-07  9:04   ` Borislav Petkov
                     ` (2 subsequent siblings)
  3 siblings, 2 replies; 28+ messages in thread
From: Borislav Petkov @ 2014-06-07  9:04 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: tglx, mingo, hpa, x86, linux-kernel, Luis R. Rodriguez,
	Pekka Enberg, David Rientjes, Michal Marek, Randy Dunlap,
	levinsasha928, mtosatti, fengguang.wu, David Vrabel,
	Ian Campbell, Konrad Rzeszutek Wilk, xen-devel

On Fri, Jun 06, 2014 at 04:11:09PM -0700, Luis R. Rodriguez wrote:
> From: "Luis R. Rodriguez" <mcgrof@suse.com>
> 
> This lets you use:
> 
>    make virtconfig
> 
> to merge you current kernel configuration with options to
> enable both kvm and xen (dom0 and guest) requirements.

What would be the use case for that?

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-06 23:11 ` Luis R. Rodriguez
  2014-06-07  9:04   ` Borislav Petkov
@ 2014-06-07  9:04   ` Borislav Petkov
  2014-06-07  9:14   ` David Rientjes
  2014-06-07  9:14   ` David Rientjes
  3 siblings, 0 replies; 28+ messages in thread
From: Borislav Petkov @ 2014-06-07  9:04 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: Michal Marek, Randy Dunlap, Ian Campbell, Luis R. Rodriguez, x86,
	linux-kernel, mtosatti, Pekka Enberg, xen-devel, mingo,
	levinsasha928, hpa, David Rientjes, tglx, fengguang.wu,
	David Vrabel

On Fri, Jun 06, 2014 at 04:11:09PM -0700, Luis R. Rodriguez wrote:
> From: "Luis R. Rodriguez" <mcgrof@suse.com>
> 
> This lets you use:
> 
>    make virtconfig
> 
> to merge you current kernel configuration with options to
> enable both kvm and xen (dom0 and guest) requirements.

What would be the use case for that?

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

* Re: [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm
  2014-06-06 23:11 [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm Luis R. Rodriguez
                   ` (3 preceding siblings ...)
  2014-06-06 23:11 ` Luis R. Rodriguez
@ 2014-06-07  9:08 ` David Rientjes
  2014-06-07  9:08 ` David Rientjes
  5 siblings, 0 replies; 28+ messages in thread
From: David Rientjes @ 2014-06-07  9:08 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: tglx, mingo, hpa, x86, linux-kernel, Luis R. Rodriguez,
	Borislav Petkov, Pekka Enberg, Michal Marek, Randy Dunlap,
	levinsasha928, mtosatti, fengguang.wu, David Vrabel,
	Ian Campbell, Konrad Rzeszutek Wilk, xen-devel

On Fri, 6 Jun 2014, Luis R. Rodriguez wrote:

> From: "Luis R. Rodriguez" <mcgrof@suse.com>
> 
> We'll be adding options for xen as well.
> 
> Cc: Borislav Petkov <bp@suse.de>
> Cc: Pekka Enberg <penberg@kernel.org>
> Cc: David Rientjes <rientjes@google.com>
> Cc: Michal Marek <mmarek@suse.cz>
> Cc: Randy Dunlap <rdunlap@infradead.org>
> Cc: penberg@kernel.org
> Cc: levinsasha928@gmail.com
> Cc: mtosatti@redhat.com
> Cc: fengguang.wu@intel.com
> Cc: David Vrabel <david.vrabel@citrix.com>
> Cc: Ian Campbell <Ian.Campbell@citrix.com>
> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Cc: xen-devel@lists.xenproject.org
> Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>

Acked-by: David Rientjes <rientjes@google.com>

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

* Re: [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm
  2014-06-06 23:11 [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm Luis R. Rodriguez
                   ` (4 preceding siblings ...)
  2014-06-07  9:08 ` [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm David Rientjes
@ 2014-06-07  9:08 ` David Rientjes
  5 siblings, 0 replies; 28+ messages in thread
From: David Rientjes @ 2014-06-07  9:08 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: Michal Marek, fengguang.wu, Randy Dunlap, Ian Campbell,
	Luis R. Rodriguez, x86, linux-kernel, mtosatti, Pekka Enberg,
	mingo, levinsasha928, hpa, xen-devel, tglx, Borislav Petkov,
	David Vrabel

On Fri, 6 Jun 2014, Luis R. Rodriguez wrote:

> From: "Luis R. Rodriguez" <mcgrof@suse.com>
> 
> We'll be adding options for xen as well.
> 
> Cc: Borislav Petkov <bp@suse.de>
> Cc: Pekka Enberg <penberg@kernel.org>
> Cc: David Rientjes <rientjes@google.com>
> Cc: Michal Marek <mmarek@suse.cz>
> Cc: Randy Dunlap <rdunlap@infradead.org>
> Cc: penberg@kernel.org
> Cc: levinsasha928@gmail.com
> Cc: mtosatti@redhat.com
> Cc: fengguang.wu@intel.com
> Cc: David Vrabel <david.vrabel@citrix.com>
> Cc: Ian Campbell <Ian.Campbell@citrix.com>
> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Cc: xen-devel@lists.xenproject.org
> Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>

Acked-by: David Rientjes <rientjes@google.com>

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

* Re: [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper
  2014-06-06 23:11 ` [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper Luis R. Rodriguez
  2014-06-07  9:11   ` David Rientjes
@ 2014-06-07  9:11   ` David Rientjes
  2014-06-09 17:38     ` Luis R. Rodriguez
  2014-06-09 17:38     ` Luis R. Rodriguez
  1 sibling, 2 replies; 28+ messages in thread
From: David Rientjes @ 2014-06-07  9:11 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: tglx, mingo, hpa, x86, linux-kernel, Luis R. Rodriguez,
	Borislav Petkov, Pekka Enberg, Michal Marek, Randy Dunlap,
	levinsasha928, mtosatti, fengguang.wu, David Vrabel,
	Ian Campbell, Konrad Rzeszutek Wilk, xen-devel

On Fri, 6 Jun 2014, Luis R. Rodriguez wrote:

> diff --git a/arch/x86/Makefile b/arch/x86/Makefile
> index 37621ac..9db34e2 100644
> --- a/arch/x86/Makefile
> +++ b/arch/x86/Makefile
> @@ -256,6 +256,12 @@ kvmconfig:
>  	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/kvm_guest.config
>  	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
>  
> +PHONY += xenconfig
> +xenconfig:
> +	$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
> +	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/xen.config
> +	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
> +
>  define archhelp
>    echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'
>    echo  '  install      - Install kernel using'
> @@ -270,4 +276,5 @@ define archhelp
>    echo  '                  FDARGS="..."  arguments for the booted kernel'
>    echo  '                  FDINITRD=file initrd for the booted kernel'
>    echo  '  kvmconfig	- Enable additional options for kvm guest kernel support'
> +  echo  '  xenconfig    - Enable additional options for xen dom0 and guest kernel support'
>  endef

I suppose it would be easier to generalize the functionality and do 
something like this instead since the two are otherwise identical:

diff --git a/arch/x86/Makefile b/arch/x86/Makefile
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -250,11 +250,19 @@ archclean:
 	$(Q)$(MAKE) $(clean)=$(boot)
 	$(Q)$(MAKE) $(clean)=arch/x86/tools
 
+define build-virtconfig
+$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
+$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/$(1)
+$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
+endef
+
 PHONY += kvmconfig
 kvmconfig:
-	$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
-	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/kvm_guest.config
-	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
+	$(call build-virtconfig,kvm_guest.config)
+
+PHONY += xenconfig
+xenconfig:
+	$(call build-virtconfig,xen.config)
 
 define archhelp
   echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'

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

* Re: [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper
  2014-06-06 23:11 ` [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper Luis R. Rodriguez
@ 2014-06-07  9:11   ` David Rientjes
  2014-06-07  9:11   ` David Rientjes
  1 sibling, 0 replies; 28+ messages in thread
From: David Rientjes @ 2014-06-07  9:11 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: Michal Marek, fengguang.wu, Randy Dunlap, Ian Campbell,
	Luis R. Rodriguez, x86, linux-kernel, mtosatti, Pekka Enberg,
	mingo, levinsasha928, hpa, xen-devel, tglx, Borislav Petkov,
	David Vrabel

On Fri, 6 Jun 2014, Luis R. Rodriguez wrote:

> diff --git a/arch/x86/Makefile b/arch/x86/Makefile
> index 37621ac..9db34e2 100644
> --- a/arch/x86/Makefile
> +++ b/arch/x86/Makefile
> @@ -256,6 +256,12 @@ kvmconfig:
>  	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/kvm_guest.config
>  	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
>  
> +PHONY += xenconfig
> +xenconfig:
> +	$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
> +	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/xen.config
> +	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
> +
>  define archhelp
>    echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'
>    echo  '  install      - Install kernel using'
> @@ -270,4 +276,5 @@ define archhelp
>    echo  '                  FDARGS="..."  arguments for the booted kernel'
>    echo  '                  FDINITRD=file initrd for the booted kernel'
>    echo  '  kvmconfig	- Enable additional options for kvm guest kernel support'
> +  echo  '  xenconfig    - Enable additional options for xen dom0 and guest kernel support'
>  endef

I suppose it would be easier to generalize the functionality and do 
something like this instead since the two are otherwise identical:

diff --git a/arch/x86/Makefile b/arch/x86/Makefile
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -250,11 +250,19 @@ archclean:
 	$(Q)$(MAKE) $(clean)=$(boot)
 	$(Q)$(MAKE) $(clean)=arch/x86/tools
 
+define build-virtconfig
+$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
+$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/$(1)
+$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
+endef
+
 PHONY += kvmconfig
 kvmconfig:
-	$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
-	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/kvm_guest.config
-	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
+	$(call build-virtconfig,kvm_guest.config)
+
+PHONY += xenconfig
+xenconfig:
+	$(call build-virtconfig,xen.config)
 
 define archhelp
   echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-06 23:11 ` Luis R. Rodriguez
  2014-06-07  9:04   ` Borislav Petkov
  2014-06-07  9:04   ` Borislav Petkov
@ 2014-06-07  9:14   ` David Rientjes
  2014-06-09 17:15     ` Luis R. Rodriguez
  2014-06-09 17:15     ` Luis R. Rodriguez
  2014-06-07  9:14   ` David Rientjes
  3 siblings, 2 replies; 28+ messages in thread
From: David Rientjes @ 2014-06-07  9:14 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: tglx, mingo, hpa, x86, linux-kernel, Luis R. Rodriguez,
	Borislav Petkov, Pekka Enberg, Michal Marek, Randy Dunlap,
	levinsasha928, mtosatti, fengguang.wu, David Vrabel,
	Ian Campbell, Konrad Rzeszutek Wilk, xen-devel

On Fri, 6 Jun 2014, Luis R. Rodriguez wrote:

> From: "Luis R. Rodriguez" <mcgrof@suse.com>
> 
> This lets you use:
> 
>    make virtconfig
> 
> to merge you current kernel configuration with options to
> enable both kvm and xen (dom0 and guest) requirements.
> 

I'm not sure that this shortcut is worth a separate make target.

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-06 23:11 ` Luis R. Rodriguez
                     ` (2 preceding siblings ...)
  2014-06-07  9:14   ` David Rientjes
@ 2014-06-07  9:14   ` David Rientjes
  3 siblings, 0 replies; 28+ messages in thread
From: David Rientjes @ 2014-06-07  9:14 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: Michal Marek, fengguang.wu, Randy Dunlap, Ian Campbell,
	Luis R. Rodriguez, x86, linux-kernel, mtosatti, Pekka Enberg,
	mingo, levinsasha928, hpa, xen-devel, tglx, Borislav Petkov,
	David Vrabel

On Fri, 6 Jun 2014, Luis R. Rodriguez wrote:

> From: "Luis R. Rodriguez" <mcgrof@suse.com>
> 
> This lets you use:
> 
>    make virtconfig
> 
> to merge you current kernel configuration with options to
> enable both kvm and xen (dom0 and guest) requirements.
> 

I'm not sure that this shortcut is worth a separate make target.

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-07  9:04   ` Borislav Petkov
  2014-06-09 17:15     ` Luis R. Rodriguez
@ 2014-06-09 17:15     ` Luis R. Rodriguez
  2014-06-10  8:35       ` Ian Campbell
  2014-06-10  8:35       ` Ian Campbell
  1 sibling, 2 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-09 17:15 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Luis R. Rodriguez, tglx, mingo, hpa, x86, linux-kernel,
	Pekka Enberg, David Rientjes, Michal Marek, Randy Dunlap,
	levinsasha928, mtosatti, fengguang.wu, David Vrabel,
	Ian Campbell, Konrad Rzeszutek Wilk, xen-devel

On Sat, Jun 07, 2014 at 11:04:30AM +0200, Borislav Petkov wrote:
> On Fri, Jun 06, 2014 at 04:11:09PM -0700, Luis R. Rodriguez wrote:
> > From: "Luis R. Rodriguez" <mcgrof@suse.com>
> > 
> > This lets you use:
> > 
> >    make virtconfig
> > 
> > to merge you current kernel configuration with options to
> > enable both kvm and xen (dom0 and guest) requirements.
> 
> What would be the use case for that?

This was based on a recommendation on xen-devel after review of
the xen RFC, the use case would be to enable usage of both in
one go. I'll drop this one.

  Luis

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-07  9:04   ` Borislav Petkov
@ 2014-06-09 17:15     ` Luis R. Rodriguez
  2014-06-09 17:15     ` Luis R. Rodriguez
  1 sibling, 0 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-09 17:15 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Michal Marek, Randy Dunlap, Ian Campbell, Luis R. Rodriguez, x86,
	linux-kernel, mtosatti, Pekka Enberg, xen-devel, mingo,
	levinsasha928, hpa, David Rientjes, tglx, fengguang.wu,
	David Vrabel

On Sat, Jun 07, 2014 at 11:04:30AM +0200, Borislav Petkov wrote:
> On Fri, Jun 06, 2014 at 04:11:09PM -0700, Luis R. Rodriguez wrote:
> > From: "Luis R. Rodriguez" <mcgrof@suse.com>
> > 
> > This lets you use:
> > 
> >    make virtconfig
> > 
> > to merge you current kernel configuration with options to
> > enable both kvm and xen (dom0 and guest) requirements.
> 
> What would be the use case for that?

This was based on a recommendation on xen-devel after review of
the xen RFC, the use case would be to enable usage of both in
one go. I'll drop this one.

  Luis

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-07  9:14   ` David Rientjes
  2014-06-09 17:15     ` Luis R. Rodriguez
@ 2014-06-09 17:15     ` Luis R. Rodriguez
  1 sibling, 0 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-09 17:15 UTC (permalink / raw)
  To: David Rientjes
  Cc: Luis R. Rodriguez, tglx, mingo, hpa, x86, linux-kernel,
	Borislav Petkov, Pekka Enberg, Michal Marek, Randy Dunlap,
	levinsasha928, mtosatti, fengguang.wu, David Vrabel,
	Ian Campbell, Konrad Rzeszutek Wilk, xen-devel

On Sat, Jun 07, 2014 at 02:14:11AM -0700, David Rientjes wrote:
> On Fri, 6 Jun 2014, Luis R. Rodriguez wrote:
> 
> > From: "Luis R. Rodriguez" <mcgrof@suse.com>
> > 
> > This lets you use:
> > 
> >    make virtconfig
> > 
> > to merge you current kernel configuration with options to
> > enable both kvm and xen (dom0 and guest) requirements.
> > 
> 
> I'm not sure that this shortcut is worth a separate make target.

OK I'll drop it.

  Luis

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-07  9:14   ` David Rientjes
@ 2014-06-09 17:15     ` Luis R. Rodriguez
  2014-06-09 17:15     ` Luis R. Rodriguez
  1 sibling, 0 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-09 17:15 UTC (permalink / raw)
  To: David Rientjes
  Cc: Michal Marek, fengguang.wu, Randy Dunlap, Ian Campbell,
	Luis R. Rodriguez, x86, linux-kernel, mtosatti, Pekka Enberg,
	mingo, levinsasha928, hpa, xen-devel, tglx, Borislav Petkov,
	David Vrabel

On Sat, Jun 07, 2014 at 02:14:11AM -0700, David Rientjes wrote:
> On Fri, 6 Jun 2014, Luis R. Rodriguez wrote:
> 
> > From: "Luis R. Rodriguez" <mcgrof@suse.com>
> > 
> > This lets you use:
> > 
> >    make virtconfig
> > 
> > to merge you current kernel configuration with options to
> > enable both kvm and xen (dom0 and guest) requirements.
> > 
> 
> I'm not sure that this shortcut is worth a separate make target.

OK I'll drop it.

  Luis

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

* Re: [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper
  2014-06-07  9:11   ` David Rientjes
@ 2014-06-09 17:38     ` Luis R. Rodriguez
  2014-06-09 17:38     ` Luis R. Rodriguez
  1 sibling, 0 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-09 17:38 UTC (permalink / raw)
  To: David Rientjes
  Cc: Luis R. Rodriguez, tglx, mingo, hpa, x86, linux-kernel,
	Borislav Petkov, Pekka Enberg, Michal Marek, Randy Dunlap,
	levinsasha928, mtosatti, fengguang.wu, David Vrabel,
	Ian Campbell, Konrad Rzeszutek Wilk, xen-devel

On Sat, Jun 07, 2014 at 02:11:32AM -0700, David Rientjes wrote:
> On Fri, 6 Jun 2014, Luis R. Rodriguez wrote:
> 
> > diff --git a/arch/x86/Makefile b/arch/x86/Makefile
> > index 37621ac..9db34e2 100644
> > --- a/arch/x86/Makefile
> > +++ b/arch/x86/Makefile
> > @@ -256,6 +256,12 @@ kvmconfig:
> >  	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/kvm_guest.config
> >  	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
> >  
> > +PHONY += xenconfig
> > +xenconfig:
> > +	$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
> > +	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/xen.config
> > +	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
> > +
> >  define archhelp
> >    echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'
> >    echo  '  install      - Install kernel using'
> > @@ -270,4 +276,5 @@ define archhelp
> >    echo  '                  FDARGS="..."  arguments for the booted kernel'
> >    echo  '                  FDINITRD=file initrd for the booted kernel'
> >    echo  '  kvmconfig	- Enable additional options for kvm guest kernel support'
> > +  echo  '  xenconfig    - Enable additional options for xen dom0 and guest kernel support'
> >  endef
> 
> I suppose it would be easier to generalize the functionality and do 
> something like this instead since the two are otherwise identical:
> 
> diff --git a/arch/x86/Makefile b/arch/x86/Makefile
> --- a/arch/x86/Makefile
> +++ b/arch/x86/Makefile
> @@ -250,11 +250,19 @@ archclean:
>  	$(Q)$(MAKE) $(clean)=$(boot)
>  	$(Q)$(MAKE) $(clean)=arch/x86/tools
>  
> +define build-virtconfig
> +$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
> +$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/$(1)
> +$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
> +endef
> +
>  PHONY += kvmconfig
>  kvmconfig:
> -	$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
> -	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/kvm_guest.config
> -	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
> +	$(call build-virtconfig,kvm_guest.config)
> +
> +PHONY += xenconfig
> +xenconfig:
> +	$(call build-virtconfig,xen.config)
>  
>  define archhelp
>    echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'
> 

Good idea, I've folded this as a first patch then and will resubmit, dropping
the virtconfig kconfig option.

  Luis

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

* Re: [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper
  2014-06-07  9:11   ` David Rientjes
  2014-06-09 17:38     ` Luis R. Rodriguez
@ 2014-06-09 17:38     ` Luis R. Rodriguez
  1 sibling, 0 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-09 17:38 UTC (permalink / raw)
  To: David Rientjes
  Cc: Michal Marek, fengguang.wu, Randy Dunlap, Ian Campbell,
	Luis R. Rodriguez, x86, linux-kernel, mtosatti, Pekka Enberg,
	mingo, levinsasha928, hpa, xen-devel, tglx, Borislav Petkov,
	David Vrabel

On Sat, Jun 07, 2014 at 02:11:32AM -0700, David Rientjes wrote:
> On Fri, 6 Jun 2014, Luis R. Rodriguez wrote:
> 
> > diff --git a/arch/x86/Makefile b/arch/x86/Makefile
> > index 37621ac..9db34e2 100644
> > --- a/arch/x86/Makefile
> > +++ b/arch/x86/Makefile
> > @@ -256,6 +256,12 @@ kvmconfig:
> >  	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/kvm_guest.config
> >  	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
> >  
> > +PHONY += xenconfig
> > +xenconfig:
> > +	$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
> > +	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/xen.config
> > +	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
> > +
> >  define archhelp
> >    echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'
> >    echo  '  install      - Install kernel using'
> > @@ -270,4 +276,5 @@ define archhelp
> >    echo  '                  FDARGS="..."  arguments for the booted kernel'
> >    echo  '                  FDINITRD=file initrd for the booted kernel'
> >    echo  '  kvmconfig	- Enable additional options for kvm guest kernel support'
> > +  echo  '  xenconfig    - Enable additional options for xen dom0 and guest kernel support'
> >  endef
> 
> I suppose it would be easier to generalize the functionality and do 
> something like this instead since the two are otherwise identical:
> 
> diff --git a/arch/x86/Makefile b/arch/x86/Makefile
> --- a/arch/x86/Makefile
> +++ b/arch/x86/Makefile
> @@ -250,11 +250,19 @@ archclean:
>  	$(Q)$(MAKE) $(clean)=$(boot)
>  	$(Q)$(MAKE) $(clean)=arch/x86/tools
>  
> +define build-virtconfig
> +$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
> +$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/$(1)
> +$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
> +endef
> +
>  PHONY += kvmconfig
>  kvmconfig:
> -	$(if $(wildcard $(objtree)/.config),, $(error You need an existing .config for this target))
> -	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m -O $(objtree) $(objtree)/.config $(srctree)/arch/x86/configs/kvm_guest.config
> -	$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
> +	$(call build-virtconfig,kvm_guest.config)
> +
> +PHONY += xenconfig
> +xenconfig:
> +	$(call build-virtconfig,xen.config)
>  
>  define archhelp
>    echo  '* bzImage      - Compressed kernel image (arch/x86/boot/bzImage)'
> 

Good idea, I've folded this as a first patch then and will resubmit, dropping
the virtconfig kconfig option.

  Luis

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-09 17:15     ` Luis R. Rodriguez
@ 2014-06-10  8:35       ` Ian Campbell
  2014-06-10  9:01         ` Borislav Petkov
  2014-06-10  9:01         ` Borislav Petkov
  2014-06-10  8:35       ` Ian Campbell
  1 sibling, 2 replies; 28+ messages in thread
From: Ian Campbell @ 2014-06-10  8:35 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: Borislav Petkov, Luis R. Rodriguez, tglx, mingo, hpa, x86,
	linux-kernel, Pekka Enberg, David Rientjes, Michal Marek,
	Randy Dunlap, levinsasha928, mtosatti, fengguang.wu,
	David Vrabel, Konrad Rzeszutek Wilk, xen-devel

On Mon, 2014-06-09 at 19:15 +0200, Luis R. Rodriguez wrote:
> On Sat, Jun 07, 2014 at 11:04:30AM +0200, Borislav Petkov wrote:
> > On Fri, Jun 06, 2014 at 04:11:09PM -0700, Luis R. Rodriguez wrote:
> > > From: "Luis R. Rodriguez" <mcgrof@suse.com>
> > > 
> > > This lets you use:
> > > 
> > >    make virtconfig
> > > 
> > > to merge you current kernel configuration with options to
> > > enable both kvm and xen (dom0 and guest) requirements.
> > 
> > What would be the use case for that?
> 
> This was based on a recommendation on xen-devel after review of
> the xen RFC,

Actually what I meant was to *replace* kvmconfig with virtconfig and
then add the Xen stuff to it, i.e. to have a single thing to maintain
for all virt platforms, rather than end up with all 3 options.

I think the overhead of having some Xen stuff enabled in .config when
running on KVM and vice versa is small.

Ian.


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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-09 17:15     ` Luis R. Rodriguez
  2014-06-10  8:35       ` Ian Campbell
@ 2014-06-10  8:35       ` Ian Campbell
  1 sibling, 0 replies; 28+ messages in thread
From: Ian Campbell @ 2014-06-10  8:35 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: Michal Marek, fengguang.wu, Randy Dunlap, xen-devel,
	Luis R. Rodriguez, x86, linux-kernel, mtosatti, Pekka Enberg,
	mingo, levinsasha928, hpa, David Rientjes, tglx, Borislav Petkov,
	David Vrabel

On Mon, 2014-06-09 at 19:15 +0200, Luis R. Rodriguez wrote:
> On Sat, Jun 07, 2014 at 11:04:30AM +0200, Borislav Petkov wrote:
> > On Fri, Jun 06, 2014 at 04:11:09PM -0700, Luis R. Rodriguez wrote:
> > > From: "Luis R. Rodriguez" <mcgrof@suse.com>
> > > 
> > > This lets you use:
> > > 
> > >    make virtconfig
> > > 
> > > to merge you current kernel configuration with options to
> > > enable both kvm and xen (dom0 and guest) requirements.
> > 
> > What would be the use case for that?
> 
> This was based on a recommendation on xen-devel after review of
> the xen RFC,

Actually what I meant was to *replace* kvmconfig with virtconfig and
then add the Xen stuff to it, i.e. to have a single thing to maintain
for all virt platforms, rather than end up with all 3 options.

I think the overhead of having some Xen stuff enabled in .config when
running on KVM and vice versa is small.

Ian.

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-10  8:35       ` Ian Campbell
  2014-06-10  9:01         ` Borislav Petkov
@ 2014-06-10  9:01         ` Borislav Petkov
  2014-06-10  9:13           ` Ian Campbell
  2014-06-10  9:13           ` Ian Campbell
  1 sibling, 2 replies; 28+ messages in thread
From: Borislav Petkov @ 2014-06-10  9:01 UTC (permalink / raw)
  To: Ian Campbell, Luis R. Rodriguez
  Cc: Luis R. Rodriguez, tglx, mingo, hpa, x86, linux-kernel,
	Pekka Enberg, David Rientjes, Michal Marek, Randy Dunlap,
	levinsasha928, mtosatti, fengguang.wu, David Vrabel,
	Konrad Rzeszutek Wilk, xen-devel

On Tue, Jun 10, 2014 at 09:35:39AM +0100, Ian Campbell wrote:
> Actually what I meant was to *replace* kvmconfig with virtconfig and
> then add the Xen stuff to it, i.e. to have a single thing to maintain
> for all virt platforms, rather than end up with all 3 options.
> 
> I think the overhead of having some Xen stuff enabled in .config when
> running on KVM and vice versa is small.

Hmm, no. I'm running my kvm-enabled configs on baremetal too and I
wouldn't want any overhead at all. So kvmconfig and xenconfig should be
separate targets with separate config files please.

-- 
Regards/Gruss,
    Boris.

Sent from a fat crate under my desk. Formatting is fine.
--

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-10  8:35       ` Ian Campbell
@ 2014-06-10  9:01         ` Borislav Petkov
  2014-06-10  9:01         ` Borislav Petkov
  1 sibling, 0 replies; 28+ messages in thread
From: Borislav Petkov @ 2014-06-10  9:01 UTC (permalink / raw)
  To: Ian Campbell, Luis R. Rodriguez
  Cc: Michal Marek, Randy Dunlap, xen-devel, Luis R. Rodriguez, x86,
	linux-kernel, mtosatti, Pekka Enberg, mingo, levinsasha928, hpa,
	David Rientjes, tglx, fengguang.wu, David Vrabel

On Tue, Jun 10, 2014 at 09:35:39AM +0100, Ian Campbell wrote:
> Actually what I meant was to *replace* kvmconfig with virtconfig and
> then add the Xen stuff to it, i.e. to have a single thing to maintain
> for all virt platforms, rather than end up with all 3 options.
> 
> I think the overhead of having some Xen stuff enabled in .config when
> running on KVM and vice versa is small.

Hmm, no. I'm running my kvm-enabled configs on baremetal too and I
wouldn't want any overhead at all. So kvmconfig and xenconfig should be
separate targets with separate config files please.

-- 
Regards/Gruss,
    Boris.

Sent from a fat crate under my desk. Formatting is fine.
--

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-10  9:01         ` Borislav Petkov
@ 2014-06-10  9:13           ` Ian Campbell
  2014-06-10  9:16             ` Borislav Petkov
  2014-06-10  9:16             ` Borislav Petkov
  2014-06-10  9:13           ` Ian Campbell
  1 sibling, 2 replies; 28+ messages in thread
From: Ian Campbell @ 2014-06-10  9:13 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Luis R. Rodriguez, Luis R. Rodriguez, tglx, mingo, hpa, x86,
	linux-kernel, Pekka Enberg, David Rientjes, Michal Marek,
	Randy Dunlap, levinsasha928, mtosatti, fengguang.wu,
	David Vrabel, Konrad Rzeszutek Wilk, xen-devel

On Tue, 2014-06-10 at 11:01 +0200, Borislav Petkov wrote:
> On Tue, Jun 10, 2014 at 09:35:39AM +0100, Ian Campbell wrote:
> > Actually what I meant was to *replace* kvmconfig with virtconfig and
> > then add the Xen stuff to it, i.e. to have a single thing to maintain
> > for all virt platforms, rather than end up with all 3 options.
> > 
> > I think the overhead of having some Xen stuff enabled in .config when
> > running on KVM and vice versa is small.
> 
> Hmm, no. I'm running my kvm-enabled configs on baremetal too and I
> wouldn't want any overhead at all. So kvmconfig and xenconfig should be
> separate targets with separate config files please.

NB the overhead I meant was a few kbs of .text and modules, not runtime
overhead.

Ian.


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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-10  9:01         ` Borislav Petkov
  2014-06-10  9:13           ` Ian Campbell
@ 2014-06-10  9:13           ` Ian Campbell
  1 sibling, 0 replies; 28+ messages in thread
From: Ian Campbell @ 2014-06-10  9:13 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Michal Marek, Randy Dunlap, xen-devel, Luis R. Rodriguez,
	Luis R. Rodriguez, x86, linux-kernel, mtosatti, Pekka Enberg,
	mingo, levinsasha928, hpa, David Rientjes, tglx, fengguang.wu,
	David Vrabel

On Tue, 2014-06-10 at 11:01 +0200, Borislav Petkov wrote:
> On Tue, Jun 10, 2014 at 09:35:39AM +0100, Ian Campbell wrote:
> > Actually what I meant was to *replace* kvmconfig with virtconfig and
> > then add the Xen stuff to it, i.e. to have a single thing to maintain
> > for all virt platforms, rather than end up with all 3 options.
> > 
> > I think the overhead of having some Xen stuff enabled in .config when
> > running on KVM and vice versa is small.
> 
> Hmm, no. I'm running my kvm-enabled configs on baremetal too and I
> wouldn't want any overhead at all. So kvmconfig and xenconfig should be
> separate targets with separate config files please.

NB the overhead I meant was a few kbs of .text and modules, not runtime
overhead.

Ian.

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-10  9:13           ` Ian Campbell
@ 2014-06-10  9:16             ` Borislav Petkov
  2014-06-10  9:16             ` Borislav Petkov
  1 sibling, 0 replies; 28+ messages in thread
From: Borislav Petkov @ 2014-06-10  9:16 UTC (permalink / raw)
  To: Ian Campbell
  Cc: Luis R. Rodriguez, Luis R. Rodriguez, tglx, mingo, hpa, x86,
	linux-kernel, Pekka Enberg, David Rientjes, Michal Marek,
	Randy Dunlap, levinsasha928, mtosatti, fengguang.wu,
	David Vrabel, Konrad Rzeszutek Wilk, xen-devel

On Tue, Jun 10, 2014 at 10:13:48AM +0100, Ian Campbell wrote:
> NB the overhead I meant was a few kbs of .text and modules, not
> runtime overhead.

Whatever, no thanks.

-- 
Regards/Gruss,
    Boris.

Sent from a fat crate under my desk. Formatting is fine.
--

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

* Re: [PATCH 3/3] x86, platform, kconfig: add virtconfig defconfig helper
  2014-06-10  9:13           ` Ian Campbell
  2014-06-10  9:16             ` Borislav Petkov
@ 2014-06-10  9:16             ` Borislav Petkov
  1 sibling, 0 replies; 28+ messages in thread
From: Borislav Petkov @ 2014-06-10  9:16 UTC (permalink / raw)
  To: Ian Campbell
  Cc: Michal Marek, Randy Dunlap, xen-devel, Luis R. Rodriguez,
	Luis R. Rodriguez, x86, linux-kernel, mtosatti, Pekka Enberg,
	mingo, levinsasha928, hpa, David Rientjes, tglx, fengguang.wu,
	David Vrabel

On Tue, Jun 10, 2014 at 10:13:48AM +0100, Ian Campbell wrote:
> NB the overhead I meant was a few kbs of .text and modules, not
> runtime overhead.

Whatever, no thanks.

-- 
Regards/Gruss,
    Boris.

Sent from a fat crate under my desk. Formatting is fine.
--

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

* [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm
@ 2014-06-06 23:11 Luis R. Rodriguez
  0 siblings, 0 replies; 28+ messages in thread
From: Luis R. Rodriguez @ 2014-06-06 23:11 UTC (permalink / raw)
  To: tglx, mingo, hpa
  Cc: Michal Marek, Randy Dunlap, Ian Campbell, Luis R. Rodriguez, x86,
	linux-kernel, mtosatti, Pekka Enberg, fengguang.wu,
	levinsasha928, David Rientjes, xen-devel, Borislav Petkov,
	David Vrabel

From: "Luis R. Rodriguez" <mcgrof@suse.com>

We'll be adding options for xen as well.

Cc: Borislav Petkov <bp@suse.de>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Michal Marek <mmarek@suse.cz>
Cc: Randy Dunlap <rdunlap@infradead.org>
Cc: penberg@kernel.org
Cc: levinsasha928@gmail.com
Cc: mtosatti@redhat.com
Cc: fengguang.wu@intel.com
Cc: David Vrabel <david.vrabel@citrix.com>
Cc: Ian Campbell <Ian.Campbell@citrix.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: xen-devel@lists.xenproject.org
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
---
 arch/x86/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 33f71b0..37621ac 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -269,5 +269,5 @@ define archhelp
   echo  '                  bzdisk/fdimage*/isoimage also accept:'
   echo  '                  FDARGS="..."  arguments for the booted kernel'
   echo  '                  FDINITRD=file initrd for the booted kernel'
-  echo  '  kvmconfig	- Enable additional options for guest kernel support'
+  echo  '  kvmconfig	- Enable additional options for kvm guest kernel support'
 endef
-- 
2.0.0.rc3.18.g00a5b79

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

end of thread, other threads:[~2014-06-10  9:19 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-06 23:11 [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm Luis R. Rodriguez
2014-06-06 23:11 ` [PATCH 2/3] x86, platform, xen, kconfig: add xen defconfig helper Luis R. Rodriguez
2014-06-07  9:11   ` David Rientjes
2014-06-07  9:11   ` David Rientjes
2014-06-09 17:38     ` Luis R. Rodriguez
2014-06-09 17:38     ` Luis R. Rodriguez
2014-06-06 23:11 ` Luis R. Rodriguez
2014-06-06 23:11 ` [PATCH 3/3] x86, platform, kconfig: add virtconfig " Luis R. Rodriguez
2014-06-06 23:11 ` Luis R. Rodriguez
2014-06-07  9:04   ` Borislav Petkov
2014-06-09 17:15     ` Luis R. Rodriguez
2014-06-09 17:15     ` Luis R. Rodriguez
2014-06-10  8:35       ` Ian Campbell
2014-06-10  9:01         ` Borislav Petkov
2014-06-10  9:01         ` Borislav Petkov
2014-06-10  9:13           ` Ian Campbell
2014-06-10  9:16             ` Borislav Petkov
2014-06-10  9:16             ` Borislav Petkov
2014-06-10  9:13           ` Ian Campbell
2014-06-10  8:35       ` Ian Campbell
2014-06-07  9:04   ` Borislav Petkov
2014-06-07  9:14   ` David Rientjes
2014-06-09 17:15     ` Luis R. Rodriguez
2014-06-09 17:15     ` Luis R. Rodriguez
2014-06-07  9:14   ` David Rientjes
2014-06-07  9:08 ` [PATCH 1/3] x86, platform, xen, kconfig: clarify kvmconfig is for kvm David Rientjes
2014-06-07  9:08 ` David Rientjes
  -- strict thread matches above, loose matches on Subject: below --
2014-06-06 23:11 Luis R. Rodriguez

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.