Home
last modified time | relevance | path

Searched refs:f_count (Results 1 – 10 of 10) sorted by relevance

/Linux-v4.19/fs/lockd/
Dsvcsubs.c127 dprintk("lockd: found file %p (count %d)\n", file, file->f_count); in nlm_lookup_file()
129 file->f_count++; in nlm_lookup_file()
231 if (file->f_count || !list_empty(&file->f_blocks) || file->f_shares) in nlm_file_inuse()
264 file->f_count++; in nlm_traverse_files()
273 file->f_count--; in nlm_traverse_files()
276 && !file->f_shares && !file->f_count) { in nlm_traverse_files()
300 file, file->f_count); in nlm_release_file()
306 if (--file->f_count == 0 && !nlm_file_inuse(file)) in nlm_release_file()
Dsvclock.c249 file->f_count++; in nlmsvc_create_block()
/Linux-v4.19/fs/
Dfile_table.c111 atomic_long_set(&f->f_count, 1); in __alloc_file()
331 if (atomic_long_dec_and_test(&file->f_count)) { in fput()
360 if (atomic_long_dec_and_test(&file->f_count)) { in __fput_sync()
/Linux-v4.19/Documentation/filesystems/
Dfiles.txt16 reference count (->f_count).
80 on ->f_count :
85 if (atomic_long_inc_not_zero(&file->f_count))
/Linux-v4.19/drivers/video/fbdev/
Dps3fb.c115 atomic_t f_count; /* fb_open count */ member
506 atomic_inc(&ps3fb.f_count); in ps3fb_open()
512 if (atomic_dec_and_test(&ps3fb.f_count)) { in ps3fb_release()
995 atomic_set(&ps3fb.f_count, -1); /* fbcon opens ps3fb */ in ps3fb_probe()
/Linux-v4.19/include/linux/lockd/
Dlockd.h162 unsigned int f_count; /* reference count */ member
/Linux-v4.19/include/linux/
Dfs.h897 atomic_long_t f_count; member
932 atomic_long_inc(&f->f_count); in get_file()
935 #define get_file_rcu(x) atomic_long_inc_not_zero(&(x)->f_count)
936 #define fput_atomic(x) atomic_long_add_unless(&(x)->f_count, -1, 1)
937 #define file_count(x) atomic_long_read(&(x)->f_count)
/Linux-v4.19/drivers/gpu/drm/ttm/
Dttm_object.c562 return atomic_long_inc_not_zero(&dmabuf->file->f_count) != 0L; in get_dma_buf_unless_doomed()
/Linux-v4.19/drivers/net/ethernet/intel/i40e/
Di40e_main.c12095 int f_count = 0; in i40e_add_vsi() local
12300 f_count++; in i40e_add_vsi()
12304 if (f_count) { in i40e_add_vsi()
/Linux-v4.19/drivers/gpu/drm/i915/
Di915_gem.c4832 return atomic_long_read(&obj->base.filp->f_count) == 1; in discard_backing_storage()