Home
last modified time | relevance | path

Searched refs:sentinel (Results 1 – 2 of 2) sorted by relevance

/fs/nfs/
Dnfs3acl.c22 struct posix_acl *sentinel = uncached_acl_sentinel(current); in nfs3_prepare_get_acl() local
24 if (cmpxchg(p, ACL_NOT_CACHED, sentinel) != ACL_NOT_CACHED) { in nfs3_prepare_get_acl()
31 struct posix_acl *sentinel = uncached_acl_sentinel(current); in nfs3_complete_get_acl() local
35 if (cmpxchg(p, sentinel, acl) != sentinel) in nfs3_complete_get_acl()
41 struct posix_acl *sentinel = uncached_acl_sentinel(current); in nfs3_abort_get_acl() local
44 cmpxchg(p, sentinel, ACL_NOT_CACHED); in nfs3_abort_get_acl()
/fs/
Dposix_acl.c98 void *sentinel; in get_acl() local
115 sentinel = uncached_acl_sentinel(current); in get_acl()
126 if (cmpxchg(p, ACL_NOT_CACHED, sentinel) != ACL_NOT_CACHED) in get_acl()
148 cmpxchg(p, sentinel, ACL_NOT_CACHED); in get_acl()
156 if (unlikely(cmpxchg(p, sentinel, acl) != sentinel)) in get_acl()