[PATCH] unionfs: make functions static
authorAdrian Bunk <bunk@stusta.de>
Mon, 2 Jul 2007 18:27:57 +0000 (14:27 -0400)
committerErez Zadok <ezk@cs.sunysb.edu>
Sun, 23 Mar 2008 03:48:22 +0000 (23:48 -0400)
This patch makes some needlessly global functions static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
fs/unionfs/lookup.c
fs/unionfs/mmap.c
fs/unionfs/union.h

index 4e89a3c4b87b9d9476f0845072e1bac18b4320bb..da991b32ab013ed287a2670ec64ca7f059965c4f 100644 (file)
@@ -18,6 +18,8 @@
 
 #include "union.h"
 
+static int realloc_dentry_private_data(struct dentry *dentry);
+
 /* is the filename valid == !(whiteout for a file or opaque dir marker) */
 static int is_validname(const char *name)
 {
@@ -514,7 +516,7 @@ static inline int __realloc_dentry_private_data(struct dentry *dentry)
 }
 
 /* UNIONFS_D(dentry)->lock must be locked */
-int realloc_dentry_private_data(struct dentry *dentry)
+static int realloc_dentry_private_data(struct dentry *dentry)
 {
        if (!__realloc_dentry_private_data(dentry))
                return 0;
index 9cd51f0908d8d67da03842ad4d19891e8dcc4bf5..40f7f29b1180c6763e57b941f8ead0f9e497384f 100644 (file)
@@ -52,7 +52,7 @@
  * such day as Linux can better support address_space_ops in a stackable
  * fashion.
  */
-int unionfs_writepage(struct page *page, struct writeback_control *wbc)
+static int unionfs_writepage(struct page *page, struct writeback_control *wbc)
 {
        int err = -EIO;
        struct inode *inode;
@@ -181,7 +181,7 @@ out:
        return err;
 }
 
-int unionfs_readpage(struct file *file, struct page *page)
+static int unionfs_readpage(struct file *file, struct page *page)
 {
        int err;
 
@@ -211,8 +211,8 @@ out:
        return err;
 }
 
-int unionfs_prepare_write(struct file *file, struct page *page, unsigned from,
-                         unsigned to)
+static int unionfs_prepare_write(struct file *file, struct page *page,
+                                unsigned from, unsigned to)
 {
        int err;
 
@@ -236,8 +236,8 @@ int unionfs_prepare_write(struct file *file, struct page *page, unsigned from,
        return err;
 }
 
-int unionfs_commit_write(struct file *file, struct page *page, unsigned from,
-                        unsigned to)
+static int unionfs_commit_write(struct file *file, struct page *page,
+                               unsigned from, unsigned to)
 {
        int err = -ENOMEM;
        struct inode *inode, *lower_inode;
@@ -302,7 +302,7 @@ out:
        return err;             /* assume all is ok */
 }
 
-void unionfs_sync_page(struct page *page)
+static void unionfs_sync_page(struct page *page)
 {
        struct inode *inode;
        struct inode *lower_inode;
index cd1f37c1026151a145fd31f3aaf6e0da3f867b01..b4743939c89d41e6735c1c64d5c909d73ff51f32 100644 (file)
@@ -248,7 +248,6 @@ static inline void unionfs_double_lock_dentry(struct dentry *d1,
        unionfs_lock_dentry(d2);
 }
 
-extern int realloc_dentry_private_data(struct dentry *dentry);
 extern int new_dentry_private_data(struct dentry *dentry);
 extern void free_dentry_private_data(struct dentry *dentry);
 extern void update_bstart(struct dentry *dentry);