From: Greg Kroah-Hartman Date: Wed, 15 Nov 2023 19:01:42 +0000 (-0500) Subject: 4.19-stable patches X-Git-Tag: v4.14.330~25 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87c1cb1fd8697d9d4415f262ad334aa7b8ae3e28;p=thirdparty%2Fkernel%2Fstable-queue.git 4.19-stable patches added patches: revert-mmc-core-capture-correct-oemid-bits-for-emmc-cards.patch --- diff --git a/queue-4.19/revert-mmc-core-capture-correct-oemid-bits-for-emmc-cards.patch b/queue-4.19/revert-mmc-core-capture-correct-oemid-bits-for-emmc-cards.patch new file mode 100644 index 00000000000..30b18c7be6f --- /dev/null +++ b/queue-4.19/revert-mmc-core-capture-correct-oemid-bits-for-emmc-cards.patch @@ -0,0 +1,43 @@ +From 421b605edb1ce611dee06cf6fd9a1c1f2fd85ad0 Mon Sep 17 00:00:00 2001 +From: Dominique Martinet +Date: Fri, 3 Nov 2023 09:42:20 +0900 +Subject: Revert "mmc: core: Capture correct oemid-bits for eMMC cards" + +From: Dominique Martinet + +commit 421b605edb1ce611dee06cf6fd9a1c1f2fd85ad0 upstream. + +This reverts commit 84ee19bffc9306128cd0f1c650e89767079efeff. + +The commit above made quirks with an OEMID fail to be applied, as they +were checking card->cid.oemid for the full 16 bits defined in MMC_FIXUP +macros but the field would only contain the bottom 8 bits. + +eMMC v5.1A might have bogus values in OEMID's higher bits so another fix +will be made, but it has been decided to revert this until that is ready. + +Fixes: 84ee19bffc93 ("mmc: core: Capture correct oemid-bits for eMMC cards") +Link: https://lkml.kernel.org/r/ZToJsSLHr8RnuTHz@codewreck.org +Link: https://lkml.kernel.org/r/CAPDyKFqkKibcXnwjnhc3+W1iJBHLeqQ9BpcZrSwhW2u9K2oUtg@mail.gmail.com +Signed-off-by: Dominique Martinet +Cc: stable@vger.kernel.org +Cc: Alex Fetters +Reviewed-by: Avri Altman +Link: https://lore.kernel.org/r/20231103004220.1666641-1-asmadeus@codewreck.org +Signed-off-by: Ulf Hansson +Signed-off-by: Greg Kroah-Hartman +--- + drivers/mmc/core/mmc.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/drivers/mmc/core/mmc.c ++++ b/drivers/mmc/core/mmc.c +@@ -98,7 +98,7 @@ static int mmc_decode_cid(struct mmc_car + case 3: /* MMC v3.1 - v3.3 */ + case 4: /* MMC v4 */ + card->cid.manfid = UNSTUFF_BITS(resp, 120, 8); +- card->cid.oemid = UNSTUFF_BITS(resp, 104, 8); ++ card->cid.oemid = UNSTUFF_BITS(resp, 104, 16); + card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8); + card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8); + card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8); diff --git a/queue-4.19/series b/queue-4.19/series index 3491b5e4976..ce7a1825fbc 100644 --- a/queue-4.19/series +++ b/queue-4.19/series @@ -84,4 +84,5 @@ netfilter-xt_recent-fix-increase-ipv6-literal-buffer.patch fbdev-imsttfb-fix-error-path-of-imsttfb_probe.patch fbdev-imsttfb-fix-a-resource-leak-in-probe.patch fbdev-fsl-diu-fb-mark-wr_reg_wa-static.patch +revert-mmc-core-capture-correct-oemid-bits-for-emmc-cards.patch btrfs-use-u64-for-buffer-sizes-in-the-tree-search-io.patch