commit: be31e4638d5908314133dadaa3a820b88d43af60 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org> AuthorDate: Fri Jul 15 10:03:43 2022 +0000 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org> CommitDate: Fri Jul 15 10:03:55 2022 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=be31e463
Linux patch 5.4.206 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org> 0000_README | 4 ++++ 1205_linux-5.4.206.patch | 26 ++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/0000_README b/0000_README index cac94e7b..c650ad74 100644 --- a/0000_README +++ b/0000_README @@ -863,6 +863,10 @@ Patch: 1204_linux-5.4.205.patch From: http://www.kernel.org Desc: Linux 5.4.205 +Patch: 1205_linux-5.4.206.patch +From: http://www.kernel.org +Desc: Linux 5.4.206 + Patch: 1500_XATTR_USER_PREFIX.patch From: https://bugs.gentoo.org/show_bug.cgi?id=470644 Desc: Support for namespace user.pax.* on tmpfs. diff --git a/1205_linux-5.4.206.patch b/1205_linux-5.4.206.patch new file mode 100644 index 00000000..df5e318c --- /dev/null +++ b/1205_linux-5.4.206.patch @@ -0,0 +1,26 @@ +diff --git a/Makefile b/Makefile +index c40565492ffba..755123455105f 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: GPL-2.0 + VERSION = 5 + PATCHLEVEL = 4 +-SUBLEVEL = 205 ++SUBLEVEL = 206 + EXTRAVERSION = + NAME = Kleptomaniac Octopus + +diff --git a/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c b/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c +index 41f7dd58bdcf8..02218c3b548f9 100644 +--- a/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c ++++ b/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c +@@ -682,7 +682,7 @@ static void gpmi_nfc_compute_timings(struct gpmi_nand_data *this, + hw->timing0 = BF_GPMI_TIMING0_ADDRESS_SETUP(addr_setup_cycles) | + BF_GPMI_TIMING0_DATA_HOLD(data_hold_cycles) | + BF_GPMI_TIMING0_DATA_SETUP(data_setup_cycles); +- hw->timing1 = BF_GPMI_TIMING1_BUSY_TIMEOUT(DIV_ROUND_UP(busy_timeout_cycles, 4096)); ++ hw->timing1 = BF_GPMI_TIMING1_BUSY_TIMEOUT(busy_timeout_cycles * 4096); + + /* + * Derive NFC ideal delay from {3}:
