]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - fs/exofs/super.c
exofs/super.c: local functions should be static
[karo-tx-linux.git] / fs / exofs / super.c
index 274894053b025b69e9908012b11fc6d10ab32306..afe79ee088ad943c2504685d333c55572d3ff284 100644 (file)
@@ -355,7 +355,7 @@ static const struct export_operations exofs_export_ops;
 /*
  * Write the superblock to the OSD
  */
-int exofs_sync_fs(struct super_block *sb, int wait)
+static int exofs_sync_fs(struct super_block *sb, int wait)
 {
        struct exofs_sb_info *sbi;
        struct exofs_fscb *fscb;
@@ -429,7 +429,7 @@ static void _exofs_print_device(const char *msg, const char *dev_path,
                msg, dev_path ?: "", odi->osdname, _LLU(pid));
 }
 
-void exofs_free_sbi(struct exofs_sb_info *sbi)
+static void exofs_free_sbi(struct exofs_sb_info *sbi)
 {
        while (sbi->comps.numdevs) {
                int i = --sbi->comps.numdevs;
@@ -981,7 +981,7 @@ static const struct super_operations exofs_sops = {
  * EXPORT OPERATIONS
  *****************************************************************************/
 
-struct dentry *exofs_get_parent(struct dentry *child)
+static struct dentry *exofs_get_parent(struct dentry *child)
 {
        unsigned long ino = exofs_parent_ino(child);