X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=include%2Fasm-sh%2Fstat.h;h=914e3fcbbd37bdacfd33121be517b2fd05374cb8;hb=987b0145d94eecf292d8b301228356f44611ab7c;hp=6c41a60657f191cf3856946c91abb367e0c7cf23;hpb=f7ed79d23a47594e7834d66a8f14449796d4f3e6;p=linux-2.6.git diff --git a/include/asm-sh/stat.h b/include/asm-sh/stat.h index 6c41a6065..914e3fcbb 100644 --- a/include/asm-sh/stat.h +++ b/include/asm-sh/stat.h @@ -60,7 +60,13 @@ struct stat64 { long long st_size; unsigned long st_blksize; - unsigned long long st_blocks; /* Number 512-byte blocks allocated. */ +#if defined(__BIG_ENDIAN__) + unsigned long __pad4; /* Future possible st_blocks hi bits */ + unsigned long st_blocks; /* Number 512-byte blocks allocated. */ +#else /* Must be little */ + unsigned long st_blocks; /* Number 512-byte blocks allocated. */ + unsigned long __pad4; /* Future possible st_blocks hi bits */ +#endif unsigned long st_atime; unsigned long st_atime_nsec;