commit 61bf34de58fb9b7af3137cdca2eccefbdad3f1c7
Author: Erez Zadok <[EMAIL PROTECTED](none)>
Date:   Sun Mar 25 01:29:41 2007 -0400

    cleanup: consistent pointer declaration spacing.
    
    Change instances of "foo * var" to "foo *var" for consistency.

diff --git a/fs/unionfs/copyup.c b/fs/unionfs/copyup.c
index 6bfbb8e..34cd6a5 100644
--- a/fs/unionfs/copyup.c
+++ b/fs/unionfs/copyup.c
@@ -543,7 +543,7 @@ struct dentry *create_parents(struct inode *dir, struct 
dentry *dentry,
 }
 
 /* purge a dentry's lower-branch states (dput/mntput, etc.) */
-static void __cleanup_dentry(struct dentry * dentry, int bindex,
+static void __cleanup_dentry(struct dentry *dentry, int bindex,
                             int old_bstart, int old_bend)
 {
        int loop_start;
@@ -594,7 +594,7 @@ static void __cleanup_dentry(struct dentry * dentry, int 
bindex,
 }
 
 /* set lower inode ptr and update bstart & bend if necessary */
-static void __set_inode(struct dentry * upper, struct dentry * lower,
+static void __set_inode(struct dentry *upper, struct dentry *lower,
                        int bindex)
 {
        unionfs_set_lower_inode_idx(upper->d_inode, bindex,
@@ -607,7 +607,7 @@ static void __set_inode(struct dentry * upper, struct 
dentry * lower,
 }
 
 /* set lower dentry ptr and update bstart & bend if necessary */
-static void __set_dentry(struct dentry * upper, struct dentry * lower,
+static void __set_dentry(struct dentry *upper, struct dentry *lower,
                         int bindex)
 {
        unionfs_set_lower_dentry_idx(upper, bindex, lower);
diff --git a/fs/unionfs/file.c b/fs/unionfs/file.c
index 8817598..df4982d 100644
--- a/fs/unionfs/file.c
+++ b/fs/unionfs/file.c
@@ -53,8 +53,8 @@ out:
        return err;
 }
 
-static ssize_t unionfs_read(struct file * file, char __user * buf,
-                           size_t count, loff_t * ppos)
+static ssize_t unionfs_read(struct file *file, char __user *buf,
+                           size_t count, loff_t *ppos)
 {
        struct file *hidden_file;
        loff_t pos = *ppos;
@@ -77,7 +77,7 @@ out:
        return err;
 }
 
-static ssize_t unionfs_write(struct file * file, const char __user * buf,
+static ssize_t unionfs_write(struct file *file, const char __user *buf,
                             size_t count, loff_t *ppos)
 {
        int err;
@@ -135,7 +135,7 @@ static int unionfs_file_readdir(struct file *file, void 
*dirent,
        return -ENOTDIR;
 }
 
-static unsigned int unionfs_poll(struct file *file, poll_table * wait)
+static unsigned int unionfs_poll(struct file *file, poll_table *wait)
 {
        unsigned int mask = DEFAULT_POLLMASK;
        struct file *hidden_file = NULL;
diff --git a/fs/unionfs/inode.c b/fs/unionfs/inode.c
index 094b2b9..b327032 100644
--- a/fs/unionfs/inode.c
+++ b/fs/unionfs/inode.c
@@ -508,7 +508,7 @@ out:
        return err;
 }
 
-static int unionfs_readlink(struct dentry *dentry, char __user * buf,
+static int unionfs_readlink(struct dentry *dentry, char __user *buf,
                            int bufsiz)
 {
        int err;
diff --git a/fs/unionfs/super.c b/fs/unionfs/super.c
index 65ef54c..802de6b 100644
--- a/fs/unionfs/super.c
+++ b/fs/unionfs/super.c
@@ -862,7 +862,7 @@ static void unionfs_destroy_inode(struct inode *inode)
 }
 
 /* unionfs inode cache constructor */
-static void init_once(void *v, struct kmem_cache * cachep, unsigned long flags)
+static void init_once(void *v, struct kmem_cache *cachep, unsigned long flags)
 {
        struct unionfs_inode_info *i = v;
 
diff --git a/fs/unionfs/xattr.c b/fs/unionfs/xattr.c
index 4dc8ada..12d618b 100644
--- a/fs/unionfs/xattr.c
+++ b/fs/unionfs/xattr.c
@@ -51,7 +51,7 @@ void unionfs_xattr_free(void *ptr, size_t size)
  * BKL held by caller.
  * dentry->d_inode->i_mutex locked
  */
-ssize_t unionfs_getxattr(struct dentry * dentry, const char *name, void *value,
+ssize_t unionfs_getxattr(struct dentry *dentry, const char *name, void *value,
                         size_t size)
 {
        struct dentry *hidden_dentry = NULL;
@@ -115,7 +115,7 @@ int unionfs_removexattr(struct dentry *dentry, const char 
*name)
  * BKL held by caller.
  * dentry->d_inode->i_mutex locked
  */
-ssize_t unionfs_listxattr(struct dentry * dentry, char *list, size_t size)
+ssize_t unionfs_listxattr(struct dentry *dentry, char *list, size_t size)
 {
        struct dentry *hidden_dentry = NULL;
        int err = -EOPNOTSUPP;
_______________________________________________
unionfs-cvs mailing list: http://unionfs.filesystems.org/
[email protected]
http://www.fsl.cs.sunysb.edu/mailman/listinfo/unionfs-cvs

Reply via email to