Displaying 1 result from an estimated 1 matches for "ocfs_dentry_revalidate24".
Did you mean:
ocfs_dentry_revalidate
2004 Jun 14
0
[PATCH] dcache.c polishing
...c(struct dentry *dentry, void *ignore);
-
-/*
- * ocfs_dentry_revalidate()
- *
- */
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
-int ocfs_dentry_revalidate (struct dentry *dentry, struct nameidata *nd)
-#else
-int ocfs_dentry_revalidate (struct dentry *dentry, int flags)
-#endif
+static int ocfs_dentry_revalidate24(struct dentry *dentry, int flags)
{
- int ret = 0; /* if all else fails, just return false */
struct inode *inode = dentry->d_inode;
+ int ret = 0; /* if all else fails, just return false */
ocfs_super *osb;
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
- int flags = nd ? nd->...