diff options
| author | Steven Whitehouse <[email protected]> | 2008-04-08 13:12:52 +0100 |
|---|---|---|
| committer | J. Bruce Fields <[email protected]> | 2008-04-23 16:13:42 -0400 |
| commit | 9078dc08143e23b18ea72e70265f0df920cf2998 (patch) | |
| tree | c83bfcc5bbfdf9d8bd23647aee77a11ab62f6faa /include/linux | |
| parent | ff7d9756b501744540be65e172d27ee321d86103 (diff) | |
Use a zero sized array for raw field in struct fid
The raw field's size can vary so we use a zero sized array since
gcc will not allow a variable sized array inside a union. This
has been tested with ext3 and gfs2 and relates to the bug
report: http://lkml.org/lkml/2007/10/24/374 and discussion
thread: http://lkml.org/lkml/2008/4/7/65
Signed-off-by: Steven Whitehouse <[email protected]>
Cc: Christoph Hellwig <[email protected]>
Cc: Neil Brown <[email protected]>
Cc: Adrian Bunk <[email protected]>
Signed-off-by: J. Bruce Fields <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/exportfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/exportfs.h b/include/linux/exportfs.h index adcbb05b120b..de8387b7ceb6 100644 --- a/include/linux/exportfs.h +++ b/include/linux/exportfs.h @@ -43,7 +43,7 @@ struct fid { u32 parent_ino; u32 parent_gen; } i32; - __u32 raw[6]; + __u32 raw[0]; }; }; |