Lines Matching refs:cookie
235 struct fscache_cookie *cookie);
378 struct fscache_cookie *cookie; /* netfs's file/index object */ member
485 static inline void __fscache_use_cookie(struct fscache_cookie *cookie) in __fscache_use_cookie() argument
487 atomic_inc(&cookie->n_active); in __fscache_use_cookie()
499 struct fscache_cookie *cookie = object->cookie; in fscache_use_cookie() local
500 return atomic_inc_not_zero(&cookie->n_active) != 0; in fscache_use_cookie()
503 static inline bool __fscache_unuse_cookie(struct fscache_cookie *cookie) in __fscache_unuse_cookie() argument
505 return atomic_dec_and_test(&cookie->n_active); in __fscache_unuse_cookie()
508 static inline void __fscache_wake_unused_cookie(struct fscache_cookie *cookie) in __fscache_wake_unused_cookie() argument
510 wake_up_atomic_t(&cookie->n_active); in __fscache_wake_unused_cookie()
522 struct fscache_cookie *cookie = object->cookie; in fscache_unuse_cookie() local
523 if (__fscache_unuse_cookie(cookie)) in fscache_unuse_cookie()
524 __fscache_wake_unused_cookie(cookie); in fscache_unuse_cookie()