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.

Merge tag 'affs-6.11-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux

Pull affs updates from David Sterba:

- conversions of one-element arrays to flexible arrays

* tag 'affs-6.11-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux:
affs: struct slink_front: Replace 1-element array with flexible array
affs: struct affs_data_head: Replace 1-element array with flexible array
affs: struct affs_head: Replace 1-element array with flexible array

+3 -3
+3 -3
fs/affs/amigaffs.h
··· 80 80 __be32 spare1; 81 81 __be32 first_data; 82 82 __be32 checksum; 83 - __be32 table[1]; 83 + __be32 table[]; 84 84 }; 85 85 86 86 struct affs_tail { ··· 108 108 __be32 key; 109 109 __be32 spare1[3]; 110 110 __be32 checksum; 111 - u8 symname[1]; /* depends on block size */ 111 + u8 symname[]; /* depends on block size */ 112 112 }; 113 113 114 114 struct affs_data_head ··· 119 119 __be32 size; 120 120 __be32 next; 121 121 __be32 checksum; 122 - u8 data[1]; /* depends on block size */ 122 + u8 data[]; /* depends on block size */ 123 123 }; 124 124 125 125 /* Permission bits */