]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
drop md patch from 4.19 queue that was not applying
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 May 2019 09:40:29 +0000 (11:40 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 May 2019 09:40:29 +0000 (11:40 +0200)
queue-4.19/md-add-a-missing-endianness-conversion-in-check_sb_changes.patch [deleted file]
queue-4.19/series

diff --git a/queue-4.19/md-add-a-missing-endianness-conversion-in-check_sb_changes.patch b/queue-4.19/md-add-a-missing-endianness-conversion-in-check_sb_changes.patch
deleted file mode 100644 (file)
index a1bdecb..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-From ed4d0a4ea11e19863952ac6a7cea3bbb27ccd452 Mon Sep 17 00:00:00 2001
-From: Christoph Hellwig <hch@lst.de>
-Date: Thu, 4 Apr 2019 18:56:10 +0200
-Subject: md: add a missing endianness conversion in check_sb_changes
-
-From: Christoph Hellwig <hch@lst.de>
-
-commit ed4d0a4ea11e19863952ac6a7cea3bbb27ccd452 upstream.
-
-The on-disk value is little endian and we need to convert it to
-native endian before storing the value in the in-core structure.
-
-Fixes: 7564beda19b36 ("md-cluster/raid10: support add disk under grow mode")
-Cc: <stable@vger.kernel.org> # 4.20+
-Acked-by: Guoqing Jiang <gqjiang@suse.com>
-Signed-off-by: Christoph Hellwig <hch@lst.de>
-Signed-off-by: Song Liu <songliubraving@fb.com>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-
-diff --git a/drivers/md/md.c b/drivers/md/md.c
-index 664b77ceaf2d..a15eb7e37c6d 100644
---- a/drivers/md/md.c
-+++ b/drivers/md/md.c
-@@ -9227,7 +9227,7 @@ static void check_sb_changes(struct mddev *mddev, struct md_rdev *rdev)
-                * reshape is happening in the remote node, we need to
-                * update reshape_position and call start_reshape.
-                */
--              mddev->reshape_position = sb->reshape_position;
-+              mddev->reshape_position = le64_to_cpu(sb->reshape_position);
-               if (mddev->pers->update_reshape_pos)
-                       mddev->pers->update_reshape_pos(mddev);
-               if (mddev->pers->start_reshape)
index b6a730b44b67457a85492e4b2d4ea19f26852738..f3637051581ca45c4bfba231ffd5f5b7aff8da3d 100644 (file)
@@ -48,4 +48,3 @@ fuse-honor-rlimit_fsize-in-fuse_file_fallocate.patch
 ovl-fix-missing-upper-fs-freeze-protection-on-copy-up-for-ioctl.patch
 iommu-tegra-smmu-fix-invalid-asid-bits-on-tegra30-114.patch
 ceph-flush-dirty-inodes-before-proceeding-with-remount.patch
-md-add-a-missing-endianness-conversion-in-check_sb_changes.patch