commit 84a32d6adbf5c833401867ce72eecaaea4aded55
OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=1462
This commit is contained in:
parent
ac0582bc88
commit
1327eebf8a
@ -1,9 +1,31 @@
|
||||
#! /bin/bash
|
||||
|
||||
declare -a IGNORED_CONFIGS_RE=(
|
||||
"CONFIG_GCC_VERSION"
|
||||
"CONFIG_LD_VERSION"
|
||||
"CONFIG_CC_VERSION_TEXT"
|
||||
"CONFIG_CC_HAS_"
|
||||
"CONFIG_CC_HAVE_"
|
||||
"CONFIG_CC_CAN_"
|
||||
"CONFIG_HAVE_[A-Z]*_COMPILER"
|
||||
"CONFIG_TOOLS_SUPPORT_"
|
||||
)
|
||||
|
||||
declare -a SED_ARGS=()
|
||||
|
||||
for CONFIG in "${IGNORED_CONFIGS_RE[@]}"; do
|
||||
SED_ARGS+=(-e "/$CONFIG/ d")
|
||||
done
|
||||
|
||||
SED_ARGS+=(
|
||||
-e '/^# .* is not set$/p'
|
||||
-e '/^$\|^#/d'
|
||||
)
|
||||
|
||||
# lines 4 contains a timestamp...
|
||||
differences="$(
|
||||
diff -bU0 <(sed -e '/CONFIG_GCC_VERSION/ d' -e '/CONFIG_LD_VERSION/ d' -e '/CONFIG_CC_VERSION_TEXT/ d' -e '/^# .* is not set$/p' -e '/^$\|^#/d' "$1" | sort) \
|
||||
<(sed -e '/CONFIG_GCC_VERSION/ d' -e '/CONFIG_LD_VERSION/ d' -e '/CONFIG_CC_VERSION_TEXT/ d' -e '/^# .* is not set$/p' -e '/^$\|^#/d' "$2" | sort) \
|
||||
diff -bU0 <(sed "${SED_ARGS[@]}" "$1" | sort) \
|
||||
<(sed "${SED_ARGS[@]}" "$2" | sort) \
|
||||
| grep '^[-+][^-+]'
|
||||
)" || true
|
||||
if [ -n "$differences" ]; then
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:03aec885970b535f2d3bfef53e3a574f88d6a75fa4df0b2502d33bbcf5e375eb
|
||||
size 286830
|
||||
oid sha256:0099c72d24905c7b3e236632d37bca6f8a06e88752848a0ed03e57f8ca3314b3
|
||||
size 286536
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%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.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%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.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%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.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%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.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules xz
|
||||
@ -68,9 +68,9 @@ Name: kernel-64kb
|
||||
Summary: Kernel with 64kb PAGE_SIZE
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -179,10 +179,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-%build_flavor-base-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
Provides: kernel-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: %name-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
%obsolete_rebuilds %name
|
||||
Source0: http://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source2: source-post.sh
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules xz
|
||||
@ -68,9 +68,9 @@ Name: kernel-debug
|
||||
Summary: A Debug Version of the Kernel
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -179,10 +179,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-%build_flavor-base-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
Provides: kernel-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: %name-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
%ifarch ppc64
|
||||
Provides: kernel-kdump = 2.6.28
|
||||
Obsoletes: kernel-kdump <= 2.6.28
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules xz
|
||||
@ -68,9 +68,9 @@ Name: kernel-default
|
||||
Summary: The Standard Kernel
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -179,10 +179,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-%build_flavor-base-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
Provides: kernel-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: %name-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
%ifarch %ix86
|
||||
Provides: kernel-smp = 2.6.17
|
||||
Obsoletes: kernel-smp <= 2.6.17
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -31,9 +31,9 @@ Name: kernel-docs
|
||||
Summary: Kernel Documentation
|
||||
License: GPL-2.0
|
||||
Group: Documentation/Man
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -63,7 +63,7 @@ BuildRequires: texlive-zapfding
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
Provides: %name = %version-%source_rel
|
||||
Provides: %name-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: %name-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Source0: http://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules xz
|
||||
@ -68,9 +68,9 @@ Name: kernel-kvmsmall
|
||||
Summary: The Small Developer Kernel for KVM
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -179,10 +179,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-%build_flavor-base-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
Provides: kernel-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: %name-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
%obsolete_rebuilds %name
|
||||
Source0: http://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source2: source-post.sh
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules xz
|
||||
@ -68,9 +68,9 @@ Name: kernel-lpae
|
||||
Summary: Kernel for LPAE enabled systems
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -179,10 +179,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-%build_flavor-base-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
Provides: kernel-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: %name-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
%obsolete_rebuilds %name
|
||||
Source0: http://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source2: source-post.sh
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
#!BuildIgnore: post-build-checks
|
||||
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -45,7 +45,7 @@ BuildRequires: util-linux
|
||||
%endif
|
||||
%endif
|
||||
%endif
|
||||
BuildRequires: kernel%kernel_flavor-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
BuildRequires: kernel%kernel_flavor-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
|
||||
%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
|
||||
Group: SLES
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
# needsrootforbuild
|
||||
|
||||
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%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
|
||||
Group: SLES
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules xz
|
||||
@ -68,9 +68,9 @@ Name: kernel-pae
|
||||
Summary: Kernel with PAE Support
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -179,10 +179,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-%build_flavor-base-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
Provides: kernel-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: %name-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
%ifarch %ix86
|
||||
Provides: kernel-bigsmp = 2.6.17
|
||||
Obsoletes: kernel-bigsmp <= 2.6.17
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -30,9 +30,9 @@ Name: kernel-source
|
||||
Summary: The Linux Kernel Sources
|
||||
License: GPL-2.0
|
||||
Group: Development/Sources
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -43,7 +43,7 @@ BuildRequires: fdupes
|
||||
BuildRequires: sed
|
||||
Requires(post): coreutils sed
|
||||
Provides: %name = %version-%source_rel
|
||||
Provides: %name-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: %name-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
Provides: linux
|
||||
Provides: multiversion(kernel)
|
||||
Source0: http://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -24,10 +24,10 @@ Name: kernel-syms
|
||||
Summary: Kernel Symbol Versions (modversions)
|
||||
License: GPL-2.0
|
||||
Group: Development/Sources
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if %using_buildservice
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%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-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: %name-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
Provides: multiversion(kernel)
|
||||
Source: README.KSYMS
|
||||
Requires: kernel-devel%variant = %version-%source_rel
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules xz
|
||||
@ -68,9 +68,9 @@ Name: kernel-vanilla
|
||||
Summary: The Standard Kernel - without any SUSE patches
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -179,10 +179,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-%build_flavor-base-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
Provides: kernel-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: %name-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
%obsolete_rebuilds %name
|
||||
Source0: http://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source2: source-post.sh
|
||||
|
@ -1,3 +1,104 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 05:45:02 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch.
|
||||
- Refresh
|
||||
patches.rpmify/kbuild-dummy-tools-support-MPROFILE_KERNEL-checks-fo.patch.
|
||||
Update upstream status.
|
||||
- commit c867c19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 12:08:27 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Linux 5.11.5 (bsc#1012628).
|
||||
- ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair
|
||||
Virtuoso SE (bsc#1012628).
|
||||
- ALSA: usb-audio: Don't abort even if the clock rate differs
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Drop bogus dB range in too low level
|
||||
(bsc#1012628).
|
||||
- ALSA: usb-audio: Allow modifying parameters with succeeding
|
||||
hw_params calls (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_tis_gen_interrupt() with
|
||||
request_locality() (bsc#1012628).
|
||||
- tpm, tpm_tis: Decorate tpm_get_timeouts() with
|
||||
request_locality() (bsc#1012628).
|
||||
- btrfs: avoid double put of block group when emptying cluster
|
||||
(bsc#1012628).
|
||||
- btrfs: fix raid6 qstripe kmap (bsc#1012628).
|
||||
- btrfs: fix race between writes to swap files and scrub
|
||||
(bsc#1012628).
|
||||
- btrfs: fix race between swap file activation and snapshot
|
||||
creation (bsc#1012628).
|
||||
- btrfs: fix stale data exposure after cloning a hole with
|
||||
NO_HOLES enabled (bsc#1012628).
|
||||
- btrfs: tree-checker: do not error out if extent ref hash
|
||||
doesn't match (bsc#1012628).
|
||||
- btrfs: fix race between extent freeing/allocation when using
|
||||
bitmaps (bsc#1012628).
|
||||
- btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
|
||||
(bsc#1012628).
|
||||
- btrfs: free correct amount of space in
|
||||
btrfs_delayed_inode_reserve_metadata (bsc#1012628).
|
||||
- btrfs: fix spurious free_space_tree remount warning
|
||||
(bsc#1012628).
|
||||
- btrfs: unlock extents in btrfs_zero_range in case of quota
|
||||
reservation errors (bsc#1012628).
|
||||
- btrfs: fix warning when creating a directory with smack enabled
|
||||
(bsc#1012628).
|
||||
- PM: runtime: Update device status before letting suppliers
|
||||
suspend (bsc#1012628).
|
||||
- ring-buffer: Force before_stamp and write_stamp to be different
|
||||
on discard (bsc#1012628).
|
||||
- io_uring: ignore double poll add on the same waitqueue head
|
||||
(bsc#1012628).
|
||||
- dm bufio: subtract the number of initial sectors in
|
||||
dm_bufio_get_device_size (bsc#1012628).
|
||||
- dm verity: fix FEC for RS roots unaligned to block size
|
||||
(bsc#1012628).
|
||||
- drm/amd/pm: correct Arcturus mmTHM_BACO_CNTL register address
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu:disable VCN for Navi12 SKU (bsc#1012628).
|
||||
- drm/amdgpu: Only check for S0ix if AMD_PMC is configured
|
||||
(bsc#1012628).
|
||||
- drm/amdgpu: fix parameter error of RREG32_PCIE() in
|
||||
amdgpu_regs_pcie (bsc#1012628).
|
||||
- crypto - shash: reduce minimum alignment of shash_desc structure
|
||||
(bsc#1012628).
|
||||
- ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits
|
||||
(bsc#1012628).
|
||||
- RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep (bsc#1012628).
|
||||
- RDMA/rxe: Fix missing kconfig dependency on CRYPTO
|
||||
(bsc#1012628).
|
||||
- IB/mlx5: Add missing error code (bsc#1012628).
|
||||
- ALSA: hda: intel-nhlt: verify config type (bsc#1012628).
|
||||
- ftrace: Have recordmcount use w8 to read relp->r_info in
|
||||
arm64_is_fake_mcount (bsc#1012628).
|
||||
- ia64: don't call handle_signal() unless there's actually a
|
||||
signal queued (bsc#1012628).
|
||||
- rsxx: Return -EFAULT if copy_to_user() fails (bsc#1012628).
|
||||
- iommu/tegra-smmu: Fix mc errors on tegra124-nyan (bsc#1012628).
|
||||
- iommu: Don't use lazy flush for untrusted device (bsc#1012628).
|
||||
- iommu/vt-d: Fix status code for Allocate/Free PASID command
|
||||
(bsc#1012628).
|
||||
- btrfs: zoned: use sector_t for zone sectors (bsc#1012628).
|
||||
- tomoyo: recognize kernel threads correctly (bsc#1012628).
|
||||
- r8169: fix resuming from suspend on RTL8105e if machine runs
|
||||
on battery (bsc#1012628).
|
||||
- commit d09469d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 9 07:53:13 CET 2021 - tiwai@suse.de
|
||||
|
||||
- ALSA: usb-audio: Apply the control quirk to Plantronics headsets
|
||||
(bsc#1182552).
|
||||
- ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk
|
||||
(bsc#1182552).
|
||||
- commit f99c94c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -5,6 +106,14 @@ Mon Mar 8 07:19:58 CET 2021 - jslaby@suse.cz
|
||||
(bsc#1181862).
|
||||
- commit 7064b20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:07:04 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Delete
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch.
|
||||
With dummy-tools, this is no longer needed.
|
||||
- commit 84a32d6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 07:05:24 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -206,6 +315,15 @@ Fri Mar 5 16:13:26 CET 2021 - dmueller@suse.com
|
||||
enable CONFIG_ARM_MODULE_PLTS to fix module loading issues
|
||||
- commit b3d2cd1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 5 10:55:45 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: declare sed args as an array
|
||||
So that we can reuse it in both seds.
|
||||
This also introduces IGNORED_CONFIGS_RE array which can be easily
|
||||
extended.
|
||||
- commit a1976d2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 13:01:10 CET 2021 - jslaby@suse.cz
|
||||
|
||||
@ -1503,6 +1621,20 @@ Thu Mar 4 12:56:54 CET 2021 - jslaby@suse.cz
|
||||
- Update config files.
|
||||
- commit 39714eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 4 12:54:55 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: ignore more configs
|
||||
Specifially, these:
|
||||
* CONFIG_CC_HAS_*
|
||||
* CONFIG_CC_HAVE_*
|
||||
* CONFIG_CC_CAN_*
|
||||
* CONFIG_HAVE_[A-Z]*_COMPILER
|
||||
* CONFIG_TOOLS_SUPPORT_*
|
||||
are compiler specific too. This will allow us to use super configs
|
||||
using kernel's dummy-tools.
|
||||
- commit d12dcbd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 16:02:09 CET 2021 - yousaf.kaukab@suse.com
|
||||
|
||||
@ -1515,6 +1647,13 @@ Wed Mar 3 16:00:13 CET 2021 - yousaf.kaukab@suse.com
|
||||
- config: arm64: sync coresight configs with SLE
|
||||
- commit b4d272d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:31:59 CET 2021 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
Refresh with dummy-tools.
|
||||
- commit 433c0e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 3 12:19:43 CET 2021 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 5.11
|
||||
%define patchversion 5.11.4
|
||||
%define patchversion 5.11.5
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
%define compress_modules xz
|
||||
@ -68,9 +68,9 @@ Name: kernel-zfcpdump
|
||||
Summary: The IBM System Z zfcpdump Kernel
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 5.11.4
|
||||
Version: 5.11.5
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.ge8f7993
|
||||
Release: <RELEASE>.g84a32d6
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@ -179,10 +179,10 @@ Conflicts: hyper-v < 4
|
||||
Conflicts: libc.so.6()(64bit)
|
||||
%endif
|
||||
Provides: kernel = %version-%source_rel
|
||||
Provides: kernel-%build_flavor-base-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: kernel-%build_flavor-base-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
Provides: kernel-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
# END COMMON DEPS
|
||||
Provides: %name-srchash-e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
Provides: %name-srchash-84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
%obsolete_rebuilds %name
|
||||
Source0: http://www.kernel.org/pub/linux/kernel/v5.x/linux-%srcversion.tar.xz
|
||||
Source2: source-post.sh
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2d56a51b7f5f3cfdf34d16da8deb691ca22d02bb4db5455b1a9a1451632665f4
|
||||
size 637712
|
||||
oid sha256:910f5dcd5061cdce6d4f7f47a09c4dd4a221be926dc95f8401a848cd7635b186
|
||||
size 673622
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e6dc58509be73804ab3cf792626a2b67b3f9302f8b612d98f8e167eb350d55ef
|
||||
size 4268
|
||||
oid sha256:6dc666fb854f18f3c7eb88459fb7d0a5091a95fec6ae75bbab9bd484457e3d57
|
||||
size 3919
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e36f2972380143b3bec76d1adf40c638cff94b8fefac921df2fb3050df821259
|
||||
size 65157
|
||||
oid sha256:44afb7e7ad1a1406ff7541d844e29ec67bcd2401978da7ea4713e838509badb1
|
||||
size 65839
|
||||
|
49
series.conf
49
series.conf
@ -930,6 +930,51 @@
|
||||
patches.kernel.org/5.11.4-102-ALSA-hda-realtek-Add-quirk-for-Intel-NUC-10.patch
|
||||
patches.kernel.org/5.11.4-103-ALSA-hda-realtek-Apply-dual-codec-quirks-for-M.patch
|
||||
patches.kernel.org/5.11.4-104-Linux-5.11.4.patch
|
||||
patches.kernel.org/5.11.5-001-ALSA-hda-realtek-Enable-headset-mic-of-Acer-SW.patch
|
||||
patches.kernel.org/5.11.5-002-ALSA-usb-audio-use-Corsair-Virtuoso-mapping-fo.patch
|
||||
patches.kernel.org/5.11.5-003-ALSA-usb-audio-Don-t-abort-even-if-the-clock-r.patch
|
||||
patches.kernel.org/5.11.5-004-ALSA-usb-audio-Drop-bogus-dB-range-in-too-low-.patch
|
||||
patches.kernel.org/5.11.5-005-ALSA-usb-audio-Allow-modifying-parameters-with.patch
|
||||
patches.kernel.org/5.11.5-006-tpm-tpm_tis-Decorate-tpm_tis_gen_interrupt-wit.patch
|
||||
patches.kernel.org/5.11.5-007-tpm-tpm_tis-Decorate-tpm_get_timeouts-with-req.patch
|
||||
patches.kernel.org/5.11.5-008-btrfs-avoid-double-put-of-block-group-when-emp.patch
|
||||
patches.kernel.org/5.11.5-009-btrfs-fix-raid6-qstripe-kmap.patch
|
||||
patches.kernel.org/5.11.5-010-btrfs-fix-race-between-writes-to-swap-files-an.patch
|
||||
patches.kernel.org/5.11.5-011-btrfs-fix-race-between-swap-file-activation-an.patch
|
||||
patches.kernel.org/5.11.5-012-btrfs-fix-stale-data-exposure-after-cloning-a-.patch
|
||||
patches.kernel.org/5.11.5-013-btrfs-tree-checker-do-not-error-out-if-extent-.patch
|
||||
patches.kernel.org/5.11.5-014-btrfs-fix-race-between-extent-freeing-allocati.patch
|
||||
patches.kernel.org/5.11.5-015-btrfs-validate-qgroup-inherit-for-SNAP_CREATE_.patch
|
||||
patches.kernel.org/5.11.5-016-btrfs-free-correct-amount-of-space-in-btrfs_de.patch
|
||||
patches.kernel.org/5.11.5-017-btrfs-fix-spurious-free_space_tree-remount-war.patch
|
||||
patches.kernel.org/5.11.5-018-btrfs-unlock-extents-in-btrfs_zero_range-in-ca.patch
|
||||
patches.kernel.org/5.11.5-019-btrfs-fix-warning-when-creating-a-directory-wi.patch
|
||||
patches.kernel.org/5.11.5-020-PM-runtime-Update-device-status-before-letting.patch
|
||||
patches.kernel.org/5.11.5-021-ring-buffer-Force-before_stamp-and-write_stamp.patch
|
||||
patches.kernel.org/5.11.5-022-io_uring-ignore-double-poll-add-on-the-same-wa.patch
|
||||
patches.kernel.org/5.11.5-023-dm-bufio-subtract-the-number-of-initial-sector.patch
|
||||
patches.kernel.org/5.11.5-024-dm-verity-fix-FEC-for-RS-roots-unaligned-to-bl.patch
|
||||
patches.kernel.org/5.11.5-025-drm-amd-pm-correct-Arcturus-mmTHM_BACO_CNTL-re.patch
|
||||
patches.kernel.org/5.11.5-026-drm-amdgpu-disable-VCN-for-Navi12-SKU.patch
|
||||
patches.kernel.org/5.11.5-027-drm-amdgpu-Only-check-for-S0ix-if-AMD_PMC-is-c.patch
|
||||
patches.kernel.org/5.11.5-028-drm-amdgpu-fix-parameter-error-of-RREG32_PCIE-.patch
|
||||
patches.kernel.org/5.11.5-029-crypto-shash-reduce-minimum-alignment-of-shash.patch
|
||||
patches.kernel.org/5.11.5-030-ALSA-ctxfi-cthw20k2-fix-mask-on-conf-to-allow-.patch
|
||||
patches.kernel.org/5.11.5-031-ALSA-usb-audio-Fix-Pioneer-DJM-devices-URB_CON.patch
|
||||
patches.kernel.org/5.11.5-032-RDMA-cm-Fix-IRQ-restore-in-ib_send_cm_sidr_rep.patch
|
||||
patches.kernel.org/5.11.5-033-RDMA-rxe-Fix-missing-kconfig-dependency-on-CRY.patch
|
||||
patches.kernel.org/5.11.5-034-IB-mlx5-Add-missing-error-code.patch
|
||||
patches.kernel.org/5.11.5-035-ALSA-hda-intel-nhlt-verify-config-type.patch
|
||||
patches.kernel.org/5.11.5-036-ftrace-Have-recordmcount-use-w8-to-read-relp-r.patch
|
||||
patches.kernel.org/5.11.5-037-ia64-don-t-call-handle_signal-unless-there-s-a.patch
|
||||
patches.kernel.org/5.11.5-038-rsxx-Return-EFAULT-if-copy_to_user-fails.patch
|
||||
patches.kernel.org/5.11.5-039-iommu-tegra-smmu-Fix-mc-errors-on-tegra124-nya.patch
|
||||
patches.kernel.org/5.11.5-040-iommu-Don-t-use-lazy-flush-for-untrusted-devic.patch
|
||||
patches.kernel.org/5.11.5-041-iommu-vt-d-Fix-status-code-for-Allocate-Free-P.patch
|
||||
patches.kernel.org/5.11.5-042-btrfs-zoned-use-sector_t-for-zone-sectors.patch
|
||||
patches.kernel.org/5.11.5-043-tomoyo-recognize-kernel-threads-correctly.patch
|
||||
patches.kernel.org/5.11.5-044-r8169-fix-resuming-from-suspend-on-RTL8105e-if.patch
|
||||
patches.kernel.org/5.11.5-045-Linux-5.11.5.patch
|
||||
|
||||
########################################################
|
||||
# Build fixes that apply to the vanilla kernel too.
|
||||
@ -937,7 +982,6 @@
|
||||
# and patched flavors.
|
||||
########################################################
|
||||
patches.rpmify/Add-ksym-provides-tool.patch
|
||||
patches.rpmify/Kconfig-make-CONFIG_CC_CAN_LINK-always-true.patch
|
||||
patches.rpmify/Revert-kconfig-only-write-CONFIG_FOO-is-not-set-for-.patch
|
||||
patches.rpmify/scripts-mkmakefile-honor-second-argument.patch
|
||||
patches.rpmify/kbuild-dummy-tools-fix-inverted-tests-for-gcc.patch
|
||||
@ -957,7 +1001,8 @@
|
||||
########################################################
|
||||
patches.suse/media-dvb-usb-Fix-memory-leak-at-error-in-dvb_usb_de.patch
|
||||
patches.suse/media-dvb-usb-Fix-use-after-free-access.patch
|
||||
patches.suse/ALSA-usb-audio-Fix-Pioneer-DJM-devices-URB_CONTROL-r.patch
|
||||
patches.suse/ALSA-usb-Add-Plantronics-C320-M-USB-ctrl-msg-delay-q.patch
|
||||
patches.suse/ALSA-usb-audio-Apply-the-control-quirk-to-Plantronic.patch
|
||||
|
||||
########################################################
|
||||
# kbuild/module infrastructure fixes
|
||||
|
@ -1,3 +1,3 @@
|
||||
2021-03-08 07:09:52 +0000
|
||||
GIT Revision: e8f7993c7b5104c42a98613e0ba9779bbb75b44b
|
||||
2021-03-10 04:49:44 +0000
|
||||
GIT Revision: 84a32d6adbf5c833401867ce72eecaaea4aded55
|
||||
GIT Branch: stable
|
||||
|
Loading…
Reference in New Issue
Block a user