Revert "md: change mddev 'chunk_sectors' from int to unsigned"
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 Dec 2020 16:48:11 +0000 (17:48 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 Dec 2020 18:33:01 +0000 (19:33 +0100)
This reverts commit 6ffeb1c3f8226244c08105bcdbeecc04bad6b89a.

It causes problems :(

Reported-by: Dave Jones <davej@codemonkey.org.uk>
Reported-by: Mike Snitzer <snitzer@redhat.com>
Cc: Song Liu <songliubraving@fb.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Linus Torvalds <torvalds@linux-foundation.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/md/md.h

index bb645bc3ba6d6b42ec9a38ce0432459f173c7e6f..2175a5ac4f7c6891239c7b2292b996489deb0f93 100644 (file)
@@ -311,7 +311,7 @@ struct mddev {
        int                             external;       /* metadata is
                                                         * managed externally */
        char                            metadata_type[17]; /* externally set*/
-       unsigned int                    chunk_sectors;
+       int                             chunk_sectors;
        time64_t                        ctime, utime;
        int                             level, layout;
        char                            clevel[16];
@@ -339,7 +339,7 @@ struct mddev {
         */
        sector_t                        reshape_position;
        int                             delta_disks, new_level, new_layout;
-       unsigned int                    new_chunk_sectors;
+       int                             new_chunk_sectors;
        int                             reshape_backwards;
 
        struct md_thread                *thread;        /* management thread */