patch-2.1.90 linux/include/linux/coda_linux.h
Next file: linux/include/linux/file.h
Previous file: linux/include/linux/coda_fs_i.h
Back to the patch index
Back to the overall index
- Lines: 42
- Date:
Tue Mar 17 21:19:05 1998
- Orig file:
v2.1.89/linux/include/linux/coda_linux.h
- Orig date:
Tue Mar 10 10:03:35 1998
diff -u --recursive --new-file v2.1.89/linux/include/linux/coda_linux.h linux/include/linux/coda_linux.h
@@ -36,6 +36,7 @@
int coda_open(struct inode *i, struct file *f);
int coda_release(struct inode *i, struct file *f);
int coda_permission(struct inode *inode, int mask);
+int coda_revalidate_inode(struct dentry *);
/* global variables */
extern int coda_debug;
@@ -43,10 +44,13 @@
extern int coda_access_cache;
/* this file: heloers */
+static __inline__ struct ViceFid *coda_i2f(struct inode *);
char *coda_f2s(ViceFid *f);
int coda_isroot(struct inode *i);
int coda_fid_is_volroot(struct ViceFid *);
int coda_iscontrol(const char *name, size_t length);
+
+
void coda_load_creds(struct coda_cred *cred);
int coda_mycred(struct coda_cred *);
void coda_vattr_to_iattr(struct inode *, struct coda_vattr *);
@@ -111,5 +115,19 @@
#define CODA_FREE(ptr,size) do {if (size < 3000) { kfree_s((ptr), (size)); CDEBUG(D_MALLOC, "kfreed: %x at %x.\n", (int) size, (int) ptr); } else { vfree((ptr)); CDEBUG(D_MALLOC, "vfreed: %x at %x.\n", (int) size, (int) ptr);} } while (0)
+
+/* inode to cnode */
+
+static __inline__ struct ViceFid *coda_i2f(struct inode *inode)
+{
+ return &(inode->u.coda_i.c_fid);
+}
+
+#define ITOC(inode) (&((inode)->u.coda_i))
+
+
+
+
+
#endif
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov