search for: ocfs2_dealloc_ast_func

Displaying 1 result from an estimated 1 matches for "ocfs2_dealloc_ast_func".

2008 Oct 23
2
[PATCH 1/1] OCFS2: fix for nfs getting stale inode.
...============================== --- fs/ocfs2/dlmglue.c (revision 3101) +++ fs/ocfs2/dlmglue.c (working copy) @@ -66,6 +66,9 @@ static void ocfs2_super_bast_func(void * static void ocfs2_rename_ast_func(void *opaque); static void ocfs2_rename_bast_func(void *opaque, int level); +static void ocfs2_dealloc_ast_func(void *opaque); +static void ocfs2_dealloc_bast_func(void *opaquei, + int level); /* so far, all locks have gotten along with the same unlock ast */ static void ocfs2_unlock_ast_func(void *opaque, @@ -122,6 +125,13 @@ static struct ocfs2_lock_res_ops ocfs2_r .unblock = ocfs2_unblock_osb...