Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package glibc for openSUSE:Factory checked 
in at 2023-12-06 23:46:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/glibc (Old)
 and      /work/SRC/openSUSE:Factory/.glibc.new.25432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "glibc"

Wed Dec  6 23:46:58 2023 rev:283 rq:1131294 version:2.38

Changes:
--------
--- /work/SRC/openSUSE:Factory/glibc/glibc.changes      2023-10-31 
20:24:35.319491384 +0100
+++ /work/SRC/openSUSE:Factory/.glibc.new.25432/glibc.changes   2023-12-06 
23:46:59.328524428 +0100
@@ -1,0 +2,11 @@
+Tue Dec  5 11:52:03 UTC 2023 - Andreas Schwab <sch...@suse.de>
+
+- aarch64-rawmemchr-unwind.patch: aarch64: correct CFI in rawmemchr
+  (bsc#1217445, BZ #31113)
+
+-------------------------------------------------------------------
+Mon Dec  4 15:16:38 UTC 2023 - Andreas Schwab <sch...@suse.de>
+
+- Remove systemd from shadow and gshadow lookups (bsc#1217220)
+
+-------------------------------------------------------------------

New:
----
  aarch64-rawmemchr-unwind.patch

BETA DEBUG BEGIN:
  New:
- aarch64-rawmemchr-unwind.patch: aarch64: correct CFI in rawmemchr
  (bsc#1217445, BZ #31113)
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ glibc.spec ++++++
--- /var/tmp/diff_new_pack.2Y4N2O/_old  2023-12-06 23:47:01.116590347 +0100
+++ /var/tmp/diff_new_pack.2Y4N2O/_new  2023-12-06 23:47:01.120590494 +0100
@@ -331,6 +331,8 @@
 Patch1013:      tunables-string-parsing.patch
 # PATCH-FIX-UPSTREAM add GB18030-2022 charmap and test the entire GB18030 
charmap (BZ #30243)
 Patch1014:      gb18030-2022.patch
+# PATCH-FIX-UPSTREAM aarch64: correct CFI in rawmemchr (BZ #31113)
+Patch1015:      aarch64-rawmemchr-unwind.patch
 
 ###
 # Patches awaiting upstream approval
@@ -568,6 +570,7 @@
 %patch1012 -p1
 %patch1013 -p1
 %patch1014 -p1
+%patch1015 -p1
 %endif
 
 %patch2000 -p1

++++++ aarch64-rawmemchr-unwind.patch ++++++
>From 3f798427884fa57770e8e2291cf58d5918254bb5 Mon Sep 17 00:00:00 2001
From: Andreas Schwab <sch...@suse.de>
Date: Thu, 23 Nov 2023 18:23:46 +0100
Subject: [PATCH] aarch64: correct CFI in rawmemchr (bug 31113)

The .cfi_return_column directive changes the return column for the whole
FDE range.  But the actual intent is to tell the unwinder that the value
in x30 (lr) now resides in x15 after the move, and that is expressed by
the .cfi_register directive.
---
 sysdeps/aarch64/rawmemchr.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/aarch64/rawmemchr.S b/sysdeps/aarch64/rawmemchr.S
index efc4b7007b..1fff094215 100644
--- a/sysdeps/aarch64/rawmemchr.S
+++ b/sysdeps/aarch64/rawmemchr.S
@@ -31,7 +31,7 @@ ENTRY (__rawmemchr)
 
 L(do_strlen):
        mov     x15, x30
-       cfi_return_column (x15)
+       cfi_register (x30, x15)
        mov     x14, x0
        bl      __strlen
        add     x0, x14, x0
-- 
2.43.0



++++++ nsswitch.conf ++++++
--- /var/tmp/diff_new_pack.2Y4N2O/_old  2023-12-06 23:47:01.324598015 +0100
+++ /var/tmp/diff_new_pack.2Y4N2O/_new  2023-12-06 23:47:01.328598162 +0100
@@ -54,7 +54,7 @@
 
 passwd:                compat systemd
 group:         compat systemd
-shadow:                compat systemd
+shadow:                compat
 # Allow initgroups to default to the setting for group.
 # initgroups:  compat
 
@@ -63,7 +63,7 @@
 
 aliases:       files usrfiles
 ethers:                files usrfiles
-gshadow:       files usrfiles systemd
+gshadow:       files usrfiles
 netgroup:      files nis
 protocols:     files usrfiles
 publickey:     files

Reply via email to