Lines Matching refs:files
7 This document describes how locking for files (struct file)
8 and file descriptor table (struct files) works.
11 with a lock (files->file_lock) and reference count (files->count).
18 The files (struct file) themselves are protected using
33 and files->fdtab points to the new structure. The fdtable
46 fdt = files_fdtable(files);
61 3. For any update to the fd table, files->file_lock must
87 file = files_lookup_fd_rcu(files, fd);
110 holding files->file_lock. If ->file_lock is dropped, then
111 another thread expand the files thereby creating a new
116 spin_lock(&files->file_lock);
117 fd = locate_fd(files, file, start);
120 fdt = files_fdtable(files);
123 spin_unlock(&files->file_lock);