From d1b6f8c7af0eb9a0a44b2d4723e58dde5eafa236 Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Thu, 23 Apr 2020 16:47:21 -0400 Subject: kernel-5.7.0-0.rc2.20200423git7adc4b399952.1 * Thu Apr 23 2020 CKI@GitLab [5.7.0-0.rc2.20200423git7adc4b399952.1] - 7adc4b399952 rebase - Match template format in kernel.spec.template ("Justin M. Forbes") - Break out the Patches into individual files for dist-git ("Justin M. Forbes") - Break the Red Hat patch into individual commits (Jeremy Cline) - Adjust module filtering so CONFIG_DRM_DP_CEC can be set (Jeremy Cline) - Add a script to generate release tags and branches (Jeremy Cline) - Set CONFIG_VDPA for fedora ("Justin M. Forbes") - Provide defaults in ark-rebase-patches.sh (Jeremy Cline) - Default ark-rebase-patches.sh to not report issues (Jeremy Cline) Resolves: rhbz# Signed-off-by: Jeremy Cline --- 0001-mptspi-Taint-kernel-if-mptspi-is-loaded.patch | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 0001-mptspi-Taint-kernel-if-mptspi-is-loaded.patch (limited to '0001-mptspi-Taint-kernel-if-mptspi-is-loaded.patch') diff --git a/0001-mptspi-Taint-kernel-if-mptspi-is-loaded.patch b/0001-mptspi-Taint-kernel-if-mptspi-is-loaded.patch new file mode 100644 index 000000000..d346699e1 --- /dev/null +++ b/0001-mptspi-Taint-kernel-if-mptspi-is-loaded.patch @@ -0,0 +1,51 @@ +From 1452b94264d571fe1675845b9947199539052275 Mon Sep 17 00:00:00 2001 +From: Laura Abbott +Date: Thu, 2 Jan 2020 14:24:48 -0500 +Subject: [PATCH] mptspi: Taint kernel if mptspi is loaded + +Author: Tomas Henzl +Date: Thu Jan 10 16:11:43 2019 -0500 + + [message] mptspi: Taint kernel if mptspi is loaded + + Message-id: <20190110161145.5117-2-thenzl@redhat.com> + Patchwork-id: 237188 + O-Subject: [RHEL-8.0 e-stor 1/3] mptspi: Taint kernel if mptspi is loaded + Bugzilla: 1651803 + RH-Acked-by: Maurizio Lombardi + RH-Acked-by: Jarod Wilson + RH-Acked-by: Chris Leech + + RHEL-only + We are only keeping it to ease developer transitions, we're not + supporting it, so mark it as unsupported by tainting the kernel and + issuing an impossible to misunderstand message to the log + + Signed-off-by: Herton R. Krzesinski + +Upstream Status: RHEL only +Signed-off-by: Laura Abbott +--- + drivers/message/fusion/mptspi.c | 6 ++++++ + 1 file changed, 6 insertions(+) + +diff --git a/drivers/message/fusion/mptspi.c b/drivers/message/fusion/mptspi.c +index eabc4de5816c..c028f5944694 100644 +--- a/drivers/message/fusion/mptspi.c ++++ b/drivers/message/fusion/mptspi.c +@@ -1534,6 +1534,12 @@ mptspi_probe(struct pci_dev *pdev, const struct pci_device_id *id) + 0, 0, 0, 0, 5); + + scsi_scan_host(sh); ++ ++#ifdef CONFIG_RHEL_DIFFERENCES ++ add_taint(TAINT_SUPPORT_REMOVED, LOCKDEP_STILL_OK); ++ pr_warn("MPTSPI MODULE IS NOT SUPPORTED\n"); ++#endif ++ + return 0; + + out_mptspi_probe: +-- +2.26.0 + -- cgit