commit a91ecafa219264b3083c4e6e517443ceb474a6e7
Author: Yiannis Pericleous <[EMAIL PROTECTED]>
Date:   Sat Apr 21 11:38:51 2007 -0400

    coding-style: indent every line properly
    
    Conflicts:
    
        fs/unionfs/dirfops.c
        fs/unionfs/dirhelper.c
        fs/unionfs/inode.c
        fs/unionfs/lookup.c
        fs/unionfs/rename.c
        fs/unionfs/sioq.c
        fs/unionfs/subr.c
        fs/unionfs/union.h

diff --git a/fs/stack.c b/fs/stack.c
index 
67716f6a1a4a29ddb5e59dda194f837cedbfe210..9aee8fcf7293b8679795ae22b7fcde54e8aa7190
 100644
--- a/fs/stack.c
+++ b/fs/stack.c
@@ -18,7 +18,7 @@ EXPORT_SYMBOL_GPL(fsstack_copy_inode_siz
  * copying
  */
 void fsstack_copy_attr_all(struct inode *dest, const struct inode *src,
-                               int (*get_nlinks)(struct inode *))
+                          int (*get_nlinks)(struct inode *))
 {
        dest->i_mode = src->i_mode;
        dest->i_uid = src->i_uid;
diff --git a/fs/unionfs/branchman.c b/fs/unionfs/branchman.c
index 
6912be969973a4d209d580166b680901542f3a88..dc0a5c54e6d4fe70c8e54f57f19cb46a2314f700
 100644
--- a/fs/unionfs/branchman.c
+++ b/fs/unionfs/branchman.c
@@ -57,4 +57,3 @@ out:
        unionfs_unlock_dentry(dentry);
        return err < 0 ? err : bend;
 }
-
diff --git a/fs/unionfs/commonfops.c b/fs/unionfs/commonfops.c
index 
b70dc55cea587d5a9546a1cca70b9081e5af8e72..ab17ccc0e8e848e72276875dddb0bf3d29764182
 100644
--- a/fs/unionfs/commonfops.c
+++ b/fs/unionfs/commonfops.c
@@ -39,7 +39,7 @@ static int copyup_deleted_file(struct fi
        hidden_dentry = unionfs_lower_dentry_idx(dentry, bstart);
 
        sprintf(name, ".unionfs%*.*lx",
-                       i_inosize, i_inosize, hidden_dentry->d_inode->i_ino);
+               i_inosize, i_inosize, hidden_dentry->d_inode->i_ino);
 
        /*
         * Loop, looking for an unused temp name to copyup to.
@@ -59,7 +59,7 @@ static int copyup_deleted_file(struct fi
                sprintf(suffix, "%*.*x", countersize, countersize, counter);
 
                printk(KERN_DEBUG "unionfs: trying to rename %s to %s\n",
-                               dentry->d_name.name, name);
+                      dentry->d_name.name, name);
 
                tmp_dentry = lookup_one_len(name, hidden_dentry->d_parent,
                                            UNIONFS_TMPNAM_LEN);
@@ -241,8 +241,8 @@ static int open_all_files(struct file *f
                unionfs_read_unlock(sb);
 
                hidden_file = dentry_open(hidden_dentry,
-                               unionfs_lower_mnt_idx(dentry, bindex),
-                               file->f_flags);
+                                         unionfs_lower_mnt_idx(dentry, bindex),
+                                         file->f_flags);
                if (IS_ERR(hidden_file)) {
                        err = PTR_ERR(hidden_file);
                        goto out;
@@ -277,7 +277,7 @@ static int open_highest_file(struct file
                                break;
                }
                atomic_set(&UNIONFS_F(file)->generation,
-                       atomic_read(&UNIONFS_I(dentry->d_inode)->generation));
+                          
atomic_read(&UNIONFS_I(dentry->d_inode)->generation));
                goto out;
        }
 
@@ -287,7 +287,7 @@ static int open_highest_file(struct file
        branchget(sb, bstart);
        unionfs_read_unlock(sb);
        hidden_file = dentry_open(hidden_dentry,
-                       unionfs_lower_mnt_idx(dentry, bstart), file->f_flags);
+                                 unionfs_lower_mnt_idx(dentry, bstart), 
file->f_flags);
        if (IS_ERR(hidden_file)) {
                err = PTR_ERR(hidden_file);
                goto out;
@@ -315,7 +315,7 @@ static int do_delayed_copyup(struct file
        for (bindex = bstart - 1; bindex >= 0; bindex--) {
                if (!d_deleted(file->f_dentry))
                        err = copyup_file(parent_inode, file, bstart,
-                                       bindex, inode_size);
+                                         bindex, inode_size);
                else
                        err = copyup_deleted_file(file, dentry, bstart, bindex);
 
@@ -417,7 +417,7 @@ int unionfs_file_revalidate(struct file 
            !IS_WRITE_FLAG(unionfs_lower_file(file)->f_flags) &&
            is_robranch(dentry)) {
                printk(KERN_DEBUG "Doing delayed copyup of a read-write "
-                                 "file on a read-only branch.\n");
+                      "file on a read-only branch.\n");
                err = do_delayed_copyup(file, dentry);
        }
 
@@ -453,8 +453,8 @@ static int __open_dir(struct inode *inod
                dget(hidden_dentry);
                unionfs_mntget(file->f_dentry, bindex);
                hidden_file = dentry_open(hidden_dentry,
-                               unionfs_lower_mnt_idx(file->f_dentry, bindex),
-                               file->f_flags);
+                                         unionfs_lower_mnt_idx(file->f_dentry, 
bindex),
+                                         file->f_flags);
                if (IS_ERR(hidden_file))
                        return PTR_ERR(hidden_file);
 
@@ -508,7 +508,7 @@ static int __open_file(struct inode *ino
                        /* copyup the file */
                        for (bindex = bstart - 1; bindex >= 0; bindex--) {
                                err = 
copyup_file(file->f_dentry->d_parent->d_inode,
-                                               file, bstart, bindex, size);
+                                                 file, bstart, bindex, size);
                                if (!err)
                                        break;
                        }
diff --git a/fs/unionfs/copyup.c b/fs/unionfs/copyup.c
index 
14a53c610ddd4e88922557e581b61f6ea257c830..8a752f93e77be18750131e2e35fe564ae877b0d5
 100644
--- a/fs/unionfs/copyup.c
+++ b/fs/unionfs/copyup.c
@@ -85,7 +85,7 @@ static int copyup_xattrs(struct dentry *
                        goto out;
                name_list += strlen(name_list) + 1;
        }
-      out:
+out:
        name_list = name_list_orig;
 
        if (name_list)
@@ -118,8 +118,8 @@ static int copyup_permissions(struct sup
        newattrs.ia_mode = i->i_mode;
 
        newattrs.ia_valid = ATTR_CTIME | ATTR_ATIME | ATTR_MTIME |
-           ATTR_ATIME_SET | ATTR_MTIME_SET | ATTR_FORCE |
-           ATTR_GID | ATTR_UID | ATTR_MODE;
+               ATTR_ATIME_SET | ATTR_MTIME_SET | ATTR_FORCE |
+               ATTR_GID | ATTR_UID | ATTR_MODE;
 
        err = notify_change(new_hidden_dentry, &newattrs);
 
@@ -184,7 +184,7 @@ static int __copyup_ndentry(struct dentr
                err = args.err;
        } else {
                printk(KERN_ERR "Unknown inode type %d\n",
-                               old_mode);
+                      old_mode);
                BUG();
        }
 
@@ -211,8 +211,8 @@ static int __copyup_reg_data(struct dent
        branchget(sb, old_bindex);
        unionfs_read_unlock(sb);
        input_file = dentry_open(old_hidden_dentry,
-                               unionfs_lower_mnt_idx(dentry, old_bindex),
-                               O_RDONLY | O_LARGEFILE);
+                                unionfs_lower_mnt_idx(dentry, old_bindex),
+                                O_RDONLY | O_LARGEFILE);
        if (IS_ERR(input_file)) {
                dput(old_hidden_dentry);
                err = PTR_ERR(input_file);
@@ -230,8 +230,8 @@ static int __copyup_reg_data(struct dent
        branchget(sb, new_bindex);
        unionfs_read_unlock(sb);
        output_file = dentry_open(new_hidden_dentry,
-                               unionfs_lower_mnt_idx(dentry, new_bindex),
-                               O_WRONLY | O_LARGEFILE);
+                                 unionfs_lower_mnt_idx(dentry, new_bindex),
+                                 O_WRONLY | O_LARGEFILE);
        if (IS_ERR(output_file)) {
                err = PTR_ERR(output_file);
                goto out_close_in2;
@@ -265,19 +265,19 @@ static int __copyup_reg_data(struct dent
                len -= PAGE_SIZE;
 
                read_bytes =
-                   input_file->f_op->read(input_file,
-                                          (char __user *)buf, size,
-                                          &input_file->f_pos);
+                       input_file->f_op->read(input_file,
+                                              (char __user *)buf, size,
+                                              &input_file->f_pos);
                if (read_bytes <= 0) {
                        err = read_bytes;
                        break;
                }
 
                write_bytes =
-                   output_file->f_op->write(output_file,
-                                            (char __user *)buf,
-                                            read_bytes,
-                                            &output_file->f_pos);
+                       output_file->f_op->write(output_file,
+                                                (char __user *)buf,
+                                                read_bytes,
+                                                &output_file->f_pos);
                if ((write_bytes < 0) || (write_bytes < read_bytes)) {
                        err = write_bytes;
                        break;
@@ -387,9 +387,9 @@ static int copyup_named_dentry(struct in
                oldfs = get_fs();
                set_fs(KERNEL_DS);
                err = old_hidden_dentry->d_inode->i_op->readlink(
-                                       old_hidden_dentry,
-                                       (char __user *)symbuf,
-                                       PATH_MAX);
+                       old_hidden_dentry,
+                       (char __user *)symbuf,
+                       PATH_MAX);
                set_fs(oldfs);
                if (err) {
                        __clear(dentry, old_hidden_dentry,
@@ -417,7 +417,7 @@ static int copyup_named_dentry(struct in
        /* We actually copyup the file here. */
        if (S_ISREG(old_hidden_dentry->d_inode->i_mode))
                err = __copyup_reg_data(dentry, new_hidden_dentry, new_bindex,
-                               old_hidden_dentry, old_bindex, copyup_file, 
len);
+                                       old_hidden_dentry, old_bindex, 
copyup_file, len);
        if (err)
                goto out_unlink;
 
@@ -586,7 +586,7 @@ static void __set_inode(struct dentry * 
                        int bindex)
 {
        unionfs_set_lower_inode_idx(upper->d_inode, bindex,
-                       igrab(lower->d_inode));
+                                   igrab(lower->d_inode));
        if (likely(ibstart(upper->d_inode) > bindex))
                ibstart(upper->d_inode) = bindex;
        if (likely(ibend(upper->d_inode) < bindex))
@@ -712,8 +712,8 @@ static struct dentry *create_parents_nam
                if (child_dentry != dentry) {
                        /* lookup child in the underlying file system */
                        hidden_dentry =
-                           lookup_one_len(childname, hidden_parent_dentry,
-                                          childnamelen);
+                               lookup_one_len(childname, hidden_parent_dentry,
+                                              childnamelen);
                        if (IS_ERR(hidden_dentry))
                                goto out;
                } else {
@@ -722,8 +722,8 @@ static struct dentry *create_parents_nam
                         * lookup the whiteout child in the underlying file 
system
                         */
                        hidden_dentry =
-                           lookup_one_len(name, hidden_parent_dentry,
-                                          strlen(name));
+                               lookup_one_len(name, hidden_parent_dentry,
+                                              strlen(name));
                        if (IS_ERR(hidden_dentry))
                                goto out;
 
@@ -755,7 +755,7 @@ static struct dentry *create_parents_nam
 
                        if (!err)
                                err = copyup_permissions(dir->i_sb,
-                                               child_dentry, hidden_dentry);
+                                                        child_dentry, 
hidden_dentry);
                        unlock_dir(hidden_parent_dentry);
                        if (err) {
                                dput(hidden_dentry);
@@ -775,4 +775,3 @@ out:
        kfree(path);
        return hidden_dentry;
 }
-
diff --git a/fs/unionfs/dentry.c b/fs/unionfs/dentry.c
index 
9eb143dff820eaf008e5c967d60685b40f2ee2bc..2369cf8d5fe0fa8bb62f170902708babc58bcec0
 100644
--- a/fs/unionfs/dentry.c
+++ b/fs/unionfs/dentry.c
@@ -79,7 +79,7 @@ static int __unionfs_d_revalidate_one(st
                        struct dentry *hidden_dentry;
                        for (bindex = bstart; bindex <= bend; bindex++) {
                                hidden_dentry =
-                                   unionfs_lower_dentry_idx(dentry, bindex);
+                                       unionfs_lower_dentry_idx(dentry, 
bindex);
                                dput(hidden_dentry);
                        }
                }
@@ -106,8 +106,8 @@ static int __unionfs_d_revalidate_one(st
                                struct inode *hidden_inode;
                                for (bindex = bstart; bindex <= bend; bindex++) 
{
                                        hidden_inode =
-                                           
unionfs_lower_inode_idx(dentry->d_inode,
-                                                       bindex);
+                                               
unionfs_lower_inode_idx(dentry->d_inode,
+                                                                       bindex);
                                        iput(hidden_inode);
                                }
                        }
@@ -159,10 +159,10 @@ static int __unionfs_d_revalidate_one(st
 
        if (valid) {
                fsstack_copy_attr_all(dentry->d_inode,
-                               unionfs_lower_inode(dentry->d_inode),
-                               unionfs_get_nlinks);
+                                     unionfs_lower_inode(dentry->d_inode),
+                                     unionfs_get_nlinks);
                fsstack_copy_inode_size(dentry->d_inode,
-                               unionfs_lower_inode(dentry->d_inode));
+                                       unionfs_lower_inode(dentry->d_inode));
        }
 
 out:
@@ -247,7 +247,7 @@ int __unionfs_d_revalidate_chain(struct 
        }
 
 
- out_this:
+out_this:
        /* finally, lock this dentry and revalidate it */
        verify_locked(dentry);
        dgen = atomic_read(&UNIONFS_D(dentry)->generation);
@@ -260,7 +260,7 @@ int __unionfs_d_revalidate_chain(struct 
                        unionfs_mntput(dentry, bindex);
        }
 
- out_free:
+out_free:
        /* unlock/dput all dentries in chain and return status */
        if (chain_len > 0) {
                for (i=0; i<chain_len; i++) {
@@ -268,7 +268,7 @@ int __unionfs_d_revalidate_chain(struct 
                }
                kfree(chain);
        }
- out:
+out:
        return valid;
 }
 
@@ -330,4 +330,3 @@ struct dentry_operations unionfs_dops = 
        .d_revalidate   = unionfs_d_revalidate,
        .d_release      = unionfs_d_release,
 };
-
diff --git a/fs/unionfs/dirfops.c b/fs/unionfs/dirfops.c
index 
7f20de9d768bc0048bcfe61eeeffcdbf448edd57..14352bfcaa7d1e84f500f1220334bd17046b9ae7
 100644
--- a/fs/unionfs/dirfops.c
+++ b/fs/unionfs/dirfops.c
@@ -133,4 +133,3 @@ struct file_operations unionfs_dir_fops 
        .release        = unionfs_file_release,
        .flush          = unionfs_flush,
 };
-
diff --git a/fs/unionfs/dirhelper.c b/fs/unionfs/dirhelper.c
index 
840e6e3f9562c8d88977277f70a3ce3a7239b61a..1716361da5691046ed7fd238c2632edc350b94bf
 100644
--- a/fs/unionfs/dirhelper.c
+++ b/fs/unionfs/dirhelper.c
@@ -249,8 +249,8 @@ int check_empty(struct dentry *dentry, s
                branchget(sb, bindex);
                unionfs_read_unlock(sb);
                hidden_file =
-                   dentry_open(hidden_dentry, unionfs_lower_mnt_idx(dentry, 
bindex),
-                               O_RDONLY);
+                       dentry_open(hidden_dentry, 
unionfs_lower_mnt_idx(dentry, bindex),
+                                   O_RDONLY);
                if (IS_ERR(hidden_file)) {
                        err = PTR_ERR(hidden_file);
                        dput(hidden_dentry);
@@ -683,4 +683,3 @@ out:
                err = success;
        return err;
 }
-
diff --git a/fs/unionfs/fanout.h b/fs/unionfs/fanout.h
index 
43c73e120461a6e8f964deb92991333b51148c0d..65af0741d2aff01939a3597c7a9bd61712e99397
 100644
--- a/fs/unionfs/fanout.h
+++ b/fs/unionfs/fanout.h
@@ -101,7 +101,7 @@ static inline struct inode *unionfs_lowe
 }
 
 static inline void unionfs_set_lower_inode_idx(struct inode *i, int index,
-                                  struct inode *val)
+                                              struct inode *val)
 {
        UNIONFS_I(i)->lower_inodes[index] = val;
 }
@@ -123,7 +123,7 @@ static inline struct super_block *unionf
 }
 
 static inline void unionfs_set_lower_super_idx(struct super_block *sb, int 
index,
-                                  struct super_block *val)
+                                              struct super_block *val)
 {
        UNIONFS_SB(sb)->data[index].sb = val;
 }
@@ -181,7 +181,7 @@ static inline void set_dbend(struct dent
 }
 
 static inline void unionfs_set_lower_dentry_idx(struct dentry *dent, int index,
-                                  struct dentry *val)
+                                               struct dentry *val)
 {
        UNIONFS_D(dent)->lower_paths[index].dentry = val;
 }
@@ -197,7 +197,7 @@ static inline struct dentry *unionfs_low
 }
 
 static inline void unionfs_set_lower_mnt_idx(struct dentry *dent, int index,
-                                  struct vfsmount *mnt)
+                                            struct vfsmount *mnt)
 {
        UNIONFS_D(dent)->lower_paths[index].mnt = mnt;
 }
diff --git a/fs/unionfs/file.c b/fs/unionfs/file.c
index 
baeddab606d77c15ba5ca3849d1cf2bc3f101955..be18c46d843715873575a8120c337b12e24c2f0f
 100644
--- a/fs/unionfs/file.c
+++ b/fs/unionfs/file.c
@@ -263,4 +263,3 @@ struct file_operations unionfs_main_fops
        .fsync          = unionfs_fsync,
        .fasync         = unionfs_fasync,
 };
-
diff --git a/fs/unionfs/inode.c b/fs/unionfs/inode.c
index 
bdd315d2084117b93b37f7c03b1c8ab2c04b8615..b067cf9b68a8c41364544bfdffe229473e71f4d5
 100644
--- a/fs/unionfs/inode.c
+++ b/fs/unionfs/inode.c
@@ -178,7 +178,7 @@ static int unionfs_link(struct dentry *o
        }
        if (dbstart(old_dentry) != dbstart(new_dentry) || create_p) {
                hidden_new_dentry =
-                   create_parents(dir, new_dentry, dbstart(old_dentry));
+                       create_parents(dir, new_dentry, dbstart(old_dentry));
                err = PTR_ERR(hidden_new_dentry);
                if (IS_COPYUP_ERR(err))
                        goto docopyup;
@@ -198,7 +198,7 @@ static int unionfs_link(struct dentry *o
        hidden_dir_dentry = lock_parent(hidden_new_dentry);
        if (!(err = is_robranch(old_dentry)))
                err = vfs_link(hidden_old_dentry, hidden_dir_dentry->d_inode,
-                            hidden_new_dentry);
+                              hidden_new_dentry);
        unlock_dir(hidden_dir_dentry);
 
 docopyup:
@@ -243,7 +243,7 @@ check_link:
        new_dentry->d_inode = igrab(old_dentry->d_inode);
        d_instantiate(new_dentry, new_dentry->d_inode);
        fsstack_copy_attr_all(dir, hidden_new_dentry->d_parent->d_inode,
-                                       unionfs_get_nlinks);
+                             unionfs_get_nlinks);
        fsstack_copy_inode_size(dir, hidden_new_dentry->d_parent->d_inode);
        /* update odf, FIXME: what to do in case of err?  */
        err = odf_link(old_dentry, new_dentry);
@@ -595,7 +595,7 @@ static int inode_permission(struct inode
                if (bindex == 0) {
                        umode_t mode = inode->i_mode;
                        if (IS_RDONLY(inode) &&
-                          (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
+                           (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
                                return -EROFS;
                }
                /*
@@ -795,4 +795,3 @@ #ifdef CONFIG_UNION_FS_XATTR
        .listxattr      = unionfs_listxattr,
 #endif
 };
-
diff --git a/fs/unionfs/lookup.c b/fs/unionfs/lookup.c
index 
e5a28f1d47a292664306ed67ab56aae375e10eff..7e0a0f294c6b62d801036303eb99265bb2c1c6be
 100644
--- a/fs/unionfs/lookup.c
+++ b/fs/unionfs/lookup.c
@@ -128,7 +128,7 @@ struct dentry *unionfs_lookup_backend(st
                nd->mnt = unionfs_lower_mnt_idx(parent_dentry, bindex);
 
                hidden_dentry = lookup_one_len_nd(name, hidden_dir_dentry,
-                                              namelen, nd);
+                                                 namelen, nd);
                if (IS_ERR(hidden_dentry)) {
                        dput(first_hidden_dentry);
                        unionfs_mntput(first_dentry, first_dentry_offset);
@@ -170,7 +170,7 @@ struct dentry *unionfs_lookup_backend(st
 
                /* update parent directory's atime with the bindex */
                fsstack_copy_attr_atime(parent_dentry->d_inode,
-                                    hidden_dir_dentry->d_inode);
+                                       hidden_dir_dentry->d_inode);
 
                /* We terminate file lookups here. */
                if (!S_ISDIR(hidden_dentry->d_inode->i_mode)) {
@@ -347,8 +347,8 @@ static struct kmem_cache *unionfs_dentry
 int unionfs_init_dentry_cache(void)
 {
        unionfs_dentry_cachep = kmem_cache_create("unionfs_dentry",
-                                       sizeof(struct unionfs_dentry_info), 0,
-                                       SLAB_RECLAIM_ACCOUNT, NULL, NULL);
+                                                 sizeof(struct 
unionfs_dentry_info), 0,
+                                                 SLAB_RECLAIM_ACCOUNT, NULL, 
NULL);
 
        return (unionfs_dentry_cachep ? 0 : -ENOMEM);
 }
@@ -378,7 +378,7 @@ int new_dentry_private_data(struct dentr
        spin_lock(&dentry->d_lock);
        if (!info) {
                dentry->d_fsdata = kmem_cache_alloc(unionfs_dentry_cachep,
-                                               GFP_ATOMIC);
+                                                   GFP_ATOMIC);
                info = UNIONFS_D(dentry);
 
                if (!info)
@@ -458,4 +458,3 @@ void update_bstart(struct dentry *dentry
                unionfs_set_lower_dentry_idx(dentry, bindex, NULL);
        }
 }
-
diff --git a/fs/unionfs/main.c b/fs/unionfs/main.c
index 
663412630492d2d65479129833350273a98f3906..594056fc1363d80d32346a5f2c79105f95edb024
 100644
--- a/fs/unionfs/main.c
+++ b/fs/unionfs/main.c
@@ -64,7 +64,7 @@ int unionfs_interpose(struct dentry *den
                           atomic_read(&UNIONFS_SB(sb)->generation));
 
                UNIONFS_I(inode)->lower_inodes =
-                   kcalloc(sbmax(sb), sizeof(struct inode *), GFP_KERNEL);
+                       kcalloc(sbmax(sb), sizeof(struct inode *), GFP_KERNEL);
                if (!UNIONFS_I(inode)->lower_inodes) {
                        err = -ENOMEM;
                        goto out;
@@ -112,7 +112,7 @@ int unionfs_interpose(struct dentry *den
                        continue;
 
                unionfs_set_lower_inode_idx(inode, bindex,
-                               igrab(hidden_dentry->d_inode));
+                                           igrab(hidden_dentry->d_inode));
        }
 
        ibstart(inode) = dbstart(dentry);
@@ -191,7 +191,7 @@ void unionfs_reinterpose(struct dentry *
                if (unionfs_lower_inode_idx(inode, bindex))
                        continue;
                unionfs_set_lower_inode_idx(inode, bindex,
-                               igrab(hidden_dentry->d_inode));
+                                           igrab(hidden_dentry->d_inode));
        }
        ibstart(inode) = dbstart(dentry);
        ibend(inode) = dbend(dentry);
@@ -287,14 +287,14 @@ static int parse_dirs_option(struct supe
 
        /* allocate space for underlying pointers to hidden dentry */
        UNIONFS_SB(sb)->data = kcalloc(branches,
-                       sizeof(struct unionfs_data), GFP_KERNEL);
+                                      sizeof(struct unionfs_data), GFP_KERNEL);
        if (!UNIONFS_SB(sb)->data) {
                err = -ENOMEM;
                goto out;
        }
 
        hidden_root_info->lower_paths = kcalloc(branches,
-                       sizeof(struct path), GFP_KERNEL);
+                                               sizeof(struct path), 
GFP_KERNEL);
        if (!hidden_root_info->lower_paths) {
                err = -ENOMEM;
                goto out;
@@ -366,7 +366,7 @@ static int parse_dirs_option(struct supe
 
                        if (is_branch_overlap(dent1, dent2)) {
                                printk(KERN_WARNING "unionfs: branches %d and "
-                                       "%d overlap\n", i, j);
+                                      "%d overlap\n", i, j);
                                err = -EINVAL;
                                goto out;
                        }
@@ -412,7 +412,7 @@ static struct unionfs_dentry_info *union
        /* allocate private data area */
        err = -ENOMEM;
        hidden_root_info =
-           kzalloc(sizeof(struct unionfs_dentry_info), GFP_KERNEL);
+               kzalloc(sizeof(struct unionfs_dentry_info), GFP_KERNEL);
        if (!hidden_root_info)
                goto out_error;
        hidden_root_info->bstart = -1;
@@ -809,11 +809,10 @@ static void __exit exit_unionfs_fs(void)
 }
 
 MODULE_AUTHOR("Erez Zadok, Filesystems and Storage Lab, Stony Brook University"
-               " (http://www.fsl.cs.sunysb.edu)");
+             " (http://www.fsl.cs.sunysb.edu)");
 MODULE_DESCRIPTION("Unionfs " UNIONFS_VERSION
-               " (http://unionfs.filesystems.org)");
+                  " (http://unionfs.filesystems.org)");
 MODULE_LICENSE("GPL");
 
 module_init(init_unionfs_fs);
 module_exit(exit_unionfs_fs);
-
diff --git a/fs/unionfs/rdstate.c b/fs/unionfs/rdstate.c
index 
2265031923545c32748cd98c5f5d28041916d050..d0a618d85c11231b12dbf862d27ae442cc9c77a2
 100644
--- a/fs/unionfs/rdstate.c
+++ b/fs/unionfs/rdstate.c
@@ -34,8 +34,8 @@ static struct kmem_cache *unionfs_filldi
 int unionfs_init_filldir_cache(void)
 {
        unionfs_filldir_cachep =
-           kmem_cache_create("unionfs_filldir", sizeof(struct filldir_node), 0,
-                             SLAB_RECLAIM_ACCOUNT, NULL, NULL);
+               kmem_cache_create("unionfs_filldir", sizeof(struct 
filldir_node), 0,
+                                 SLAB_RECLAIM_ACCOUNT, NULL, NULL);
 
        return (unionfs_filldir_cachep ? 0 : -ENOMEM);
 }
@@ -99,7 +99,7 @@ struct unionfs_dir_state *find_rdstate(s
        spin_lock(&UNIONFS_I(inode)->rdlock);
        list_for_each(pos, &UNIONFS_I(inode)->readdircache) {
                struct unionfs_dir_state *r =
-                   list_entry(pos, struct unionfs_dir_state, cache);
+                       list_entry(pos, struct unionfs_dir_state, cache);
                if (fpos == rdstate2offset(r)) {
                        UNIONFS_I(inode)->rdcount--;
                        list_del(&r->cache);
@@ -127,7 +127,7 @@ struct unionfs_dir_state *alloc_rdstate(
                mallocsize = PAGE_SIZE;
 
        hashsize = (mallocsize -
-            sizeof(struct unionfs_dir_state)) / sizeof(struct list_head);
+                   sizeof(struct unionfs_dir_state)) / sizeof(struct 
list_head);
 
        rdstate = kmalloc(mallocsize, GFP_KERNEL);
        if (!rdstate)
@@ -211,9 +211,9 @@ struct filldir_node *find_filldir_node(s
                         */
                        if (cursor->bindex == rdstate->bindex) {
                                printk(KERN_DEBUG "Possible I/O error "
-                                       "unionfs_filldir: a file is duplicated "
-                                       "in the same branch %d: %s\n",
-                                       rdstate->bindex, cursor->name);
+                                      "unionfs_filldir: a file is duplicated "
+                                      "in the same branch %d: %s\n",
+                                      rdstate->bindex, cursor->name);
                        }
                        break;
                }
@@ -272,4 +272,3 @@ int add_filldir_node(struct unionfs_dir_
 out:
        return err;
 }
-
diff --git a/fs/unionfs/rename.c b/fs/unionfs/rename.c
index 
4facacc68babb0c9fea7513f0a05676bae1bfc3a..1c2294cde15b762960a36159dd501d78f1000373
 100644
--- a/fs/unionfs/rename.c
+++ b/fs/unionfs/rename.c
@@ -83,11 +83,11 @@ static int do_rename(struct inode *old_d
 
        if (!hidden_new_dentry) {
                hidden_new_dentry =
-                   create_parents(new_dentry->d_parent->d_inode, new_dentry, 
bindex);
+                       create_parents(new_dentry->d_parent->d_inode, 
new_dentry, bindex);
                if (IS_ERR(hidden_new_dentry)) {
                        printk(KERN_DEBUG "error creating directory tree for"
-                                         " rename, bindex = %d, err = %ld\n",
-                                         bindex, PTR_ERR(hidden_new_dentry));
+                              " rename, bindex = %d, err = %ld\n",
+                              bindex, PTR_ERR(hidden_new_dentry));
                        err = PTR_ERR(hidden_new_dentry);
                        goto out;
                }
@@ -127,9 +127,9 @@ out_nofix:
 }
 
 static int do_unionfs_rename(struct inode *old_dir,
-                                  struct dentry *old_dentry,
-                                  struct inode *new_dir,
-                                  struct dentry *new_dentry)
+                            struct dentry *old_dentry,
+                            struct inode *new_dir,
+                            struct dentry *new_dentry)
 {
        int err = 0;
        int bindex;
@@ -233,14 +233,14 @@ revert:
        local_err = unionfs_refresh_hidden_dentry(new_dentry, old_bstart);
        if (local_err) {
                printk(KERN_WARNING "Revert failed in rename: the new refresh "
-                               "failed.\n");
+                      "failed.\n");
                eio = -EIO;
        }
 
        local_err = unionfs_refresh_hidden_dentry(old_dentry, old_bstart);
        if (local_err) {
                printk(KERN_WARNING "Revert failed in rename: the old refresh "
-                               "failed.\n");
+                      "failed.\n");
                eio = -EIO;
                goto revert_out;
        }
@@ -248,7 +248,7 @@ revert:
        if (!unionfs_lower_dentry_idx(new_dentry, bindex) ||
            !unionfs_lower_dentry_idx(new_dentry, bindex)->d_inode) {
                printk(KERN_WARNING "Revert failed in rename: the object "
-                               "disappeared from under us!\n");
+                      "disappeared from under us!\n");
                eio = -EIO;
                goto revert_out;
        }
@@ -256,7 +256,7 @@ revert:
        if (unionfs_lower_dentry_idx(old_dentry, bindex) &&
            unionfs_lower_dentry_idx(old_dentry, bindex)->d_inode) {
                printk(KERN_WARNING "Revert failed in rename: the object was "
-                               "created underneath us!\n");
+                      "created underneath us!\n");
                eio = -EIO;
                goto revert_out;
        }
@@ -361,7 +361,7 @@ int unionfs_rename(struct inode *old_dir
                if (S_ISDIR(old_dentry->d_inode->i_mode) !=
                    S_ISDIR(new_dentry->d_inode->i_mode)) {
                        err = S_ISDIR(old_dentry->d_inode->i_mode) ?
-                                       -ENOTDIR : -EISDIR;
+                               -ENOTDIR : -EISDIR;
                        goto out;
                }
                if (S_ISDIR(new_dentry->d_inode->i_mode)) {
@@ -392,4 +392,3 @@ out:
        unionfs_unlock_dentry(old_dentry);
        return err;
 }
-
diff --git a/fs/unionfs/sioq.h b/fs/unionfs/sioq.h
index 
a7be2f03ad8d799905565db9271aec0d0c2c8905..4405cdc6826f7af3ca563ac1e86e225187b6329b
 100644
--- a/fs/unionfs/sioq.h
+++ b/fs/unionfs/sioq.h
@@ -86,4 +86,3 @@ extern void __unionfs_symlink(struct wor
 extern void __unionfs_unlink(struct work_struct *work);
 
 #endif /* _SIOQ_H */
-
diff --git a/fs/unionfs/subr.c b/fs/unionfs/subr.c
index 
c8f12e803db316c6f7ddea2962c168dc4ccd7dac..72a72cbc11bde1a6bb4a7adaa492698751ba386b
 100644
--- a/fs/unionfs/subr.c
+++ b/fs/unionfs/subr.c
@@ -36,7 +36,7 @@ int unionfs_refresh_hidden_dentry(struct
        BUG_ON(!S_ISDIR(hidden_parent->d_inode->i_mode));
 
        hidden_dentry = lookup_one_len(dentry->d_name.name, hidden_parent,
-                               dentry->d_name.len);
+                                      dentry->d_name.len);
        if (IS_ERR(hidden_dentry)) {
                err = PTR_ERR(hidden_dentry);
                goto out;
@@ -52,7 +52,7 @@ int unionfs_refresh_hidden_dentry(struct
        } else {
                unionfs_set_lower_dentry_idx(dentry, bindex, hidden_dentry);
                unionfs_set_lower_inode_idx(dentry->d_inode, bindex,
-                               igrab(hidden_dentry->d_inode));
+                                           igrab(hidden_dentry->d_inode));
        }
 
 out:
diff --git a/fs/unionfs/super.c b/fs/unionfs/super.c
index 
bdc923748fb143c32c8659b0eff1f96ddab38b34..f444e2277763f9f9bc19d31e018b886e8dff8376
 100644
--- a/fs/unionfs/super.c
+++ b/fs/unionfs/super.c
@@ -31,7 +31,7 @@ static void unionfs_read_inode(struct in
 
        if (!info) {
                printk(KERN_ERR "No kernel memory when allocating inode "
-                               "private data!\n");
+                      "private data!\n");
                BUG();
        }
 
@@ -49,7 +49,7 @@ static void unionfs_read_inode(struct in
        info->lower_inodes = kzalloc(size, GFP_KERNEL);
        if (!info->lower_inodes) {
                printk(KERN_ERR "No kernel memory when allocating lower-"
-                               "pointer array!\n");
+                      "pointer array!\n");
                BUG();
        }
 
@@ -506,7 +506,7 @@ static int unionfs_remount_fs(struct sup
        }
        /* allocate space for new pointers to lower paths */
        tmp_lower_paths = kcalloc(max_branches,
-                          sizeof(struct path), GFP_KERNEL);
+                                 sizeof(struct path), GFP_KERNEL);
        if (!tmp_lower_paths) {
                err = -ENOMEM;
                goto out_free;
@@ -868,9 +868,9 @@ int unionfs_init_inode_cache(void)
        int err = 0;
 
        unionfs_inode_cachep =
-           kmem_cache_create("unionfs_inode_cache",
-                             sizeof(struct unionfs_inode_info), 0,
-                             SLAB_RECLAIM_ACCOUNT, init_once, NULL);
+               kmem_cache_create("unionfs_inode_cache",
+                                 sizeof(struct unionfs_inode_info), 0,
+                                 SLAB_RECLAIM_ACCOUNT, init_once, NULL);
        if (!unionfs_inode_cachep)
                err = -ENOMEM;
        return err;
@@ -960,8 +960,8 @@ static int unionfs_show_options(struct s
        seq_printf(m, ",dirs=");
        for (bindex = bstart; bindex <= bend; bindex++) {
                path = d_path(unionfs_lower_dentry_idx(sb->s_root, bindex),
-                          unionfs_lower_mnt_idx(sb->s_root, bindex), tmp_page,
-                          PAGE_SIZE);
+                             unionfs_lower_mnt_idx(sb->s_root, bindex), 
tmp_page,
+                             PAGE_SIZE);
                if (IS_ERR(path)) {
                        ret = PTR_ERR(path);
                        goto out;
@@ -999,4 +999,3 @@ struct super_operations unionfs_sops = {
        .alloc_inode    = unionfs_alloc_inode,
        .destroy_inode  = unionfs_destroy_inode,
 };
-
diff --git a/fs/unionfs/union.h b/fs/unionfs/union.h
index 
fa28059b664887b95371368d959ae1c03c85d3ca..09358aafb79ad43920d83192b6ecd2fa690be952
 100644
--- a/fs/unionfs/union.h
+++ b/fs/unionfs/union.h
@@ -343,12 +343,12 @@ extern void *unionfs_xattr_alloc(size_t 
 extern void unionfs_xattr_free(void *ptr, size_t size);
 
 extern ssize_t unionfs_getxattr(struct dentry *dentry, const char *name,
-               void *value, size_t size);
+                               void *value, size_t size);
 extern int unionfs_removexattr(struct dentry *dentry, const char *name);
 extern ssize_t unionfs_listxattr(struct dentry *dentry, char *list,
-               size_t size);
+                                size_t size);
 extern int unionfs_setxattr(struct dentry *dentry, const char *name,
-               const void *value, size_t size, int flags);
+                           const void *value, size_t size, int flags);
 #endif /* CONFIG_UNION_FS_XATTR */
 
 /* The root directory is unhashed, but isn't deleted. */
diff --git a/fs/unionfs/unlink.c b/fs/unionfs/unlink.c
index 
88fd6b68beaf405788073520d14724bd379ddfb4..5b189afce830bae96a2dafcb427e86ae0ec6ce8a
 100644
--- a/fs/unionfs/unlink.c
+++ b/fs/unionfs/unlink.c
@@ -206,4 +206,3 @@ out:
        unionfs_unlock_dentry(dentry);
        return err;
 }
-
diff --git a/fs/unionfs/xattr.c b/fs/unionfs/xattr.c
index 
6e1f4bd9877e82b70c1e9c553c0cb6426dc4dde0..41b3620bc896414f82c18790392471886a1e11c5
 100644
--- a/fs/unionfs/xattr.c
+++ b/fs/unionfs/xattr.c
@@ -51,7 +51,7 @@ void unionfs_xattr_free(void *ptr, size_
  * dentry->d_inode->i_mutex locked
  */
 ssize_t unionfs_getxattr(struct dentry * dentry, const char *name, void *value,
-               size_t size)
+                        size_t size)
 {
        struct dentry *hidden_dentry = NULL;
        int err = -EOPNOTSUPP;
@@ -72,7 +72,7 @@ ssize_t unionfs_getxattr(struct dentry *
  * dentry->d_inode->i_mutex locked
  */
 int unionfs_setxattr(struct dentry *dentry, const char *name, const void 
*value,
-               size_t size, int flags)
+                    size_t size, int flags)
 {
        struct dentry *hidden_dentry = NULL;
        int err = -EOPNOTSUPP;
@@ -128,4 +128,3 @@ ssize_t unionfs_listxattr(struct dentry 
        unionfs_unlock_dentry(dentry);
        return err;
 }
-
diff --git a/include/linux/fs_stack.h b/include/linux/fs_stack.h
index 
bb516ceeefc91835d083c2184eec9761ebdd7c87..891154de4d360f8429b392ee52db3c0677f7d866
 100644
--- a/include/linux/fs_stack.h
+++ b/include/linux/fs_stack.h
@@ -9,7 +9,7 @@ #include <linux/fs.h>
 
 /* externs for fs/stack.c */
 extern void fsstack_copy_attr_all(struct inode *dest, const struct inode *src,
-                               int (*get_nlinks)(struct inode *));
+                                 int (*get_nlinks)(struct inode *));
 
 extern void fsstack_copy_inode_size(struct inode *dst, const struct inode 
*src);
 
_______________________________________________
unionfs-cvs mailing list: http://unionfs.filesystems.org/
[email protected]
http://www.fsl.cs.sunysb.edu/mailman/listinfo/unionfs-cvs

Reply via email to