summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin M. Forbes <jforbes@fedoraproject.org>2022-02-11 10:04:32 -0600
committerJustin M. Forbes <jforbes@fedoraproject.org>2022-02-11 10:04:32 -0600
commit767ddbb52bd238ccdbc97484701fa3abebe6664d (patch)
treec58788fdfdd7f01b8df598a53a2c5ea811d4e0a7
parent216018fdf0a3842e98ace2acf70b3227e550ee04 (diff)
downloadkernel-767ddbb52bd238ccdbc97484701fa3abebe6664d.tar.gz
kernel-767ddbb52bd238ccdbc97484701fa3abebe6664d.tar.xz
kernel-767ddbb52bd238ccdbc97484701fa3abebe6664d.zip
kernel-5.16.9-0
* Fri Feb 11 2022 Justin M. Forbes <jforbes@fedoraproject.org> [5.16.9-0] - tipc: improve size validations for received domain records (Jon Maloy) Resolves: rhbz# Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
-rw-r--r--Patchlist.changelog3
-rwxr-xr-xkernel.spec15
-rw-r--r--patch-5.16-redhat.patch58
-rw-r--r--sources6
4 files changed, 17 insertions, 65 deletions
diff --git a/Patchlist.changelog b/Patchlist.changelog
index 4540c66c7..e962dc7ba 100644
--- a/Patchlist.changelog
+++ b/Patchlist.changelog
@@ -1,3 +1,6 @@
+https://gitlab.com/cki-project/kernel-ark/-/commit/ebcfc72287e1a1c6758e2d80776e8c797c14c14e
+ ebcfc72287e1a1c6758e2d80776e8c797c14c14e tipc: improve size validations for received domain records
+
https://gitlab.com/cki-project/kernel-ark/-/commit/f797526f9dc15ef9cbd53acc02e6ae5fcdf01cf8
f797526f9dc15ef9cbd53acc02e6ae5fcdf01cf8 drm/i915/psr: Disable PSR2 selective fetch for all TGL steps
diff --git a/kernel.spec b/kernel.spec
index 74698e341..f8aae27f5 100755
--- a/kernel.spec
+++ b/kernel.spec
@@ -130,7 +130,7 @@ Summary: The Linux kernel
# The kernel tarball/base version
%define kversion 5.16
-%define rpmversion 5.16.8
+%define rpmversion 5.16.9
%define patchversion 5.16
%define pkgrelease 100
@@ -692,7 +692,7 @@ BuildRequires: lld
# exact git commit you can run
#
# xzcat -qq ${TARBALL} | git get-tar-commit-id
-Source0: linux-5.16.8.tar.xz
+Source0: linux-5.16.9.tar.xz
Source1: Makefile.rhelver
@@ -1386,8 +1386,8 @@ ApplyOptionalPatch()
fi
}
-%setup -q -n kernel-5.16.8 -c
-mv linux-5.16.8 linux-%{KVERREL}
+%setup -q -n kernel-5.16.9 -c
+mv linux-5.16.9 linux-%{KVERREL}
cd linux-%{KVERREL}
cp -a %{SOURCE1} .
@@ -2986,10 +2986,13 @@ fi
#
#
%changelog
-* Tue Feb 08 2022 Justin M. Forbes <jforbes@fedoraproject.org> [5.16.8-100]
-- v5.16.8 rebase
+* Fri Feb 11 2022 Justin M. Forbes <jforbes@fedoraproject.org> [5.16.9-0]
+- tipc: improve size validations for received domain records (Jon Maloy)
+
+* Tue Feb 08 2022 Justin M. Forbes <jforbes@fedoraproject.org> [5.16.8-0]
- drm/i915/psr: Disable PSR2 selective fetch for all TGL steps (Lyude Paul)
- Set a value for CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION coming in with 5.16.8 (Justin M. Forbes)
+- ath11k: add support for WCN6855 hw2.1 (Baochen Qiang)
- ata: libata-core: Fix ata_dev_config_cpr() (Damien Le Moal)
- Fix up Changelog for 5.16.7 (Justin M. Forbes)
diff --git a/patch-5.16-redhat.patch b/patch-5.16-redhat.patch
index 30683c666..a748eeaa2 100644
--- a/patch-5.16-redhat.patch
+++ b/patch-5.16-redhat.patch
@@ -11,7 +11,6 @@
drivers/acpi/irq.c | 17 ++-
drivers/acpi/scan.c | 9 ++
drivers/ata/libahci.c | 18 +++
- drivers/ata/libata-core.c | 14 +--
drivers/char/ipmi/ipmi_dmi.c | 15 +++
drivers/char/ipmi/ipmi_msghandler.c | 16 ++-
drivers/char/random.c | 115 +++++++++++++++++++
@@ -32,7 +31,6 @@
drivers/nvme/host/nvme.h | 4 +
drivers/pci/quirks.c | 24 ++++
drivers/usb/core/hub.c | 7 ++
- include/linux/ata.h | 2 +-
include/linux/efi.h | 22 ++--
include/linux/lsm_hook_defs.h | 2 +
include/linux/lsm_hooks.h | 6 +
@@ -49,10 +47,10 @@
security/lockdown/lockdown.c | 1 +
security/security.c | 6 +
tools/testing/selftests/netfilter/nft_nat.sh | 5 +-
- 51 files changed, 827 insertions(+), 205 deletions(-)
+ 49 files changed, 820 insertions(+), 196 deletions(-)
diff --git a/Makefile b/Makefile
-index 0cbab4df51b9..aff665749e8b 100644
+index 1f32bb42f328..592f45010531 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,10 @@ $(if $(filter __%, $(MAKECMDGOALS)), \
@@ -448,40 +446,6 @@ index f76b8418e6fb..350e52fccc30 100644
/* wait for engine to stop. This could be as long as 500 msec */
tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
-diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
-index 1cdf8cfcc31b..94bc5dbb31e1 100644
---- a/drivers/ata/libata-core.c
-+++ b/drivers/ata/libata-core.c
-@@ -2486,23 +2486,21 @@ static void ata_dev_config_cpr(struct ata_device *dev)
- struct ata_cpr_log *cpr_log = NULL;
- u8 *desc, *buf = NULL;
-
-- if (!ata_identify_page_supported(dev,
-- ATA_LOG_CONCURRENT_POSITIONING_RANGES))
-+ if (ata_id_major_version(dev->id) < 11 ||
-+ !ata_log_supported(dev, ATA_LOG_CONCURRENT_POSITIONING_RANGES))
- goto out;
-
- /*
-- * Read IDENTIFY DEVICE data log, page 0x47
-- * (concurrent positioning ranges). We can have at most 255 32B range
-- * descriptors plus a 64B header.
-+ * Read the concurrent positioning ranges log (0x47). We can have at
-+ * most 255 32B range descriptors plus a 64B header.
- */
- buf_len = (64 + 255 * 32 + 511) & ~511;
- buf = kzalloc(buf_len, GFP_KERNEL);
- if (!buf)
- goto out;
-
-- err_mask = ata_read_log_page(dev, ATA_LOG_IDENTIFY_DEVICE,
-- ATA_LOG_CONCURRENT_POSITIONING_RANGES,
-- buf, buf_len >> 9);
-+ err_mask = ata_read_log_page(dev, ATA_LOG_CONCURRENT_POSITIONING_RANGES,
-+ 0, buf, buf_len >> 9);
- if (err_mask)
- goto out;
-
diff --git a/drivers/char/ipmi/ipmi_dmi.c b/drivers/char/ipmi/ipmi_dmi.c
index bbf7029e224b..cf7faa970dd6 100644
--- a/drivers/char/ipmi/ipmi_dmi.c
@@ -1643,24 +1607,6 @@ index ac6c5ccfe1cb..ec784479eece 100644
/* Lock the device, then check to see if we were
* disconnected while waiting for the lock to succeed. */
usb_lock_device(hdev);
-diff --git a/include/linux/ata.h b/include/linux/ata.h
-index 199e47e97d64..21292b5bbb55 100644
---- a/include/linux/ata.h
-+++ b/include/linux/ata.h
-@@ -324,12 +324,12 @@ enum {
- ATA_LOG_NCQ_NON_DATA = 0x12,
- ATA_LOG_NCQ_SEND_RECV = 0x13,
- ATA_LOG_IDENTIFY_DEVICE = 0x30,
-+ ATA_LOG_CONCURRENT_POSITIONING_RANGES = 0x47,
-
- /* Identify device log pages: */
- ATA_LOG_SECURITY = 0x06,
- ATA_LOG_SATA_SETTINGS = 0x08,
- ATA_LOG_ZONED_INFORMATION = 0x09,
-- ATA_LOG_CONCURRENT_POSITIONING_RANGES = 0x47,
-
- /* Identify device SATA settings log:*/
- ATA_LOG_DEVSLP_OFFSET = 0x30,
diff --git a/include/linux/efi.h b/include/linux/efi.h
index ef8dbc0a1522..836a5dfc6156 100644
--- a/include/linux/efi.h
diff --git a/sources b/sources
index 9aa6158e6..d0d7a49a6 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
-SHA512 (linux-5.16.8.tar.xz) = 46ba28f1a85abd4704cad4fb3d0030a94993d77599e2aaefd961c5b2a72498146dd75bc1c859684528e86d67aaa6f600a18129a5d5691b5d8e52392d0e878236
-SHA512 (kernel-abi-stablelists-5.16.8-100.tar.bz2) = 8d05b5d113c2a6d2f29e1060bfe2fe276b4e8ef3ecf1c92a7539e6a42118803d8c2de82fac581fef8a4818b97d4e11dceb03ccf69881db259df4dde8bb287583
-SHA512 (kernel-kabi-dw-5.16.8-100.tar.bz2) = 04b9e21e76364fc7342549dd8cf374f34e43bb3d36b0792662636d2a37c499d7ee15a0170768744bdddd3d0bc30d349705cff7fa6e568977ea4117ac414e3cfb
+SHA512 (linux-5.16.9.tar.xz) = 6e09a51817922ac552af008fbf072ba6a6974ff990f2e2105f34e291f7dbca103975f9d75c3d455f482890ebdfba15b8c7bf14a8f22b26b4690e5c80ffb76cb9
+SHA512 (kernel-abi-stablelists-5.16.9-100.tar.bz2) = 2315a701780324fea94606bc257c424718285b6fa227b18ac9247f451fdb00cc5640f8837fb478b5e13f381697ddef6c241fbd314c47ab6750126d697b08304d
+SHA512 (kernel-kabi-dw-5.16.9-100.tar.bz2) = cfc68b2457ccd7deec9c329dbe3f49d06f539e409ac410ee360efc86378663f38ea01f52a6a6928d29f4474c4b632f3fad737256b2fde3c19cb62b8688e0fdaa