Unionfs: back-port stuff from Jeff's korg branch to per-kernel branches
authorErez_Zadok <ezk@cs.sunysb.edu>
Sat, 11 Aug 2007 18:01:08 +0000 (14:01 -0400)
committerErez Zadok <ezk@cs.sunysb.edu>
Fri, 12 Aug 2011 02:37:02 +0000 (22:37 -0400)
Just a bunch of code cleanups: no functionality changed.

Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
fs/unionfs/Makefile
fs/unionfs/fanout.h
fs/unionfs/inode.c
fs/unionfs/main.c
fs/unionfs/mmap.c
fs/unionfs/super.c

index 9bb88f46afb948c50381b0787cb896d5314d35b0..e1cef401ede9f384b82629e7a0ce6d83d10e8c85 100644 (file)
@@ -5,9 +5,8 @@ EXTRA_CFLAGS += -DUNIONFS_VERSION=\"$(UNIONFS_VERSION)\"
 obj-$(CONFIG_UNION_FS) += unionfs.o
 
 unionfs-y := subr.o dentry.o file.o inode.o main.o super.o \
-       rdstate.o copyup.o dirhelper.o rename.o \
-       unlink.o lookup.o commonfops.o dirfops.o sioq.o \
-       mmap.o
+       rdstate.o copyup.o dirhelper.o rename.o unlink.o \
+       lookup.o commonfops.o dirfops.o sioq.o mmap.o
 
 unionfs-$(CONFIG_UNION_FS_XATTR) += xattr.o
 
index e7407f0ec93d6b0a1955507016b413372f619db8..c5bf4542c47a4f70a8f7dda9718e960eb9b65725 100644 (file)
@@ -48,16 +48,19 @@ static inline struct unionfs_inode_info *UNIONFS_I(const struct inode *inode)
 /* macros to manipulate branch IDs in stored in our superblock */
 static inline int branch_id(struct super_block *sb, int index)
 {
+       BUG_ON(!sb || index < 0);
        return UNIONFS_SB(sb)->data[index].branch_id;
 }
 
 static inline void set_branch_id(struct super_block *sb, int index, int val)
 {
+       BUG_ON(!sb || index < 0);
        UNIONFS_SB(sb)->data[index].branch_id = val;
 }
 
 static inline void new_branch_id(struct super_block *sb, int index)
 {
+       BUG_ON(!sb || index < 0);
        set_branch_id(sb, index, ++UNIONFS_SB(sb)->high_branch_id);
 }
 
@@ -77,7 +80,7 @@ static inline int branch_id_to_idx(struct super_block *sb, int id)
                if (branch_id(sb, i) == id)
                        return i;
        }
-       /* in the non-ODF code, this  should really never happen */
+       /* in the non-ODF code, this should really never happen */
        printk(KERN_WARNING "unionfs: cannot find branch with id %d\n", id);
        return -1;
 }
@@ -85,18 +88,21 @@ static inline int branch_id_to_idx(struct super_block *sb, int id)
 /* File to lower file. */
 static inline struct file *unionfs_lower_file(const struct file *f)
 {
+       BUG_ON(!f);
        return UNIONFS_F(f)->lower_files[fbstart(f)];
 }
 
 static inline struct file *unionfs_lower_file_idx(const struct file *f,
                                                  int index)
 {
+       BUG_ON(!f || index < 0);
        return UNIONFS_F(f)->lower_files[index];
 }
 
 static inline void unionfs_set_lower_file_idx(struct file *f, int index,
                                              struct file *val)
 {
+       BUG_ON(!f || index < 0);
        UNIONFS_F(f)->lower_files[index] = val;
        /* save branch ID (may be redundant?) */
        UNIONFS_F(f)->saved_branch_ids[index] =
@@ -105,43 +111,50 @@ static inline void unionfs_set_lower_file_idx(struct file *f, int index,
 
 static inline void unionfs_set_lower_file(struct file *f, struct file *val)
 {
+       BUG_ON(!f);
        unionfs_set_lower_file_idx((f), fbstart(f), (val));
 }
 
 /* Inode to lower inode. */
 static inline struct inode *unionfs_lower_inode(const struct inode *i)
 {
+       BUG_ON(!i);
        return UNIONFS_I(i)->lower_inodes[ibstart(i)];
 }
 
 static inline struct inode *unionfs_lower_inode_idx(const struct inode *i,
                                                    int index)
 {
+       BUG_ON(!i || index < 0);
        return UNIONFS_I(i)->lower_inodes[index];
 }
 
 static inline void unionfs_set_lower_inode_idx(struct inode *i, int index,
                                               struct inode *val)
 {
+       BUG_ON(!i || index < 0);
        UNIONFS_I(i)->lower_inodes[index] = val;
 }
 
 static inline void unionfs_set_lower_inode(struct inode *i, struct inode *val)
 {
+       BUG_ON(!i);
        UNIONFS_I(i)->lower_inodes[ibstart(i)] = val;
 }
 
 /* Superblock to lower superblock. */
 static inline struct super_block *unionfs_lower_super(
-       const struct super_block *sb)
+                                       const struct super_block *sb)
 {
+       BUG_ON(!sb);
        return UNIONFS_SB(sb)->data[sbstart(sb)].sb;
 }
 
 static inline struct super_block *unionfs_lower_super_idx(
-       const struct super_block *sb,
-       int index)
+                                       const struct super_block *sb,
+                                       int index)
 {
+       BUG_ON(!sb || index < 0);
        return UNIONFS_SB(sb)->data[index].sb;
 }
 
@@ -149,121 +162,143 @@ static inline void unionfs_set_lower_super_idx(struct super_block *sb,
                                               int index,
                                               struct super_block *val)
 {
+       BUG_ON(!sb || index < 0);
        UNIONFS_SB(sb)->data[index].sb = val;
 }
 
 static inline void unionfs_set_lower_super(struct super_block *sb,
                                           struct super_block *val)
 {
+       BUG_ON(!sb);
        UNIONFS_SB(sb)->data[sbstart(sb)].sb = val;
 }
 
 /* Branch count macros. */
 static inline int branch_count(const struct super_block *sb, int index)
 {
+       BUG_ON(!sb || index < 0);
        return atomic_read(&UNIONFS_SB(sb)->data[index].open_files);
 }
 
 static inline void set_branch_count(struct super_block *sb, int index, int val)
 {
+       BUG_ON(!sb || index < 0);
        atomic_set(&UNIONFS_SB(sb)->data[index].open_files, val);
 }
 
 static inline void branchget(struct super_block *sb, int index)
 {
+       BUG_ON(!sb || index < 0);
        atomic_inc(&UNIONFS_SB(sb)->data[index].open_files);
 }
 
 static inline void branchput(struct super_block *sb, int index)
 {
+       BUG_ON(!sb || index < 0);
        atomic_dec(&UNIONFS_SB(sb)->data[index].open_files);
 }
 
 /* Dentry macros */
 static inline struct unionfs_dentry_info *UNIONFS_D(const struct dentry *dent)
 {
+       BUG_ON(!dent);
        return dent->d_fsdata;
 }
 
 static inline int dbstart(const struct dentry *dent)
 {
+       BUG_ON(!dent);
        return UNIONFS_D(dent)->bstart;
 }
 
 static inline void set_dbstart(struct dentry *dent, int val)
 {
+       BUG_ON(!dent);
        UNIONFS_D(dent)->bstart = val;
 }
 
 static inline int dbend(const struct dentry *dent)
 {
+       BUG_ON(!dent);
        return UNIONFS_D(dent)->bend;
 }
 
 static inline void set_dbend(struct dentry *dent, int val)
 {
+       BUG_ON(!dent);
        UNIONFS_D(dent)->bend = val;
 }
 
 static inline int dbopaque(const struct dentry *dent)
 {
+       BUG_ON(!dent);
        return UNIONFS_D(dent)->bopaque;
 }
 
 static inline void set_dbopaque(struct dentry *dent, int val)
 {
+       BUG_ON(!dent);
        UNIONFS_D(dent)->bopaque = val;
 }
 
 static inline void unionfs_set_lower_dentry_idx(struct dentry *dent, int index,
                                                struct dentry *val)
 {
+       BUG_ON(!dent || index < 0);
        UNIONFS_D(dent)->lower_paths[index].dentry = val;
 }
 
 static inline struct dentry *unionfs_lower_dentry_idx(
-       const struct dentry *dent,
-       int index)
+                               const struct dentry *dent,
+                               int index)
 {
+       BUG_ON(!dent || index < 0);
        return UNIONFS_D(dent)->lower_paths[index].dentry;
 }
 
 static inline struct dentry *unionfs_lower_dentry(const struct dentry *dent)
 {
+       BUG_ON(!dent);
        return unionfs_lower_dentry_idx(dent, dbstart(dent));
 }
 
 static inline void unionfs_set_lower_mnt_idx(struct dentry *dent, int index,
                                             struct vfsmount *mnt)
 {
+       BUG_ON(!dent || index < 0);
        UNIONFS_D(dent)->lower_paths[index].mnt = mnt;
 }
 
 static inline struct vfsmount *unionfs_lower_mnt_idx(
-       const struct dentry *dent,
-       int index)
+                                       const struct dentry *dent,
+                                       int index)
 {
+       BUG_ON(!dent || index < 0);
        return UNIONFS_D(dent)->lower_paths[index].mnt;
 }
 
 static inline struct vfsmount *unionfs_lower_mnt(const struct dentry *dent)
 {
+       BUG_ON(!dent);
        return unionfs_lower_mnt_idx(dent, dbstart(dent));
 }
 
 /* Macros for locking a dentry. */
 static inline void unionfs_lock_dentry(struct dentry *d)
 {
+       BUG_ON(!d);
        mutex_lock(&UNIONFS_D(d)->lock);
 }
 
 static inline void unionfs_unlock_dentry(struct dentry *d)
 {
+       BUG_ON(!d);
        mutex_unlock(&UNIONFS_D(d)->lock);
 }
 
 static inline void verify_locked(struct dentry *d)
 {
+       BUG_ON(!d);
        BUG_ON(!mutex_is_locked(&UNIONFS_D(d)->lock));
 }
 
index c772fbd83407da497fd473477f61cfa5a14c8930..9e0801a3d0b8060733ef65c84e06c35f185add41 100644 (file)
@@ -918,7 +918,7 @@ static void *unionfs_follow_link(struct dentry *dentry, struct nameidata *nd)
        int len = PAGE_SIZE, err;
        mm_segment_t old_fs;
 
-       unionfs_read_lock(dentry->d_sb);
+       unionfs_read_lock(dentry->d_sb);
 
        /* This is freed by the put_link method assuming a successful call. */
        buf = kmalloc(len, GFP_KERNEL);
@@ -943,7 +943,7 @@ static void *unionfs_follow_link(struct dentry *dentry, struct nameidata *nd)
 
 out:
        unionfs_check_dentry(dentry);
-       unionfs_read_unlock(dentry->d_sb);
+       unionfs_read_unlock(dentry->d_sb);
        return ERR_PTR(err);
 }
 
@@ -1062,7 +1062,8 @@ static int unionfs_permission(struct inode *inode, int mask,
                 * We use our own special version of permission, such that
                 * only the first branch returns -EROFS.
                 */
-               err = inode_permission(inode->i_sb, lower_inode, mask, nd, bindex);
+               err = inode_permission(inode->i_sb, lower_inode, mask, nd,
+                                      bindex);
 
                /*
                 * The permissions are an intersection of the overall directory
index e437edba375a9198027c2f37aff3c161d0c78a06..c96133b5fe1470a42fffc33b33275c90ca595ad5 100644 (file)
@@ -438,8 +438,8 @@ out:
  * We want to mount our stackable file system on top of that lower directory.
  */
 static struct unionfs_dentry_info *unionfs_parse_options(
-       struct super_block *sb,
-       char *options)
+                                        struct super_block *sb,
+                                        char *options)
 {
        struct unionfs_dentry_info *lower_root_info;
        char *optname;
index 8b04a462b81772884aebfe45a3dba36f67817790..6ef19af5849c34b72b33328ff557c0f3dae63fcb 100644 (file)
@@ -160,7 +160,7 @@ static int unionfs_do_readpage(struct file *file, struct page *page)
        char *page_data = NULL;
        loff_t offset;
 
-       if (UNIONFS_F(file) == NULL) {
+       if (!UNIONFS_F(file)) {
                err = -ENOENT;
                goto out;
        }
index d63b19f0dd55adf89b305b592e062366cfa1929b..21a554a924462380a93605e60f3bfeff4f2001bc 100644 (file)
@@ -442,8 +442,8 @@ static int unionfs_remount_fs(struct super_block *sb, int *flags,
        struct path *new_lower_paths = NULL, *tmp_lower_paths = NULL;
        struct inode **new_lower_inodes = NULL;
        int new_high_branch_id; /* new high branch ID */
-       int old_ibstart, old_ibend;
        int size;               /* memory allocation size, temp var */
+       int old_ibstart, old_ibend;
 
        unionfs_write_lock(sb);
 
@@ -671,7 +671,7 @@ out_no_change:
        if (!new_lower_paths) {
                err = -ENOMEM;
                goto out_release;
-       }
+       }
        /* allocate space for new pointers to lower inodes */
        new_lower_inodes = kcalloc(new_branches,
                                   sizeof(struct inode *), GFP_KERNEL);