groups: use flexible-array member in struct group_info
authorHubert Jasudowicz <hubert.jasudowicz@gmail.com>
Fri, 26 Feb 2021 01:21:03 +0000 (17:21 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 26 Feb 2021 17:41:03 +0000 (09:41 -0800)
Replace zero-size array with flexible array member, as recommended by
the docs.

Link: https://lkml.kernel.org/r/155995eed35c3c1bdcc56e69d8997c8e4c46740a.1611620846.git.hubert.jasudowicz@gmail.com
Signed-off-by: Hubert Jasudowicz <hubert.jasudowicz@gmail.com>
Cc: "Peter Zijlstra (Intel)" <peterz@infradead.org>
Cc: Micah Morton <mortonm@chromium.org>
Cc: Gao Xiang <xiang@kernel.org>
Cc: Michael Kelley <mikelley@microsoft.com>
Cc: Thomas Cedeno <thomascedeno@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/linux/cred.h

index 18639c0..4c63505 100644 (file)
@@ -25,7 +25,7 @@ struct inode;
 struct group_info {
        atomic_t        usage;
        int             ngroups;
-       kgid_t          gid[0];
+       kgid_t          gid[];
 } __randomize_layout;
 
 /**