]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
gcc-10 warnings: fix low-hanging fruit
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 4 May 2020 16:16:37 +0000 (09:16 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 May 2020 06:17:09 +0000 (08:17 +0200)
commit 9d82973e032e246ff5663c9805fbb5407ae932e3 upstream.

Due to a bug-report that was compiler-dependent, I updated one of my
machines to gcc-10.  That shows a lot of new warnings.  Happily they
seem to be mostly the valid kind, but it's going to cause a round of
churn for getting rid of them..

This is the really low-hanging fruit of removing a couple of zero-sized
arrays in some core code.  We have had a round of these patches before,
and we'll have many more coming, and there is nothing special about
these except that they were particularly trivial, and triggered more
warnings than most.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/fs.h
include/linux/tty.h

index a94642fcf93b6c500b0465e41c39b6685d7ee514..92b9cf88a95e68b344a41bae86f3423ed6928a86 100644 (file)
@@ -900,7 +900,7 @@ struct file_handle {
        __u32 handle_bytes;
        int handle_type;
        /* file identifier */
-       unsigned char f_handle[0];
+       unsigned char f_handle[];
 };
 
 static inline struct file *get_file(struct file *f)
index ead308e996c016960ad981d748df1f6aa8693c74..2f1b61d8b15187792dd2ced4cfc655266936f0fb 100644 (file)
@@ -65,7 +65,7 @@ struct tty_buffer {
        int read;
        int flags;
        /* Data points here */
-       unsigned long data[0];
+       unsigned long data[];
 };
 
 /* Values for .flags field of tty_buffer */