mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-23 04:04:26 +08:00
freevxfs: Replace one-element array with flexible array member
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> Link: https://lore.kernel.org/r/20241103121707.102838-3-thorsten.blum@linux.dev Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
cb80d9074f
commit
fdfa4c02e6
@ -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 */
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user