Home
last modified time | relevance | path

Searched refs:nf_ref (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/fs/nfsd/
H A Dtrace.h888 __field(int, nf_ref)
895 __entry->nf_ref = refcount_read(&nf->nf_ref);
902 __entry->nf_ref,
928 __field(unsigned int, nf_ref)
933 __entry->nf_ref = refcount_read(&nf->nf_ref);
937 __entry->nf_inode, __entry->nf_ref,
958 __field(unsigned int, nf_ref)
969 __entry->nf_ref = nf ? refcount_read(&nf->nf_ref) : 0;
979 __entry->nf_ref, show_nf_flags(__entry->nf_flags),
1024 __field(unsigned int, nf_ref)
[all …]
H A Dfilecache.c231 refcount_set(&nf->nf_ref, 1); in nfsd_file_alloc()
345 if (nf && refcount_inc_not_zero(&nf->nf_ref)) in nfsd_file_get()
370 if (refcount_dec_not_one(&nf->nf_ref)) in nfsd_file_put()
390 if (refcount_dec_and_test(&nf->nf_ref)) in nfsd_file_put()
472 if (!refcount_dec_and_test(&nf->nf_ref)) { in nfsd_file_lru_cb()
559 if (refcount_sub_and_test(decrement, &nf->nf_ref)) { in nfsd_file_cond_queue()
1020 WARN_ON_ONCE(refcount_dec_and_test(&nf->nf_ref)); in nfsd_file_do_acquire()
1100 if (refcount_dec_and_test(&nf->nf_ref)) in nfsd_file_do_acquire()
1122 if (refcount_dec_and_test(&nf->nf_ref)) in nfsd_file_do_acquire()
H A Dfilecache.h42 refcount_t nf_ref; member