Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

xen: Replace one-element array with flexible-array member

One-element arrays are deprecated, and we are replacing them with flexible
array members instead. So, replace one-element array with flexible-array
member in struct xen_page_directory.

This helps with the ongoing efforts to tighten the FORTIFY_SOURCE
routines on memcpy() and help us make progress towards globally
enabling -fstrict-flex-arrays=3 [1].

This results in no differences in binary output.

Link: https://github.com/KSPP/linux/issues/79
Link: https://github.com/KSPP/linux/issues/255
Link: https://gcc.gnu.org/pipermail/gcc-patches/2022-October/602902.html [1]
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
Reviewed-by: Juergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/Y9xjN6Wa3VslgXeX@work
Signed-off-by: Juergen Gross <jgross@suse.com>

authored by

Gustavo A. R. Silva and committed by
Juergen Gross
9a0450ad 2062f9fb

+1 -1
+1 -1
drivers/xen/xen-front-pgdir-shbuf.c
··· 30 30 struct xen_page_directory { 31 31 grant_ref_t gref_dir_next_page; 32 32 #define XEN_GREF_LIST_END 0 33 - grant_ref_t gref[1]; /* Variable length */ 33 + grant_ref_t gref[]; /* Variable length */ 34 34 }; 35 35 36 36 /**