Lines Matching full:files
4 This document describes how locking for files (struct file)
5 and file descriptor table (struct files) works.
8 with a lock (files->file_lock) and reference count (files->count).
15 The files (struct file) themselves are protected using
30 and files->fdtab points to the new structure. The fdtable
43 fdt = files_fdtable(files);
58 3. For any update to the fd table, files->file_lock must
83 file = fcheck_files(files, fd);
106 holding files->file_lock. If ->file_lock is dropped, then
107 another thread expand the files thereby creating a new
111 spin_lock(&files->file_lock);
112 fd = locate_fd(files, file, start);
115 fdt = files_fdtable(files);
118 spin_unlock(&files->file_lock);