summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorAlexander Viro <viro@www.linux.org.uk>2004-09-21 18:32:10 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-09-21 18:32:10 -0700
commit31cb962ed8d685f76c5f70ee349b63b87f522af8 (patch)
tree49cce03b9bbd991c936ef7438c5f8342a5dfa31e /include/linux
parent211b9c02a2879e81a3ece16519e6957b6d7adeeb (diff)
[PATCH] sysvfs endianness annotations and bugfixes
missing fs32_to_cpu() for on-disk ->s_type. Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/sysv_fs.h131
1 files changed, 68 insertions, 63 deletions
diff --git a/include/linux/sysv_fs.h b/include/linux/sysv_fs.h
index 4159f32c42dd..e0248631e461 100644
--- a/include/linux/sysv_fs.h
+++ b/include/linux/sysv_fs.h
@@ -8,13 +8,18 @@
#endif
+#ifndef __KERNEL__
+typedef u16 __fs16;
+typedef u32 __fs16;
+#endif
+
/* inode numbers are 16 bit */
-typedef u16 sysv_ino_t;
+typedef __fs16 sysv_ino_t;
/* Block numbers are 24 bit, sometimes stored in 32 bit.
On Coherent FS, they are always stored in PDP-11 manner: the least
significant 16 bits come last. */
-typedef u32 sysv_zone_t;
+typedef __fs32 sysv_zone_t;
/* 0 is non-existent */
#define SYSV_BADBL_INO 1 /* inode of bad blocks file */
@@ -25,29 +30,29 @@ typedef u32 sysv_zone_t;
#define XENIX_NICINOD 100 /* number of inode cache entries */
#define XENIX_NICFREE 100 /* number of free block list chunk entries */
struct xenix_super_block {
- u16 s_isize; /* index of first data zone */
- u32 s_fsize __packed2__; /* total number of zones of this fs */
+ __fs16 s_isize; /* index of first data zone */
+ __fs32 s_fsize __packed2__; /* total number of zones of this fs */
/* the start of the free block list: */
- u16 s_nfree; /* number of free blocks in s_free, <= XENIX_NICFREE */
- u32 s_free[XENIX_NICFREE]; /* first free block list chunk */
+ __fs16 s_nfree; /* number of free blocks in s_free, <= XENIX_NICFREE */
+ sysv_zone_t s_free[XENIX_NICFREE]; /* first free block list chunk */
/* the cache of free inodes: */
- u16 s_ninode; /* number of free inodes in s_inode, <= XENIX_NICINOD */
+ __fs16 s_ninode; /* number of free inodes in s_inode, <= XENIX_NICINOD */
sysv_ino_t s_inode[XENIX_NICINOD]; /* some free inodes */
/* locks, not used by Linux: */
char s_flock; /* lock during free block list manipulation */
char s_ilock; /* lock during inode cache manipulation */
char s_fmod; /* super-block modified flag */
char s_ronly; /* flag whether fs is mounted read-only */
- u32 s_time __packed2__; /* time of last super block update */
- u32 s_tfree __packed2__; /* total number of free zones */
- u16 s_tinode; /* total number of free inodes */
- s16 s_dinfo[4]; /* device information ?? */
+ __fs32 s_time __packed2__; /* time of last super block update */
+ __fs32 s_tfree __packed2__; /* total number of free zones */
+ __fs16 s_tinode; /* total number of free inodes */
+ __fs16 s_dinfo[4]; /* device information ?? */
char s_fname[6]; /* file system volume name */
char s_fpack[6]; /* file system pack name */
char s_clean; /* set to 0x46 when filesystem is properly unmounted */
char s_fill[371];
s32 s_magic; /* version of file system */
- s32 s_type; /* type of file system: 1 for 512 byte blocks
+ __fs32 s_type; /* type of file system: 1 for 512 byte blocks
2 for 1024 byte blocks
3 for 2048 byte blocks */
@@ -63,15 +68,15 @@ struct xenix_super_block {
/* SystemV4 super-block data on disk */
struct sysv4_super_block {
- u16 s_isize; /* index of first data zone */
+ __fs16 s_isize; /* index of first data zone */
u16 s_pad0;
- u32 s_fsize; /* total number of zones of this fs */
+ __fs32 s_fsize; /* total number of zones of this fs */
/* the start of the free block list: */
- u16 s_nfree; /* number of free blocks in s_free, <= SYSV_NICFREE */
+ __fs16 s_nfree; /* number of free blocks in s_free, <= SYSV_NICFREE */
u16 s_pad1;
- u32 s_free[SYSV_NICFREE]; /* first free block list chunk */
+ sysv_zone_t s_free[SYSV_NICFREE]; /* first free block list chunk */
/* the cache of free inodes: */
- u16 s_ninode; /* number of free inodes in s_inode, <= SYSV_NICINOD */
+ __fs16 s_ninode; /* number of free inodes in s_inode, <= SYSV_NICINOD */
u16 s_pad2;
sysv_ino_t s_inode[SYSV_NICINOD]; /* some free inodes */
/* locks, not used by Linux: */
@@ -79,45 +84,45 @@ struct sysv4_super_block {
char s_ilock; /* lock during inode cache manipulation */
char s_fmod; /* super-block modified flag */
char s_ronly; /* flag whether fs is mounted read-only */
- u32 s_time; /* time of last super block update */
- s16 s_dinfo[4]; /* device information ?? */
- u32 s_tfree; /* total number of free zones */
- u16 s_tinode; /* total number of free inodes */
+ __fs32 s_time; /* time of last super block update */
+ __fs16 s_dinfo[4]; /* device information ?? */
+ __fs32 s_tfree; /* total number of free zones */
+ __fs16 s_tinode; /* total number of free inodes */
u16 s_pad3;
char s_fname[6]; /* file system volume name */
char s_fpack[6]; /* file system pack name */
s32 s_fill[12];
- s32 s_state; /* file system state: 0x7c269d38-s_time means clean */
+ __fs32 s_state; /* file system state: 0x7c269d38-s_time means clean */
s32 s_magic; /* version of file system */
- s32 s_type; /* type of file system: 1 for 512 byte blocks
+ __fs32 s_type; /* type of file system: 1 for 512 byte blocks
2 for 1024 byte blocks */
};
/* SystemV2 super-block data on disk */
struct sysv2_super_block {
- u16 s_isize; /* index of first data zone */
- u32 s_fsize __packed2__; /* total number of zones of this fs */
+ __fs16 s_isize; /* index of first data zone */
+ __fs32 s_fsize __packed2__; /* total number of zones of this fs */
/* the start of the free block list: */
- u16 s_nfree; /* number of free blocks in s_free, <= SYSV_NICFREE */
- u32 s_free[SYSV_NICFREE]; /* first free block list chunk */
+ __fs16 s_nfree; /* number of free blocks in s_free, <= SYSV_NICFREE */
+ sysv_zone_t s_free[SYSV_NICFREE]; /* first free block list chunk */
/* the cache of free inodes: */
- u16 s_ninode; /* number of free inodes in s_inode, <= SYSV_NICINOD */
+ __fs16 s_ninode; /* number of free inodes in s_inode, <= SYSV_NICINOD */
sysv_ino_t s_inode[SYSV_NICINOD]; /* some free inodes */
/* locks, not used by Linux: */
char s_flock; /* lock during free block list manipulation */
char s_ilock; /* lock during inode cache manipulation */
char s_fmod; /* super-block modified flag */
char s_ronly; /* flag whether fs is mounted read-only */
- u32 s_time __packed2__; /* time of last super block update */
- s16 s_dinfo[4]; /* device information ?? */
- u32 s_tfree __packed2__; /* total number of free zones */
- u16 s_tinode; /* total number of free inodes */
+ __fs32 s_time __packed2__; /* time of last super block update */
+ __fs16 s_dinfo[4]; /* device information ?? */
+ __fs32 s_tfree __packed2__; /* total number of free zones */
+ __fs16 s_tinode; /* total number of free inodes */
char s_fname[6]; /* file system volume name */
char s_fpack[6]; /* file system pack name */
s32 s_fill[14];
- s32 s_state; /* file system state: 0xcb096f43 means clean */
+ __fs32 s_state; /* file system state: 0xcb096f43 means clean */
s32 s_magic; /* version of file system */
- s32 s_type; /* type of file system: 1 for 512 byte blocks
+ __fs32 s_type; /* type of file system: 1 for 512 byte blocks
2 for 1024 byte blocks */
};
@@ -125,25 +130,25 @@ struct sysv2_super_block {
#define V7_NICINOD 100 /* number of inode cache entries */
#define V7_NICFREE 50 /* number of free block list chunk entries */
struct v7_super_block {
- u16 s_isize; /* index of first data zone */
- u32 s_fsize __packed2__; /* total number of zones of this fs */
+ __fs16 s_isize; /* index of first data zone */
+ __fs32 s_fsize __packed2__; /* total number of zones of this fs */
/* the start of the free block list: */
- u16 s_nfree; /* number of free blocks in s_free, <= V7_NICFREE */
- u32 s_free[V7_NICFREE]; /* first free block list chunk */
+ __fs16 s_nfree; /* number of free blocks in s_free, <= V7_NICFREE */
+ sysv_zone_t s_free[V7_NICFREE]; /* first free block list chunk */
/* the cache of free inodes: */
- u16 s_ninode; /* number of free inodes in s_inode, <= V7_NICINOD */
+ __fs16 s_ninode; /* number of free inodes in s_inode, <= V7_NICINOD */
sysv_ino_t s_inode[V7_NICINOD]; /* some free inodes */
/* locks, not used by Linux or V7: */
char s_flock; /* lock during free block list manipulation */
char s_ilock; /* lock during inode cache manipulation */
char s_fmod; /* super-block modified flag */
char s_ronly; /* flag whether fs is mounted read-only */
- u32 s_time __packed2__; /* time of last super block update */
+ __fs32 s_time __packed2__; /* time of last super block update */
/* the following fields are not maintained by V7: */
- u32 s_tfree __packed2__; /* total number of free zones */
- u16 s_tinode; /* total number of free inodes */
- u16 s_m; /* interleave factor */
- u16 s_n; /* interleave factor */
+ __fs32 s_tfree __packed2__; /* total number of free zones */
+ __fs16 s_tinode; /* total number of free inodes */
+ __fs16 s_m; /* interleave factor */
+ __fs16 s_n; /* interleave factor */
char s_fname[6]; /* file system name */
char s_fpack[6]; /* file system pack name */
};
@@ -152,41 +157,41 @@ struct v7_super_block {
#define COH_NICINOD 100 /* number of inode cache entries */
#define COH_NICFREE 64 /* number of free block list chunk entries */
struct coh_super_block {
- u16 s_isize; /* index of first data zone */
- u32 s_fsize __packed2__; /* total number of zones of this fs */
+ __fs16 s_isize; /* index of first data zone */
+ __fs32 s_fsize __packed2__; /* total number of zones of this fs */
/* the start of the free block list: */
- u16 s_nfree; /* number of free blocks in s_free, <= COH_NICFREE */
- u32 s_free[COH_NICFREE] __packed2__; /* first free block list chunk */
+ __fs16 s_nfree; /* number of free blocks in s_free, <= COH_NICFREE */
+ sysv_zone_t s_free[COH_NICFREE] __packed2__; /* first free block list chunk */
/* the cache of free inodes: */
- u16 s_ninode; /* number of free inodes in s_inode, <= COH_NICINOD */
+ __fs16 s_ninode; /* number of free inodes in s_inode, <= COH_NICINOD */
sysv_ino_t s_inode[COH_NICINOD]; /* some free inodes */
/* locks, not used by Linux: */
char s_flock; /* lock during free block list manipulation */
char s_ilock; /* lock during inode cache manipulation */
char s_fmod; /* super-block modified flag */
char s_ronly; /* flag whether fs is mounted read-only */
- u32 s_time __packed2__; /* time of last super block update */
- u32 s_tfree __packed2__; /* total number of free zones */
- u16 s_tinode; /* total number of free inodes */
- u16 s_interleave_m; /* interleave factor */
- u16 s_interleave_n;
+ __fs32 s_time __packed2__; /* time of last super block update */
+ __fs32 s_tfree __packed2__; /* total number of free zones */
+ __fs16 s_tinode; /* total number of free inodes */
+ __fs16 s_interleave_m; /* interleave factor */
+ __fs16 s_interleave_n;
char s_fname[6]; /* file system volume name */
char s_fpack[6]; /* file system pack name */
- u32 s_unique; /* zero, not used */
+ __fs32 s_unique; /* zero, not used */
};
/* SystemV/Coherent inode data on disk */
struct sysv_inode {
- u16 i_mode;
- u16 i_nlink;
- u16 i_uid;
- u16 i_gid;
- u32 i_size;
+ __fs16 i_mode;
+ __fs16 i_nlink;
+ __fs16 i_uid;
+ __fs16 i_gid;
+ __fs32 i_size;
u8 i_data[3*(10+1+1+1)];
u8 i_gen;
- u32 i_atime; /* time of last access */
- u32 i_mtime; /* time of last modification */
- u32 i_ctime; /* time of creation */
+ __fs32 i_atime; /* time of last access */
+ __fs32 i_mtime; /* time of last modification */
+ __fs32 i_ctime; /* time of creation */
};
/* SystemV/Coherent directory entry on disk */