All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] memcontrol: use flexible-array member
@ 2021-05-18  5:20 wenhuizhang
  2021-05-18  6:35 ` [External] " Muchun Song
  2021-05-18  8:08 ` Michal Hocko
  0 siblings, 2 replies; 4+ messages in thread
From: wenhuizhang @ 2021-05-18  5:20 UTC (permalink / raw)
  Cc: wenhui, Andrew Morton, Shakeel Butt, Johannes Weiner,
	Roman Gushchin, Michal Hocko, Muchun Song, Yang Shi, Alex Shi,
	Alexander Duyck, Wei Yang, linux-kernel


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.

https://www.kernel.org/doc/html/latest/processd/deprecated.html


Signed-off-by: wenhuizhang<wenhui@gwmail.gwu.edu>
---
 include/linux/memcontrol.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h
index 0ce97eff79e2..f879efb1bc6e 100644
--- a/include/linux/memcontrol.h
+++ b/include/linux/memcontrol.h
@@ -190,7 +190,7 @@ enum memcg_kmem_state {
 
 #if defined(CONFIG_SMP)
 struct memcg_padding {
-	char x[0];
+	char x[];
 } ____cacheline_internodealigned_in_smp;
 #define MEMCG_PADDING(name)      struct memcg_padding name;
 #else
@@ -349,7 +349,7 @@ struct mem_cgroup {
 	struct deferred_split deferred_split_queue;
 #endif
 
-	struct mem_cgroup_per_node *nodeinfo[0];
+	struct mem_cgroup_per_node *nodeinfo[];
 	/* WARNING: nodeinfo must be the last member here */
 };
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-05-18  8:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-18  5:20 [PATCH] memcontrol: use flexible-array member wenhuizhang
2021-05-18  6:35 ` [External] " Muchun Song
2021-05-18  8:08 ` Michal Hocko
2021-05-18  8:43   ` [External] " Muchun Song

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.