mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Christian Melki <christian.melki@t2data.com>
To: ptxdist@pengutronix.de
Subject: [ptxdist] [PATCH 1/2] qemu: Version bump. 7.1.0 -> 7.2.0
Date: Thu, 15 Dec 2022 15:11:30 +0100	[thread overview]
Message-ID: <20221215141131.3689507-1-christian.melki@t2data.com> (raw)

A bunch of traffic in QEMU, as usual.
Notable is the RISC-V work and x86 TCG gains support for AVX, AVX2, F16C, FMA3 and VAES instructions.
Changelog: https://wiki.qemu.org/ChangeLog/7.2
This release plugs CVEs: CVE-2022-3872, CVE-2022-2962, CVE-2022-3165 and CVE-2022-4144.

* Forward patches, with a minor correction, seems to apply cleanly.
* Be more explicit about libvduse, disable it.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 ...fs-allow-real-symlinks-for-security_model-mapped-f.patch | 0
 .../0101-let-ninja-use-the-jobserver.patch                  | 6 +++---
 patches/{qemu-7.1.0 => qemu-7.2.0}/series                   | 0
 rules/qemu.make                                             | 5 +++--
 4 files changed, 6 insertions(+), 5 deletions(-)
 rename patches/{qemu-7.1.0 => qemu-7.2.0}/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch (100%)
 rename patches/{qemu-7.1.0 => qemu-7.2.0}/0101-let-ninja-use-the-jobserver.patch (89%)
 rename patches/{qemu-7.1.0 => qemu-7.2.0}/series (100%)

diff --git a/patches/qemu-7.1.0/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch b/patches/qemu-7.2.0/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch
similarity index 100%
rename from patches/qemu-7.1.0/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch
rename to patches/qemu-7.2.0/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch
diff --git a/patches/qemu-7.1.0/0101-let-ninja-use-the-jobserver.patch b/patches/qemu-7.2.0/0101-let-ninja-use-the-jobserver.patch
similarity index 89%
rename from patches/qemu-7.1.0/0101-let-ninja-use-the-jobserver.patch
rename to patches/qemu-7.2.0/0101-let-ninja-use-the-jobserver.patch
index d54558a93..a039bfef9 100644
--- a/patches/qemu-7.1.0/0101-let-ninja-use-the-jobserver.patch
+++ b/patches/qemu-7.2.0/0101-let-ninja-use-the-jobserver.patch
@@ -11,10 +11,10 @@ Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/Makefile b/Makefile
-index e5fd1ebdf619..23128172d02a 100644
+index a48103cc8a1a..9fbd7b095ca9 100644
 --- a/Makefile
 +++ b/Makefile
-@@ -142,7 +142,7 @@ MAKE.k = $(findstring k,$(firstword $(filter-out --%,$(MAKEFLAGS))))
+@@ -145,7 +145,7 @@ MAKE.k = $(findstring k,$(firstword $(filter-out --%,$(MAKEFLAGS))))
  MAKE.q = $(findstring q,$(firstword $(filter-out --%,$(MAKEFLAGS))))
  MAKE.nq = $(if $(word 2, $(MAKE.n) $(MAKE.q)),nq)
  NINJAFLAGS = $(if $V,-v) $(if $(MAKE.n), -n) $(if $(MAKE.k), -k0) \
@@ -22,4 +22,4 @@ index e5fd1ebdf619..23128172d02a 100644
 +        $(filter-out -j, $(lastword $(filter -l% -j%, $(MAKEFLAGS)))) \
          -d keepdepfile
  ninja-cmd-goals = $(or $(MAKECMDGOALS), all)
- ninja-cmd-goals += $(foreach g, $(MAKECMDGOALS), $(.ninja-goals.$g))))
+ ninja-cmd-goals += $(foreach g, $(MAKECMDGOALS), $(.ninja-goals.$g))
diff --git a/patches/qemu-7.1.0/series b/patches/qemu-7.2.0/series
similarity index 100%
rename from patches/qemu-7.1.0/series
rename to patches/qemu-7.2.0/series
diff --git a/rules/qemu.make b/rules/qemu.make
index 579715684..79be513c6 100644
--- a/rules/qemu.make
+++ b/rules/qemu.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_QEMU) += qemu
 #
 # Paths and names
 #
-QEMU_VERSION	:= 7.1.0
-QEMU_MD5	:= 3be5458a9171b4ec5220c65d5d52bdcf
+QEMU_VERSION	:= 7.2.0
+QEMU_MD5	:= 7630d6a9eba7ab2bcb9979d6d24c2697
 QEMU		:= qemu-$(QEMU_VERSION)
 QEMU_SUFFIX	:= tar.xz
 QEMU_URL	:= https://download.qemu.org/$(QEMU).$(QEMU_SUFFIX)
@@ -128,6 +128,7 @@ QEMU_CONF_OPT	:= \
 	--disable-usb-redir \
 	--disable-vde \
 	--disable-vhost-user-blk-server \
+	--disable-libvduse \
 	--disable-virglrenderer \
 	--$(call ptx/endis, PTXCONF_QEMU_SYS)-virtfs \
 	--disable-virtiofsd \
-- 
2.34.1




             reply	other threads:[~2022-12-15 14:12 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-15 14:11 Christian Melki [this message]
2022-12-15 14:11 ` [ptxdist] [PATCH 2/2] host-qemu: Follow the changes in target qemu Christian Melki
2023-01-03 11:08   ` [ptxdist] [APPLIED] " Michael Olbrich
2023-01-03 11:08 ` [ptxdist] [APPLIED] qemu: Version bump. 7.1.0 -> 7.2.0 Michael Olbrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221215141131.3689507-1-christian.melki@t2data.com \
    --to=christian.melki@t2data.com \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox