aboutsummaryrefslogtreecommitdiffstats
path: root/fs/coda
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2006-03-24 06:15:53 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-24 10:33:21 -0500
commitc98d8cfbc600af88e9e6cffc84dd342280445760 (patch)
treebcf88e2905ba6b640e120a7c6529e3dcddb8c130 /fs/coda
parent2c2212901f8b3fc84f36cb98150cfc2f6b4752f8 (diff)
[PATCH] fs/coda/: proper prototypes
Introduce a file fs/coda/coda_int.h with proper prototypes for some code. Signed-off-by: Adrian Bunk <bunk@stusta.de> Acked-by: Jan Harkes <jaharkes@cs.cmu.edu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/coda')
-rw-r--r--fs/coda/coda_int.h13
-rw-r--r--fs/coda/dir.c3
-rw-r--r--fs/coda/file.c2
-rw-r--r--fs/coda/inode.c2
-rw-r--r--fs/coda/psdev.c9
5 files changed, 21 insertions, 8 deletions
diff --git a/fs/coda/coda_int.h b/fs/coda/coda_int.h
new file mode 100644
index 000000000000..9e6338fea514
--- /dev/null
+++ b/fs/coda/coda_int.h
@@ -0,0 +1,13 @@
1#ifndef _CODA_INT_
2#define _CODA_INT_
3
4extern struct file_system_type coda_fs_type;
5
6void coda_destroy_inodecache(void);
7int coda_init_inodecache(void);
8int coda_fsync(struct file *coda_file, struct dentry *coda_dentry,
9 int datasync);
10
11#endif /* _CODA_INT_ */
12
13
diff --git a/fs/coda/dir.c b/fs/coda/dir.c
index 8f1a517f8b4e..54f76de8a686 100644
--- a/fs/coda/dir.c
+++ b/fs/coda/dir.c
@@ -27,6 +27,8 @@
27#include <linux/coda_cache.h> 27#include <linux/coda_cache.h>
28#include <linux/coda_proc.h> 28#include <linux/coda_proc.h>
29 29
30#include "coda_int.h"
31
30/* dir inode-ops */ 32/* dir inode-ops */
31static int coda_create(struct inode *dir, struct dentry *new, int mode, struct nameidata *nd); 33static int coda_create(struct inode *dir, struct dentry *new, int mode, struct nameidata *nd);
32static struct dentry *coda_lookup(struct inode *dir, struct dentry *target, struct nameidata *nd); 34static struct dentry *coda_lookup(struct inode *dir, struct dentry *target, struct nameidata *nd);
@@ -50,7 +52,6 @@ static int coda_dentry_delete(struct dentry *);
50/* support routines */ 52/* support routines */
51static int coda_venus_readdir(struct file *filp, filldir_t filldir, 53static int coda_venus_readdir(struct file *filp, filldir_t filldir,
52 void *dirent, struct dentry *dir); 54 void *dirent, struct dentry *dir);
53int coda_fsync(struct file *, struct dentry *dentry, int datasync);
54 55
55/* same as fs/bad_inode.c */ 56/* same as fs/bad_inode.c */
56static int coda_return_EIO(void) 57static int coda_return_EIO(void)
diff --git a/fs/coda/file.c b/fs/coda/file.c
index 30b4630bd735..146a991d6eb5 100644
--- a/fs/coda/file.c
+++ b/fs/coda/file.c
@@ -24,6 +24,8 @@
24#include <linux/coda_psdev.h> 24#include <linux/coda_psdev.h>
25#include <linux/coda_proc.h> 25#include <linux/coda_proc.h>
26 26
27#include "coda_int.h"
28
27/* if CODA_STORE fails with EOPNOTSUPP, venus clearly doesn't support 29/* if CODA_STORE fails with EOPNOTSUPP, venus clearly doesn't support
28 * CODA_STORE/CODA_RELEASE and we fall back on using the CODA_CLOSE upcall */ 30 * CODA_STORE/CODA_RELEASE and we fall back on using the CODA_CLOSE upcall */
29static int use_coda_close; 31static int use_coda_close;
diff --git a/fs/coda/inode.c b/fs/coda/inode.c
index 04a73fb4848f..7d7d52f74b28 100644
--- a/fs/coda/inode.c
+++ b/fs/coda/inode.c
@@ -31,6 +31,8 @@
31#include <linux/coda_fs_i.h> 31#include <linux/coda_fs_i.h>
32#include <linux/coda_cache.h> 32#include <linux/coda_cache.h>
33 33
34#include "coda_int.h"
35
34/* VFS super_block ops */ 36/* VFS super_block ops */
35static void coda_clear_inode(struct inode *); 37static void coda_clear_inode(struct inode *);
36static void coda_put_super(struct super_block *); 38static void coda_put_super(struct super_block *);
diff --git a/fs/coda/psdev.c b/fs/coda/psdev.c
index 6a3df88accfe..98c74fe2e139 100644
--- a/fs/coda/psdev.c
+++ b/fs/coda/psdev.c
@@ -48,12 +48,9 @@
48#include <linux/coda_psdev.h> 48#include <linux/coda_psdev.h>
49#include <linux/coda_proc.h> 49#include <linux/coda_proc.h>
50 50
51#define upc_free(r) kfree(r) 51#include "coda_int.h"
52 52
53/* 53#define upc_free(r) kfree(r)
54 * Coda stuff
55 */
56extern struct file_system_type coda_fs_type;
57 54
58/* statistics */ 55/* statistics */
59int coda_hard; /* allows signals during upcalls */ 56int coda_hard; /* allows signals during upcalls */
@@ -394,8 +391,6 @@ out:
394MODULE_AUTHOR("Peter J. Braam <braam@cs.cmu.edu>"); 391MODULE_AUTHOR("Peter J. Braam <braam@cs.cmu.edu>");
395MODULE_LICENSE("GPL"); 392MODULE_LICENSE("GPL");
396 393
397extern int coda_init_inodecache(void);
398extern void coda_destroy_inodecache(void);
399static int __init init_coda(void) 394static int __init init_coda(void)
400{ 395{
401 int status; 396 int status;