commit d00e88d58dfc679cfddede128d4ff4f3bfbeb313
OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=1729
This commit is contained in:
parent
915f9d05ab
commit
f78d987356
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -29,9 +29,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: dtb-aarch64
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -29,9 +29,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: dtb-armv6l
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -29,9 +29,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: dtb-armv7l
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -29,9 +29,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: dtb-riscv64
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules zstd
|
||||
@ -107,9 +107,9 @@ Name: kernel-64kb
|
||||
Summary: Kernel with 64kb PAGE_SIZE
|
||||
License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -234,10 +234,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-%build_flavor-base-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
Provides: kernel-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: %name-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
%obsolete_rebuilds %name
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source3: kernel-source.rpmlintrc
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules zstd
|
||||
@ -107,9 +107,9 @@ Name: kernel-debug
|
||||
Summary: A Debug Version of the Kernel
|
||||
License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -234,10 +234,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-%build_flavor-base-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
Provides: kernel-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: %name-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
%ifarch ppc64
|
||||
Provides: kernel-kdump = 2.6.28
|
||||
Obsoletes: kernel-kdump <= 2.6.28
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules zstd
|
||||
@ -107,9 +107,9 @@ Name: kernel-default
|
||||
Summary: The Standard Kernel
|
||||
License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -234,10 +234,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-%build_flavor-base-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
Provides: kernel-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: %name-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
%ifarch %ix86
|
||||
Provides: kernel-smp = 2.6.17
|
||||
Obsoletes: kernel-smp <= 2.6.17
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -31,9 +31,9 @@ Name: kernel-docs
|
||||
Summary: Kernel Documentation
|
||||
License: GPL-2.0-only
|
||||
Group: Documentation/Man
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -67,7 +67,7 @@ BuildRequires: texlive-zapfding
|
||||
%endif
|
||||
URL: https://www.kernel.org/
|
||||
Provides: %name = %version-%source_rel
|
||||
Provides: %name-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: %name-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules zstd
|
||||
@ -107,9 +107,9 @@ Name: kernel-kvmsmall
|
||||
Summary: The Small Developer Kernel for KVM
|
||||
License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -234,10 +234,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-%build_flavor-base-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
Provides: kernel-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: %name-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
%obsolete_rebuilds %name
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source3: kernel-source.rpmlintrc
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules zstd
|
||||
@ -107,9 +107,9 @@ Name: kernel-lpae
|
||||
Summary: Kernel for LPAE enabled systems
|
||||
License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -234,10 +234,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-%build_flavor-base-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
Provides: kernel-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: %name-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
%obsolete_rebuilds %name
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source3: kernel-source.rpmlintrc
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
#!BuildIgnore: post-build-checks
|
||||
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -45,7 +45,7 @@ BuildRequires: util-linux
|
||||
%endif
|
||||
%endif
|
||||
%endif
|
||||
BuildRequires: kernel%kernel_flavor-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
BuildRequires: kernel%kernel_flavor-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
|
||||
%if 0%{?rhel_version}
|
||||
BuildRequires: kernel
|
||||
@ -64,9 +64,9 @@ BuildRequires: dracut
|
||||
Summary: package kernel and initrd for OBS VM builds
|
||||
License: GPL-2.0-only
|
||||
Group: SLES
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
# needsrootforbuild
|
||||
|
||||
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -36,9 +36,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Summary: Basic QA tests for the kernel
|
||||
License: GPL-2.0-only
|
||||
Group: SLES
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules zstd
|
||||
@ -107,9 +107,9 @@ Name: kernel-pae
|
||||
Summary: Kernel with PAE Support
|
||||
License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -234,10 +234,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-%build_flavor-base-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
Provides: kernel-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: %name-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
%ifarch %ix86
|
||||
Provides: kernel-bigsmp = 2.6.17
|
||||
Obsoletes: kernel-bigsmp <= 2.6.17
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -31,9 +31,9 @@
|
||||
%endif
|
||||
|
||||
Name: kernel-source
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -50,7 +50,7 @@ BuildRequires: fdupes
|
||||
BuildRequires: sed
|
||||
Requires(post): coreutils sed
|
||||
Provides: %name = %version-%source_rel
|
||||
Provides: %name-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: %name-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
Provides: linux
|
||||
Provides: multiversion(kernel)
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -24,10 +24,10 @@ Name: kernel-syms
|
||||
Summary: Kernel Symbol Versions (modversions)
|
||||
License: GPL-2.0-only
|
||||
Group: Development/Sources
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if %using_buildservice
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -52,7 +52,7 @@ Requires: kernel-pae-devel = %version-%source_rel
|
||||
%endif
|
||||
Requires: pesign-obs-integration
|
||||
Provides: %name = %version-%source_rel
|
||||
Provides: %name-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: %name-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
Provides: multiversion(kernel)
|
||||
Source: README.KSYMS
|
||||
Requires: kernel-devel%variant = %version-%source_rel
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules zstd
|
||||
@ -107,9 +107,9 @@ Name: kernel-vanilla
|
||||
Summary: The Standard Kernel - without any SUSE patches
|
||||
License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -234,10 +234,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-%build_flavor-base-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
Provides: kernel-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: %name-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
%obsolete_rebuilds %name
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source3: kernel-source.rpmlintrc
|
||||
|
@ -1,3 +1,81 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 09:46:41 CEST 2022 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.18.1 (bsc#1012628).
|
||||
- ALSA: ctxfi: Add SB046x PCI ID (bsc#1012628).
|
||||
- ACPI: sysfs: Fix BERT error region memory mapping (bsc#1012628).
|
||||
- random: check for signals after page of pool writes
|
||||
(bsc#1012628).
|
||||
- random: wire up fops->splice_{read,write}_iter() (bsc#1012628).
|
||||
- random: convert to using fops->write_iter() (bsc#1012628).
|
||||
- random: convert to using fops->read_iter() (bsc#1012628).
|
||||
- random: unify batched entropy implementations (bsc#1012628).
|
||||
- random: move randomize_page() into mm where it belongs
|
||||
(bsc#1012628).
|
||||
- random: move initialization functions out of hot pages
|
||||
(bsc#1012628).
|
||||
- random: make consistent use of buf and len (bsc#1012628).
|
||||
- random: use proper return types on get_random_{int,long}_wait()
|
||||
(bsc#1012628).
|
||||
- random: remove extern from functions in header (bsc#1012628).
|
||||
- random: use static branch for crng_ready() (bsc#1012628).
|
||||
- random: credit architectural init the exact amount
|
||||
(bsc#1012628).
|
||||
- random: handle latent entropy and command line from
|
||||
random_init() (bsc#1012628).
|
||||
- random: use proper jiffies comparison macro (bsc#1012628).
|
||||
- random: remove ratelimiting for in-kernel unseeded randomness
|
||||
(bsc#1012628).
|
||||
- random: move initialization out of reseeding hot path
|
||||
(bsc#1012628).
|
||||
- random: avoid initializing twice in credit race (bsc#1012628).
|
||||
- random: use symbolic constants for crng_init states
|
||||
(bsc#1012628).
|
||||
- siphash: use one source of truth for siphash permutations
|
||||
(bsc#1012628).
|
||||
- random: help compiler out with fast_mix() by using simpler
|
||||
arguments (bsc#1012628).
|
||||
- random: do not use input pool from hard IRQs (bsc#1012628).
|
||||
- random: order timer entropy functions below interrupt functions
|
||||
(bsc#1012628).
|
||||
- random: do not pretend to handle premature next security model
|
||||
(bsc#1012628).
|
||||
- random: use first 128 bits of input as fast init (bsc#1012628).
|
||||
- random: do not use batches when !crng_ready() (bsc#1012628).
|
||||
- random: insist on random_get_entropy() existing in order to
|
||||
simplify (bsc#1012628).
|
||||
- xtensa: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- sparc: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- um: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- x86/tsc: Use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- nios2: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- arm: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- mips: use fallback for random_get_entropy() instead of just
|
||||
c0 random (bsc#1012628).
|
||||
- riscv: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- m68k: use fallback for random_get_entropy() instead of zero
|
||||
(bsc#1012628).
|
||||
- timekeeping: Add raw clock fallback for random_get_entropy()
|
||||
(bsc#1012628).
|
||||
- powerpc: define get_cycles macro for arch-override
|
||||
(bsc#1012628).
|
||||
- alpha: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- parisc: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- s390: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- ia64: define get_cycles macro for arch-override (bsc#1012628).
|
||||
- init: call time_init() before rand_initialize() (bsc#1012628).
|
||||
- random: fix sysctl documentation nits (bsc#1012628).
|
||||
- HID: amd_sfh: Add support for sensor discovery (bsc#1012628).
|
||||
- lockdown: also lock down previous kgdb use (bsc#1012628).
|
||||
- commit df81444
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 26 21:52:06 CEST 2022 - mkubecek@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.18
|
||||
%define patchversion 5.18.0
|
||||
%define patchversion 5.18.1
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules zstd
|
||||
@ -107,9 +107,9 @@ Name: kernel-zfcpdump
|
||||
Summary: The IBM System Z zfcpdump Kernel
|
||||
License: GPL-2.0-only
|
||||
Group: System/Kernel
|
||||
Version: 5.18.0
|
||||
Version: 5.18.1
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge1a34d7
|
||||
Release: <RELEASE>.gd00e88d
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -234,10 +234,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: kernel-%build_flavor-base-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
Provides: kernel-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
Provides: %name-srchash-d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
%obsolete_rebuilds %name
|
||||
Source0: https://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source3: kernel-source.rpmlintrc
|
||||
|
BIN
patches.kernel.org.tar.bz2
(Stored with Git LFS)
BIN
patches.kernel.org.tar.bz2
(Stored with Git LFS)
Binary file not shown.
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ba69e9ecd6e4bdaaae625e857bf224646285f77d171ed34b61ad65a5a46e32f5
|
||||
size 37325
|
||||
oid sha256:800bcbd1f1ceef95ce49cb52152c924d86da69d0a7c91d63cc6468db2942249b
|
||||
size 34862
|
||||
|
49
series.conf
49
series.conf
@ -27,6 +27,54 @@
|
||||
# DO NOT MODIFY THEM!
|
||||
# Send separate patches upstream if you find a problem...
|
||||
########################################################
|
||||
patches.kernel.org/5.18.1-001-lockdown-also-lock-down-previous-kgdb-use.patch
|
||||
patches.kernel.org/5.18.1-002-HID-amd_sfh-Add-support-for-sensor-discovery.patch
|
||||
patches.kernel.org/5.18.1-003-random-fix-sysctl-documentation-nits.patch
|
||||
patches.kernel.org/5.18.1-004-init-call-time_init-before-rand_initialize.patch
|
||||
patches.kernel.org/5.18.1-005-ia64-define-get_cycles-macro-for-arch-override.patch
|
||||
patches.kernel.org/5.18.1-006-s390-define-get_cycles-macro-for-arch-override.patch
|
||||
patches.kernel.org/5.18.1-007-parisc-define-get_cycles-macro-for-arch-overri.patch
|
||||
patches.kernel.org/5.18.1-008-alpha-define-get_cycles-macro-for-arch-overrid.patch
|
||||
patches.kernel.org/5.18.1-009-powerpc-define-get_cycles-macro-for-arch-overr.patch
|
||||
patches.kernel.org/5.18.1-010-timekeeping-Add-raw-clock-fallback-for-random_.patch
|
||||
patches.kernel.org/5.18.1-011-m68k-use-fallback-for-random_get_entropy-inste.patch
|
||||
patches.kernel.org/5.18.1-012-riscv-use-fallback-for-random_get_entropy-inst.patch
|
||||
patches.kernel.org/5.18.1-013-mips-use-fallback-for-random_get_entropy-inste.patch
|
||||
patches.kernel.org/5.18.1-014-arm-use-fallback-for-random_get_entropy-instea.patch
|
||||
patches.kernel.org/5.18.1-015-nios2-use-fallback-for-random_get_entropy-inst.patch
|
||||
patches.kernel.org/5.18.1-016-x86-tsc-Use-fallback-for-random_get_entropy-in.patch
|
||||
patches.kernel.org/5.18.1-017-um-use-fallback-for-random_get_entropy-instead.patch
|
||||
patches.kernel.org/5.18.1-018-sparc-use-fallback-for-random_get_entropy-inst.patch
|
||||
patches.kernel.org/5.18.1-019-xtensa-use-fallback-for-random_get_entropy-ins.patch
|
||||
patches.kernel.org/5.18.1-020-random-insist-on-random_get_entropy-existing-i.patch
|
||||
patches.kernel.org/5.18.1-021-random-do-not-use-batches-when-crng_ready.patch
|
||||
patches.kernel.org/5.18.1-022-random-use-first-128-bits-of-input-as-fast-ini.patch
|
||||
patches.kernel.org/5.18.1-023-random-do-not-pretend-to-handle-premature-next.patch
|
||||
patches.kernel.org/5.18.1-024-random-order-timer-entropy-functions-below-int.patch
|
||||
patches.kernel.org/5.18.1-025-random-do-not-use-input-pool-from-hard-IRQs.patch
|
||||
patches.kernel.org/5.18.1-026-random-help-compiler-out-with-fast_mix-by-usin.patch
|
||||
patches.kernel.org/5.18.1-027-siphash-use-one-source-of-truth-for-siphash-pe.patch
|
||||
patches.kernel.org/5.18.1-028-random-use-symbolic-constants-for-crng_init-st.patch
|
||||
patches.kernel.org/5.18.1-029-random-avoid-initializing-twice-in-credit-race.patch
|
||||
patches.kernel.org/5.18.1-030-random-move-initialization-out-of-reseeding-ho.patch
|
||||
patches.kernel.org/5.18.1-031-random-remove-ratelimiting-for-in-kernel-unsee.patch
|
||||
patches.kernel.org/5.18.1-032-random-use-proper-jiffies-comparison-macro.patch
|
||||
patches.kernel.org/5.18.1-033-random-handle-latent-entropy-and-command-line-.patch
|
||||
patches.kernel.org/5.18.1-034-random-credit-architectural-init-the-exact-amo.patch
|
||||
patches.kernel.org/5.18.1-035-random-use-static-branch-for-crng_ready.patch
|
||||
patches.kernel.org/5.18.1-036-random-remove-extern-from-functions-in-header.patch
|
||||
patches.kernel.org/5.18.1-037-random-use-proper-return-types-on-get_random_-.patch
|
||||
patches.kernel.org/5.18.1-038-random-make-consistent-use-of-buf-and-len.patch
|
||||
patches.kernel.org/5.18.1-039-random-move-initialization-functions-out-of-ho.patch
|
||||
patches.kernel.org/5.18.1-040-random-move-randomize_page-into-mm-where-it-be.patch
|
||||
patches.kernel.org/5.18.1-041-random-unify-batched-entropy-implementations.patch
|
||||
patches.kernel.org/5.18.1-042-random-convert-to-using-fops-read_iter.patch
|
||||
patches.kernel.org/5.18.1-043-random-convert-to-using-fops-write_iter.patch
|
||||
patches.kernel.org/5.18.1-044-random-wire-up-fops-splice_-read-write-_iter.patch
|
||||
patches.kernel.org/5.18.1-045-random-check-for-signals-after-page-of-pool-wr.patch
|
||||
patches.kernel.org/5.18.1-046-ACPI-sysfs-Fix-BERT-error-region-memory-mappin.patch
|
||||
patches.kernel.org/5.18.1-047-ALSA-ctxfi-Add-SB046x-PCI-ID.patch
|
||||
patches.kernel.org/5.18.1-048-Linux-5.18.1.patch
|
||||
|
||||
########################################################
|
||||
# Build fixes that apply to the vanilla kernel too.
|
||||
@ -76,7 +124,6 @@
|
||||
# to get into mainline any time soon (or ever) belong
|
||||
# to area specific sections below.
|
||||
########################################################
|
||||
patches.suse/random-do-not-use-input-pool-from-hard-IRQs.patch
|
||||
|
||||
########################################################
|
||||
# kbuild/module infrastructure fixes
|
||||
|
@ -1,3 +1,3 @@
|
||||
2022-05-27 06:01:53 +0000
|
||||
GIT Revision: e1a34d7e5392951af336cd8a0362c11c53cc0e94
|
||||
2022-05-30 07:49:01 +0000
|
||||
GIT Revision: d00e88d58dfc679cfddede128d4ff4f3bfbeb313
|
||||
GIT Branch: stable
|
||||
|
Loading…
Reference in New Issue
Block a user