public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] freevxfs: Replace one-element array with flexible array member
@ 2024-11-03 12:17 Thorsten Blum
  2024-11-05 11:23 ` Christoph Hellwig
  2024-11-06  9:42 ` Christian Brauner
  0 siblings, 2 replies; 5+ messages in thread
From: Thorsten Blum @ 2024-11-03 12:17 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: linux-hardening, Thorsten Blum, linux-kernel

Replace the deprecated one-element array with a modern flexible array
member in the struct vxfs_dirblk.

Link: https://github.com/KSPP/linux/issues/79
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
 fs/freevxfs/vxfs_dir.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/freevxfs/vxfs_dir.h b/fs/freevxfs/vxfs_dir.h
index fbcd603365ad..8c67627f2a3d 100644
--- a/fs/freevxfs/vxfs_dir.h
+++ b/fs/freevxfs/vxfs_dir.h
@@ -25,7 +25,7 @@
 struct vxfs_dirblk {
 	__fs16		d_free;		/* free space in dirblock */
 	__fs16		d_nhash;	/* no of hash chains */
-	__fs16		d_hash[1];	/* hash chain */
+	__fs16		d_hash[];	/* hash chain */
 };
 
 /*
-- 
2.47.0


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

end of thread, other threads:[~2024-11-06  9:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-03 12:17 [PATCH] freevxfs: Replace one-element array with flexible array member Thorsten Blum
2024-11-05 11:23 ` Christoph Hellwig
2024-11-05 18:53   ` Andrew Morton
2024-11-06  5:25     ` Christoph Hellwig
2024-11-06  9:42 ` Christian Brauner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox