diff options
author | Al Smith <Al.Smith@aeschi.ch.eu.org> | 1999-05-27 12:04:18 +0000 |
---|---|---|
committer | Al Smith <Al.Smith@aeschi.ch.eu.org> | 1999-05-27 12:04:18 +0000 |
commit | b61a0946e6223fd330f45aaf9d4f2e6d9bc83adb (patch) | |
tree | 67e9349cf3c5b38a15c56c2f54f6ed375c9fb3aa /include | |
parent | 6169897dfc815d9066084d84b7d6affab525686e (diff) |
EFS updated to 1.0b. See http://aeschi.ch.eu.org/efs/HISTORY
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/efs_fs.h | 2 | ||||
-rw-r--r-- | include/linux/efs_fs_i.h | 3 | ||||
-rw-r--r-- | include/linux/efs_fs_sb.h | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/efs_fs.h b/include/linux/efs_fs.h index 6ae6f620e..1e5fd23cd 100644 --- a/include/linux/efs_fs.h +++ b/include/linux/efs_fs.h @@ -9,7 +9,7 @@ #ifndef __EFS_FS_H__ #define __EFS_FS_H__ -#define EFS_VERSION "1.0" +#define EFS_VERSION "1.0b" static const char cprt[] = "EFS: "EFS_VERSION" - (c) 1999 Al Smith <Al.Smith@aeschi.ch.eu.org>"; diff --git a/include/linux/efs_fs_i.h b/include/linux/efs_fs_i.h index de55021ad..453d706ca 100644 --- a/include/linux/efs_fs_i.h +++ b/include/linux/efs_fs_i.h @@ -29,7 +29,8 @@ typedef union extent_u { typedef struct edevs { short odev; - unsigned int ndev; + short dev_filler; /* force ndev to start */ + unsigned int ndev; /* on a 32-bit boundary */ } efs_devs; /* diff --git a/include/linux/efs_fs_sb.h b/include/linux/efs_fs_sb.h index 21d01d0d4..95476663c 100644 --- a/include/linux/efs_fs_sb.h +++ b/include/linux/efs_fs_sb.h @@ -31,6 +31,7 @@ struct efs_super { short fs_heads; /* heads per cylinder */ short fs_ncg; /* # of cylinder groups in filesystem */ short fs_dirty; /* fs needs to be fsck'd */ + short fs_filler; /* force fs_time to start 2bytes later*/ int32_t fs_time; /* last super-block update */ int32_t fs_magic; /* magic number */ char fs_fname[6]; /* file system name */ |