vserver 1.9.5.x5
[linux-2.6.git] / fs / efs / super.c
index d4910e4..d8d5ea9 100644 (file)
@@ -15,6 +15,9 @@
 #include <linux/buffer_head.h>
 #include <linux/vfs.h>
 
+static int efs_statfs(struct super_block *s, struct kstatfs *buf);
+static int efs_fill_super(struct super_block *s, void *d, int silent);
+
 static struct super_block *efs_get_sb(struct file_system_type *fs_type,
        int flags, const char *dev_name, void *data)
 {
@@ -29,6 +32,26 @@ static struct file_system_type efs_fs_type = {
        .fs_flags       = FS_REQUIRES_DEV,
 };
 
+static struct pt_types sgi_pt_types[] = {
+       {0x00,          "SGI vh"},
+       {0x01,          "SGI trkrepl"},
+       {0x02,          "SGI secrepl"},
+       {0x03,          "SGI raw"},
+       {0x04,          "SGI bsd"},
+       {SGI_SYSV,      "SGI sysv"},
+       {0x06,          "SGI vol"},
+       {SGI_EFS,       "SGI efs"},
+       {0x08,          "SGI lv"},
+       {0x09,          "SGI rlv"},
+       {0x0A,          "SGI xfs"},
+       {0x0B,          "SGI xfslog"},
+       {0x0C,          "SGI xlv"},
+       {0x82,          "Linux swap"},
+       {0x83,          "Linux native"},
+       {0,             NULL}
+};
+
+
 static kmem_cache_t * efs_inode_cachep;
 
 static struct inode *efs_alloc_inode(struct super_block *sb)
@@ -58,7 +81,7 @@ static int init_inodecache(void)
 {
        efs_inode_cachep = kmem_cache_create("efs_inode_cache",
                                sizeof(struct efs_inode_info),
-                               0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
+                               0, SLAB_RECLAIM_ACCOUNT,
                                init_once, NULL);
        if (efs_inode_cachep == NULL)
                return -ENOMEM;
@@ -71,7 +94,7 @@ static void destroy_inodecache(void)
                printk(KERN_INFO "efs_inode_cache: not all structures were freed\n");
 }
 
-void efs_put_super(struct super_block *s)
+static void efs_put_super(struct super_block *s)
 {
        kfree(s->s_fs_info);
        s->s_fs_info = NULL;
@@ -92,6 +115,10 @@ static struct super_operations efs_superblock_operations = {
        .remount_fs     = efs_remount,
 };
 
+static struct export_operations efs_export_ops = {
+       .get_parent     = efs_get_parent,
+};
+
 static int __init init_efs_fs(void) {
        int err;
        printk("EFS: "EFS_VERSION" - http://aeschi.ch.eu.org/efs/\n");
@@ -118,7 +145,8 @@ module_exit(exit_efs_fs)
 
 static efs_block_t efs_validate_vh(struct volume_header *vh) {
        int             i;
-       unsigned int    cs, csum, *ui;
+       __be32          cs, *ui;
+       int             csum;
        efs_block_t     sblock = 0; /* shuts up gcc */
        struct pt_types *pt_entry;
        int             pt_type, slice = -1;
@@ -132,8 +160,8 @@ static efs_block_t efs_validate_vh(struct volume_header *vh) {
                return 0;
        }
 
-       ui = ((unsigned int *) (vh + 1)) - 1;
-       for(csum = 0; ui >= ((unsigned int *) vh);) {
+       ui = ((__be32 *) (vh + 1)) - 1;
+       for(csum = 0; ui >= ((__be32 *) vh);) {
                cs = *ui--;
                csum += be32_to_cpu(cs);
        }
@@ -213,7 +241,7 @@ static int efs_validate_super(struct efs_sb_info *sb, struct efs_super *super) {
        return 0;    
 }
 
-int efs_fill_super(struct super_block *s, void *d, int silent)
+static int efs_fill_super(struct super_block *s, void *d, int silent)
 {
        struct efs_sb_info *sb;
        struct buffer_head *bh;
@@ -274,6 +302,7 @@ int efs_fill_super(struct super_block *s, void *d, int silent)
                s->s_flags |= MS_RDONLY;
        }
        s->s_op   = &efs_superblock_operations;
+       s->s_export_op = &efs_export_ops;
        root = iget(s, EFS_ROOTINODE);
        s->s_root = d_alloc_root(root);
  
@@ -292,7 +321,7 @@ out_no_fs:
        return -EINVAL;
 }
 
-int efs_statfs(struct super_block *s, struct kstatfs *buf) {
+static int efs_statfs(struct super_block *s, struct kstatfs *buf) {
        struct efs_sb_info *sb = SUPER_INFO(s);
 
        buf->f_type    = EFS_SUPER_MAGIC;       /* efs magic number */