commit edf6bd45c1fbccf28f98a169b9f3af867589f651

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=2102
This commit is contained in:
Kernel Bugs 2024-02-22 07:06:11 +00:00 committed by Git OBS Bridge
parent 0d529d0f3c
commit 19e5a8830a
39 changed files with 581 additions and 35 deletions

View File

@ -15,6 +15,7 @@ declare -a IGNORED_CONFIGS_RE=(
'CC_VERSION_TEXT'
'DYNAMIC_SIGFRAME'
'FTRACE_MCOUNT_USE_[A-Z_]*'
'GCC_ASM_GOTO_OUTPUT_WORKAROUND'
'GCC_VERSION'
'G*CC[0-9]*_NO_[A-Z_]*'
'HAVE_[A-Z]*_COMPILER'

View File

@ -64,13 +64,13 @@ done >"$series" < <($(dirname $0)/guards $EXTRA_SYMBOLS <series.conf)
# Parse all the changes to KERNELRELEASE out of all patches and
# convert them to shell code that can be evaluated. Evaluate it.
eval "$(
eval "$( {
<"$series" xargs awk '
/^--- |^\+\+\+ / \
{ M = match($2, /^[^\/]+\/Makefile( \t|$)/) }
M && /^+(VERSION|PATCHLEVEL|SUBLEVEL|EXTRAVERSION)/ \
{ print }
' \
' || echo exit 1 ; } \
| sed -e 's,^+,,' -e 's, *= *\(.*\),="\1",'
)"

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -27,7 +27,7 @@
Name: dtb-aarch64
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -27,7 +27,7 @@
Name: dtb-armv6l
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -27,7 +27,7 @@
Name: dtb-armv7l
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -27,7 +27,7 @@
Name: dtb-riscv64
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.7
%define patchversion 6.7.5
%define git_commit a3bab56f26c8c783bb4195c872ddc6b877982fa0
%define git_commit edf6bd45c1fbccf28f98a169b9f3af867589f651
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -115,7 +115,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.7
%define patchversion 6.7.5
%define git_commit a3bab56f26c8c783bb4195c872ddc6b877982fa0
%define git_commit edf6bd45c1fbccf28f98a169b9f3af867589f651
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -115,7 +115,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.7
%define patchversion 6.7.5
%define git_commit a3bab56f26c8c783bb4195c872ddc6b877982fa0
%define git_commit edf6bd45c1fbccf28f98a169b9f3af867589f651
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -115,7 +115,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -18,7 +18,7 @@
%define srcversion 6.7
%define patchversion 6.7.5
%define git_commit a3bab56f26c8c783bb4195c872ddc6b877982fa0
%define git_commit edf6bd45c1fbccf28f98a169b9f3af867589f651
%define variant %{nil}
%define build_html 1
%define build_pdf 0
@ -33,7 +33,7 @@ License: GPL-2.0-only
Group: Documentation/Man
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.7
%define patchversion 6.7.5
%define git_commit a3bab56f26c8c783bb4195c872ddc6b877982fa0
%define git_commit edf6bd45c1fbccf28f98a169b9f3af867589f651
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -115,7 +115,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.7
%define patchversion 6.7.5
%define git_commit a3bab56f26c8c783bb4195c872ddc6b877982fa0
%define git_commit edf6bd45c1fbccf28f98a169b9f3af867589f651
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -115,7 +115,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -44,7 +44,7 @@ BuildRequires: util-linux
%endif
%endif
%endif
BuildRequires: kernel%kernel_flavor-srchash-a3bab56f26c8c783bb4195c872ddc6b877982fa0
BuildRequires: kernel%kernel_flavor-srchash-edf6bd45c1fbccf28f98a169b9f3af867589f651
%if 0%{?rhel_version}
BuildRequires: kernel
@ -62,7 +62,7 @@ License: GPL-2.0-only
Group: SLES
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -38,7 +38,7 @@ License: GPL-2.0-only
Group: SLES
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.7
%define patchversion 6.7.5
%define git_commit a3bab56f26c8c783bb4195c872ddc6b877982fa0
%define git_commit edf6bd45c1fbccf28f98a169b9f3af867589f651
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -115,7 +115,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -18,7 +18,7 @@
%define srcversion 6.7
%define patchversion 6.7.5
%define git_commit a3bab56f26c8c783bb4195c872ddc6b877982fa0
%define git_commit edf6bd45c1fbccf28f98a169b9f3af867589f651
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -33,7 +33,7 @@
Name: kernel-source
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -16,7 +16,7 @@
#
%define git_commit a3bab56f26c8c783bb4195c872ddc6b877982fa0
%define git_commit edf6bd45c1fbccf28f98a169b9f3af867589f651
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -28,7 +28,7 @@ Group: Development/Sources
Version: 6.7.5
%if %using_buildservice
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.7
%define patchversion 6.7.5
%define git_commit a3bab56f26c8c783bb4195c872ddc6b877982fa0
%define git_commit edf6bd45c1fbccf28f98a169b9f3af867589f651
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -115,7 +115,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Wed Feb 21 10:32:35 CET 2024 - jslaby@suse.cz
- sched/membarrier: reduce the ability to hammer on sys_membarrier
(git-fixes).
- commit edf6bd4
-------------------------------------------------------------------
Wed Feb 21 07:30:11 CET 2024 - jslaby@suse.cz
- rpm/check-for-config-changes: add GCC_ASM_GOTO_OUTPUT_WORKAROUND to IGNORED_CONFIGS_RE
Introduced by commit 68fb3ca0e408 ("update workarounds for gcc "asm
goto" issue").
- commit be1bdab
-------------------------------------------------------------------
Mon Feb 19 12:34:16 CET 2024 - msuchanek@suse.de
- compute-PATCHVERSION: Do not produce output when awk fails
compute-PATCHVERSION uses awk to produce a shell script that is
subsequently executed to update shell variables which are then printed
as the patchversion.
Some versions of awk, most notably bysybox-gawk do not understand the
awk program and fail to run. This results in no script generated as
output, and printing the initial values of the shell variables as
the patchversion.
When the awk program fails to run produce 'exit 1' as the shell script
to run instead. That prevents printing the stale values, generates no
output, and generates invalid rpm spec file down the line. Then the
problem is flagged early and should be easier to diagnose.
- commit 8ef8383
-------------------------------------------------------------------
Sat Feb 17 08:43:20 CET 2024 - jslaby@suse.cz

View File

@ -19,7 +19,7 @@
%define srcversion 6.7
%define patchversion 6.7.5
%define git_commit a3bab56f26c8c783bb4195c872ddc6b877982fa0
%define git_commit edf6bd45c1fbccf28f98a169b9f3af867589f651
%define variant %{nil}
%define compress_modules zstd
%define compress_vmlinux xz
@ -115,7 +115,7 @@ License: GPL-2.0-only
Group: System/Kernel
Version: 6.7.5
%if 0%{?is_kotd}
Release: <RELEASE>.ga3bab56
Release: <RELEASE>.gedf6bd4
%else
Release: 0
%endif

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5148bc2b9dd78e61115066eff829616a19de29a3d052d4b717d94372f3c80e5c
size 58844
oid sha256:823afa84a75af4962321aec4869df0a4670b391a56e50a421a82ed70d57d0152
size 59537

View File

@ -1563,6 +1563,7 @@
patches.suse/btrfs-add-new-unused-block-groups-to-the-list-of-unu.patch
patches.suse/btrfs-don-t-refill-whole-delayed-refs-block-reserve-.patch
patches.suse/af_unix-Fix-task-hung-while-purging-oob_skb-in-GC.patch
patches.suse/sched-membarrier-reduce-the-ability-to-hammer-on-sys.patch
########################################################
# end of sorted patches

View File

@ -1,3 +1,3 @@
2024-02-17 07:45:40 +0000
GIT Revision: a3bab56f26c8c783bb4195c872ddc6b877982fa0
2024-02-21 09:32:35 +0000
GIT Revision: edf6bd45c1fbccf28f98a169b9f3af867589f651
GIT Branch: stable