The patch titled Subject: memcontrol: use flexible-array member has been added to the -mm tree. Its filename is memcontrol-use-flexible-array-member.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/memcontrol-use-flexible-array-member.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/memcontrol-use-flexible-array-member.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: wenhuizhang <wenhui@xxxxxxxxxxxxxx> Subject: memcontrol: use flexible-array member Change depracated zero-length-and-one-element-arrays into flexible array member.Zero-length and one-element arrays detected by Lukas's CodeChecker. Zero/one element arrays causes undefined behaviours if sizeof() used. Link: https://lkml.kernel.org/r/20210518200910.29912-1-wenhui@xxxxxxxxxxxxxx Signed-off-by: wenhuizhang <wenhui@xxxxxxxxxxxxxx> Cc: Shakeel Butt <shakeelb@xxxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Roman Gushchin <guro@xxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxx> Cc: Muchun Song <songmuchun@xxxxxxxxxxxxx> Cc: Yang Shi <shy828301@xxxxxxxxx> Cc: Alex Shi <alexs@xxxxxxxxxx> Cc: Alexander Duyck <alexander.h.duyck@xxxxxxxxxxxxxxx> Cc: Wei Yang <richard.weiyang@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/memcontrol.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/include/linux/memcontrol.h~memcontrol-use-flexible-array-member +++ a/include/linux/memcontrol.h @@ -349,8 +349,7 @@ struct mem_cgroup { struct deferred_split deferred_split_queue; #endif - struct mem_cgroup_per_node *nodeinfo[0]; - /* WARNING: nodeinfo must be the last member here */ + struct mem_cgroup_per_node *nodeinfo[]; }; /* _ Patches currently in -mm which might be from wenhui@xxxxxxxxxxxxxx are memcontrol-use-flexible-array-member.patch