diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/linux/coda_linux.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/linux/coda_linux.h')
-rw-r--r-- | include/linux/coda_linux.h | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/include/linux/coda_linux.h b/include/linux/coda_linux.h new file mode 100644 index 000000000000..cc621ec409d8 --- /dev/null +++ b/include/linux/coda_linux.h | |||
@@ -0,0 +1,102 @@ | |||
1 | /* | ||
2 | * Coda File System, Linux Kernel module | ||
3 | * | ||
4 | * Original version, adapted from cfs_mach.c, (C) Carnegie Mellon University | ||
5 | * Linux modifications (C) 1996, Peter J. Braam | ||
6 | * Rewritten for Linux 2.1 (C) 1997 Carnegie Mellon University | ||
7 | * | ||
8 | * Carnegie Mellon University encourages users of this software to | ||
9 | * contribute improvements to the Coda project. | ||
10 | */ | ||
11 | |||
12 | #ifndef _LINUX_CODA_FS | ||
13 | #define _LINUX_CODA_FS | ||
14 | |||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/param.h> | ||
17 | #include <linux/mm.h> | ||
18 | #include <linux/vmalloc.h> | ||
19 | #include <linux/slab.h> | ||
20 | #include <linux/wait.h> | ||
21 | #include <linux/types.h> | ||
22 | #include <linux/fs.h> | ||
23 | #include <linux/coda_fs_i.h> | ||
24 | |||
25 | /* operations */ | ||
26 | extern struct inode_operations coda_dir_inode_operations; | ||
27 | extern struct inode_operations coda_file_inode_operations; | ||
28 | extern struct inode_operations coda_ioctl_inode_operations; | ||
29 | |||
30 | extern struct address_space_operations coda_file_aops; | ||
31 | extern struct address_space_operations coda_symlink_aops; | ||
32 | |||
33 | extern struct file_operations coda_dir_operations; | ||
34 | extern struct file_operations coda_file_operations; | ||
35 | extern struct file_operations coda_ioctl_operations; | ||
36 | |||
37 | /* operations shared over more than one file */ | ||
38 | int coda_open(struct inode *i, struct file *f); | ||
39 | int coda_flush(struct file *f); | ||
40 | int coda_release(struct inode *i, struct file *f); | ||
41 | int coda_permission(struct inode *inode, int mask, struct nameidata *nd); | ||
42 | int coda_revalidate_inode(struct dentry *); | ||
43 | int coda_getattr(struct vfsmount *, struct dentry *, struct kstat *); | ||
44 | int coda_setattr(struct dentry *, struct iattr *); | ||
45 | |||
46 | /* global variables */ | ||
47 | extern int coda_fake_statfs; | ||
48 | |||
49 | /* this file: heloers */ | ||
50 | static __inline__ struct CodaFid *coda_i2f(struct inode *); | ||
51 | static __inline__ char *coda_i2s(struct inode *); | ||
52 | static __inline__ void coda_flag_inode(struct inode *, int flag); | ||
53 | char *coda_f2s(struct CodaFid *f); | ||
54 | int coda_isroot(struct inode *i); | ||
55 | int coda_iscontrol(const char *name, size_t length); | ||
56 | |||
57 | void coda_vattr_to_iattr(struct inode *, struct coda_vattr *); | ||
58 | void coda_iattr_to_vattr(struct iattr *, struct coda_vattr *); | ||
59 | unsigned short coda_flags_to_cflags(unsigned short); | ||
60 | |||
61 | /* sysctl.h */ | ||
62 | void coda_sysctl_init(void); | ||
63 | void coda_sysctl_clean(void); | ||
64 | |||
65 | #define CODA_ALLOC(ptr, cast, size) do { \ | ||
66 | if (size < PAGE_SIZE) \ | ||
67 | ptr = (cast)kmalloc((unsigned long) size, GFP_KERNEL); \ | ||
68 | else \ | ||
69 | ptr = (cast)vmalloc((unsigned long) size); \ | ||
70 | if (!ptr) \ | ||
71 | printk("kernel malloc returns 0 at %s:%d\n", __FILE__, __LINE__); \ | ||
72 | else memset( ptr, 0, size ); \ | ||
73 | } while (0) | ||
74 | |||
75 | |||
76 | #define CODA_FREE(ptr,size) \ | ||
77 | do { if (size < PAGE_SIZE) kfree((ptr)); else vfree((ptr)); } while (0) | ||
78 | |||
79 | /* inode to cnode access functions */ | ||
80 | |||
81 | static inline struct coda_inode_info *ITOC(struct inode *inode) | ||
82 | { | ||
83 | return list_entry(inode, struct coda_inode_info, vfs_inode); | ||
84 | } | ||
85 | |||
86 | static __inline__ struct CodaFid *coda_i2f(struct inode *inode) | ||
87 | { | ||
88 | return &(ITOC(inode)->c_fid); | ||
89 | } | ||
90 | |||
91 | static __inline__ char *coda_i2s(struct inode *inode) | ||
92 | { | ||
93 | return coda_f2s(&(ITOC(inode)->c_fid)); | ||
94 | } | ||
95 | |||
96 | /* this will not zap the inode away */ | ||
97 | static __inline__ void coda_flag_inode(struct inode *inode, int flag) | ||
98 | { | ||
99 | ITOC(inode)->c_flags |= flag; | ||
100 | } | ||
101 | |||
102 | #endif | ||