Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] qemu: added default support to numa (CONFIG_NUMA = yes)
@ 2019-06-06 21:20 voidlinux-github
  2019-06-07 14:36 ` voidlinux-github
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: voidlinux-github @ 2019-06-06 21:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 468 bytes --]

There is a new pull request by rsmontero against master on the void-packages repository

https://github.com/rsmontero/void-packages master
https://github.com/void-linux/void-packages/pull/12228

qemu: added default support to numa (CONFIG_NUMA = yes)
Enables --numa in qemu configure and add it as a default. NUMA support
is required to set NUMA node binding of guest domains.

A patch file from https://github.com/void-linux/void-packages/pull/12228.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-master-12228.patch --]
[-- Type: application/text/x-diff, Size: 1609 bytes --]

From 38f4ed311e86466d4cd6ef2b265570a29612e472 Mon Sep 17 00:00:00 2001
From: "Ruben S. Montero" <rsmontero@opennebula.org>
Date: Thu, 6 Jun 2019 21:29:29 +0200
Subject: [PATCH] qemu: added default support to numa (CONFIG_NUMA = yes)

Enables --numa in qemu configure and add it as a default. NUMA support
is required to set NUMA node binding of guest domains.
---
 srcpkgs/qemu/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index 07d8bd536ae..8acfd0ab7e5 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -20,14 +20,15 @@ makedepends="libpng-devel libjpeg-turbo-devel pixman-devel snappy-devel
  $(vopt_if sdl2 SDL2-devel) $(vopt_if gtk3 "gtk+3-devel vte3-devel")
  $(vopt_if spice spice-devel) $(vopt_if virgl virglrenderer-devel)
  $(vopt_if opengl 'libepoxy-devel libdrm-devel MesaLib-devel')
- $(vopt_if smartcard libcacard-devel)"
+ $(vopt_if smartcard libcacard-devel) $(vopt_if numa 'libnuma-devel')"
 
-build_options="gtk3 opengl sdl2 spice virgl smartcard"
-build_options_default="opengl gtk3 virgl smartcard sdl2"
+build_options="gtk3 opengl sdl2 spice virgl smartcard numa"
+build_options_default="opengl gtk3 virgl smartcard sdl2 numa"
 desc_option_sdl2="Enable SDL (2.x) video output"
 desc_option_spice="Enable support for SPICE"
 desc_option_virgl="Enable support for VirGL (A Virtual 3D GPU renderer)"
 desc_option_smartcard="Enable smartcard support"
+desc_option_numa="Enable support for host NUMA"
 
 case "$XBPS_TARGET_MACHINE" in
 	i686*|x86_64*|ppc64*) build_options_default+=" spice";;

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

* Re: qemu: added default support to numa (CONFIG_NUMA = yes)
  2019-06-06 21:20 [PR PATCH] qemu: added default support to numa (CONFIG_NUMA = yes) voidlinux-github
@ 2019-06-07 14:36 ` voidlinux-github
  2019-06-09 17:17 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-06-07 14:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 229 bytes --]

New comment by Gottox on void-packages repository

https://github.com/void-linux/void-packages/pull/12228#issuecomment-499909878
Comment:
Thanks for your contribution! Please increase the `revision=` field in the template. :+1: 

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

* Re: [PR PATCH] [Updated] qemu: added default support to numa (CONFIG_NUMA = yes)
  2019-06-06 21:20 [PR PATCH] qemu: added default support to numa (CONFIG_NUMA = yes) voidlinux-github
  2019-06-07 14:36 ` voidlinux-github
  2019-06-09 17:17 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-06-09 17:17 ` voidlinux-github
  2019-06-09 17:18 ` voidlinux-github
  2019-06-11 11:59 ` [PR PATCH] [Merged]: " voidlinux-github
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-06-09 17:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 473 bytes --]

There is an updated pull request by rsmontero against master on the void-packages repository

https://github.com/rsmontero/void-packages master
https://github.com/void-linux/void-packages/pull/12228

qemu: added default support to numa (CONFIG_NUMA = yes)
Enables --numa in qemu configure and add it as a default. NUMA support
is required to set NUMA node binding of guest domains.

A patch file from https://github.com/void-linux/void-packages/pull/12228.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-master-12228.patch --]
[-- Type: application/text/x-diff, Size: 1846 bytes --]

From 81c06b3c4a99c5838c0910db3a4459d089190933 Mon Sep 17 00:00:00 2001
From: "Ruben S. Montero" <rsmontero@opennebula.org>
Date: Thu, 6 Jun 2019 21:29:29 +0200
Subject: [PATCH] qemu: added default support to numa (CONFIG_NUMA = yes)

Enables --numa in qemu configure and add it as a default. NUMA support
is required to set NUMA node binding of guest domains.
---
 srcpkgs/qemu/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index 07d8bd536ae..0b2ab2ee7da 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -1,7 +1,7 @@
 # Template file for 'qemu'
 pkgname=qemu
 version=4.0.0
-revision=2
+revision=3
 short_desc="Open Source Processor Emulator"
 maintainer="Juan RP <xtraeme@voidlinux.org>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -20,14 +20,15 @@ makedepends="libpng-devel libjpeg-turbo-devel pixman-devel snappy-devel
  $(vopt_if sdl2 SDL2-devel) $(vopt_if gtk3 "gtk+3-devel vte3-devel")
  $(vopt_if spice spice-devel) $(vopt_if virgl virglrenderer-devel)
  $(vopt_if opengl 'libepoxy-devel libdrm-devel MesaLib-devel')
- $(vopt_if smartcard libcacard-devel)"
+ $(vopt_if smartcard libcacard-devel) $(vopt_if numa 'libnuma-devel')"
 
-build_options="gtk3 opengl sdl2 spice virgl smartcard"
-build_options_default="opengl gtk3 virgl smartcard sdl2"
+build_options="gtk3 opengl sdl2 spice virgl smartcard numa"
+build_options_default="opengl gtk3 virgl smartcard sdl2 numa"
 desc_option_sdl2="Enable SDL (2.x) video output"
 desc_option_spice="Enable support for SPICE"
 desc_option_virgl="Enable support for VirGL (A Virtual 3D GPU renderer)"
 desc_option_smartcard="Enable smartcard support"
+desc_option_numa="Enable support for host NUMA"
 
 case "$XBPS_TARGET_MACHINE" in
 	i686*|x86_64*|ppc64*) build_options_default+=" spice";;

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

* Re: [PR PATCH] [Updated] qemu: added default support to numa (CONFIG_NUMA = yes)
  2019-06-06 21:20 [PR PATCH] qemu: added default support to numa (CONFIG_NUMA = yes) voidlinux-github
  2019-06-07 14:36 ` voidlinux-github
@ 2019-06-09 17:17 ` voidlinux-github
  2019-06-09 17:17 ` voidlinux-github
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-06-09 17:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 473 bytes --]

There is an updated pull request by rsmontero against master on the void-packages repository

https://github.com/rsmontero/void-packages master
https://github.com/void-linux/void-packages/pull/12228

qemu: added default support to numa (CONFIG_NUMA = yes)
Enables --numa in qemu configure and add it as a default. NUMA support
is required to set NUMA node binding of guest domains.

A patch file from https://github.com/void-linux/void-packages/pull/12228.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-master-12228.patch --]
[-- Type: application/text/x-diff, Size: 1846 bytes --]

From 81c06b3c4a99c5838c0910db3a4459d089190933 Mon Sep 17 00:00:00 2001
From: "Ruben S. Montero" <rsmontero@opennebula.org>
Date: Thu, 6 Jun 2019 21:29:29 +0200
Subject: [PATCH] qemu: added default support to numa (CONFIG_NUMA = yes)

Enables --numa in qemu configure and add it as a default. NUMA support
is required to set NUMA node binding of guest domains.
---
 srcpkgs/qemu/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index 07d8bd536ae..0b2ab2ee7da 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -1,7 +1,7 @@
 # Template file for 'qemu'
 pkgname=qemu
 version=4.0.0
-revision=2
+revision=3
 short_desc="Open Source Processor Emulator"
 maintainer="Juan RP <xtraeme@voidlinux.org>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -20,14 +20,15 @@ makedepends="libpng-devel libjpeg-turbo-devel pixman-devel snappy-devel
  $(vopt_if sdl2 SDL2-devel) $(vopt_if gtk3 "gtk+3-devel vte3-devel")
  $(vopt_if spice spice-devel) $(vopt_if virgl virglrenderer-devel)
  $(vopt_if opengl 'libepoxy-devel libdrm-devel MesaLib-devel')
- $(vopt_if smartcard libcacard-devel)"
+ $(vopt_if smartcard libcacard-devel) $(vopt_if numa 'libnuma-devel')"
 
-build_options="gtk3 opengl sdl2 spice virgl smartcard"
-build_options_default="opengl gtk3 virgl smartcard sdl2"
+build_options="gtk3 opengl sdl2 spice virgl smartcard numa"
+build_options_default="opengl gtk3 virgl smartcard sdl2 numa"
 desc_option_sdl2="Enable SDL (2.x) video output"
 desc_option_spice="Enable support for SPICE"
 desc_option_virgl="Enable support for VirGL (A Virtual 3D GPU renderer)"
 desc_option_smartcard="Enable smartcard support"
+desc_option_numa="Enable support for host NUMA"
 
 case "$XBPS_TARGET_MACHINE" in
 	i686*|x86_64*|ppc64*) build_options_default+=" spice";;

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

* Re: qemu: added default support to numa (CONFIG_NUMA = yes)
  2019-06-06 21:20 [PR PATCH] qemu: added default support to numa (CONFIG_NUMA = yes) voidlinux-github
                   ` (2 preceding siblings ...)
  2019-06-09 17:17 ` voidlinux-github
@ 2019-06-09 17:18 ` voidlinux-github
  2019-06-11 11:59 ` [PR PATCH] [Merged]: " voidlinux-github
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-06-09 17:18 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 150 bytes --]

New comment by rsmontero on void-packages repository

https://github.com/void-linux/void-packages/pull/12228#issuecomment-500229796
Comment:
Done. :)

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

* Re: [PR PATCH] [Merged]: qemu: added default support to numa (CONFIG_NUMA = yes)
  2019-06-06 21:20 [PR PATCH] qemu: added default support to numa (CONFIG_NUMA = yes) voidlinux-github
                   ` (3 preceding siblings ...)
  2019-06-09 17:18 ` voidlinux-github
@ 2019-06-11 11:59 ` voidlinux-github
  4 siblings, 0 replies; 6+ messages in thread
From: voidlinux-github @ 2019-06-11 11:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 313 bytes --]

There's a merged pull request on the void-packages repository

qemu: added default support to numa (CONFIG_NUMA = yes)
https://github.com/void-linux/void-packages/pull/12228
Description: Enables --numa in qemu configure and add it as a default. NUMA support
is required to set NUMA node binding of guest domains.

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

end of thread, other threads:[~2019-06-11 11:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-06 21:20 [PR PATCH] qemu: added default support to numa (CONFIG_NUMA = yes) voidlinux-github
2019-06-07 14:36 ` voidlinux-github
2019-06-09 17:17 ` [PR PATCH] [Updated] " voidlinux-github
2019-06-09 17:17 ` voidlinux-github
2019-06-09 17:18 ` voidlinux-github
2019-06-11 11:59 ` [PR PATCH] [Merged]: " voidlinux-github

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