Commit 17af691c authored by Russell King's avatar Russell King Committed by Russell King

[PATCH] ARM: Fix new-ABI layout of struct stat64

Add __attribute__((packed)) to ensure that the stat64 structure is
correctly laid out no matter which ABI the kernel is compiled for.
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 68070bde
...@@ -89,6 +89,6 @@ struct stat64 { ...@@ -89,6 +89,6 @@ struct stat64 {
unsigned long st_ctime_nsec; unsigned long st_ctime_nsec;
unsigned long long st_ino; unsigned long long st_ino;
}; } __attribute__((packed));
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment