Home
last modified time | relevance | path

Searched full:files (Results 1 – 25 of 4390) sorted by relevance

12345678910>>...176

/Linux-v6.6/fs/
Dfile.c51 * space if any. This does not copy the file pointers. Called with the files
74 * clear the extra space. Called with the files spinlock held for write.
167 * The files->file_lock should be held on entry, and will be held on exit.
169 static int expand_fdtable(struct files_struct *files, unsigned int nr) in expand_fdtable() argument
170 __releases(files->file_lock) in expand_fdtable()
171 __acquires(files->file_lock) in expand_fdtable()
175 spin_unlock(&files->file_lock); in expand_fdtable()
181 if (atomic_read(&files->count) > 1) in expand_fdtable()
184 spin_lock(&files->file_lock); in expand_fdtable()
195 cur_fdt = files_fdtable(files); in expand_fdtable()
[all …]
/Linux-v6.6/Documentation/filesystems/
Dntfs3.rst14 compressed files.
25 Note: Applied to empty files, this allows to switch type between
56 - Controls the default permissions for files/directories created after
60 - :rspan:`1` Instead of specifying umask which applies both to files and
61 directories, fmask applies only to files and dmask only to directories.
65 - Files with the Windows-specific HIDDEN (FILE_ATTRIBUTE_HIDDEN) attribute
69 - Files with the Windows-specific SYSTEM (FILE_ATTRIBUTE_SYSTEM) attribute
70 will be marked as system immutable files.
74 when creating and moving or renaming files. Files whose names start
75 with a dot will have the HIDDEN attribute set and files whose names
[all …]
Dfiles.rst7 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
[all …]
Dzonefs.rst13 constraint of zoned block devices to the user. Files representing sequential
60 Zonefs exposes the zones of a zoned block device as files. The files
85 Files representing zones of the same type are grouped together under the same
101 obtained with the stat() or fstat() system calls, indicates the number of files
104 Zone files
107 Zone files are named using the number of the zone they represent within the set
109 contain files named "0", "1", "2", ... The file numbers also represent
112 All read and write operations to zone files are not allowed beyond the file
116 Creating, deleting, renaming or modifying any attribute of files and
122 Conventional zone files
[all …]
Dhfs.rst26 used for creating new files. Default values: '????'.
29 Specifies the user/group that owns all files on the filesystems.
33 Specifies the umask used for all files , all directories or all
34 files and directories. Defaults to the umask of the mounting process.
58 and gid of files.
59 * You can't create hard- or symlinks, device files, sockets or FIFOs.
62 non-standard forks are represented as hidden additional files in the normal
66 * You can't create, delete or rename resource forks of files or the
70 * Copying files to a different filesystem will loose those attributes
/Linux-v6.6/drivers/comedi/drivers/ni_routing/tools/
DMakefile2 # this make file is simply to help autogenerate these files:
12 @echo "\`make csv-files\`"
13 @echo " Creates new csv-files using content of c-files of existing"
14 @echo " ni_routing/* content. New csv files are placed in csv"
16 @echo "\`make c-files\`"
17 @echo " Creates new c-files using content of csv sub-directory. These"
18 @echo " new c-files can be compared to the active content in the"
25 @echo " Remove all generated files/directories EXCEPT for csv/c files."
27 @echo " Remove all generated files/directories."
29 @echo " Build all csv-files, then all new c-files."
[all …]
/Linux-v6.6/tools/testing/selftests/rcutorture/bin/
Dkvm-find-errors.sh4 # Invoke a text editor on all console.log files for all runs with diagnostics,
5 # that is, on all such files having a console.log.diags counterpart.
30 files=
38 files="$files $i.diags $i"
42 files="$files $i.diags $i"
45 if test -n "$files"
47 $editor $files
59 files=
64 files="$files $i.diags $i"
67 if test -n "$files"
[all …]
/Linux-v6.6/Documentation/dev-tools/
Dgcov.rst13 This will create source code files annotated with execution counts
54 To enable profiling for specific files or directories, add a line
61 - For all files in one directory::
65 To exclude files from being profiled even when CONFIG_GCOV_PROFILE_ALL
74 Only files which are linked to the main kernel image or are compiled as
78 Files section in Using gcov with the Linux kernel
81 The gcov kernel support creates the following files in debugfs:
84 Parent directory for all gcov-related files.
132 gcc version used for kernel build. Also the following files need to be
136 - all C source files + headers
[all …]
/Linux-v6.6/Documentation/ABI/stable/
Dsysfs-driver-mlxreg-io8 The files are read only.
15 Description: These files show with which CPLD versions have been burned
18 The files are read only.
28 The files are read only.
34 Description: These files show with which CPLD versions have been burned
37 The files are read only.
43 Description: These files enable and disable the access to the JTAG domain.
66 Description: These files allow asserting system power cycling, switching
79 The files are write only.
93 Description: These files show the system reset cause, as following: power
[all …]
/Linux-v6.6/include/linux/
Dfdtable.h74 #define rcu_dereference_check_fdtable(files, fdtfd) \ argument
75 rcu_dereference_check((fdtfd), lockdep_is_held(&(files)->file_lock))
77 #define files_fdtable(files) \ argument
78 rcu_dereference_check_fdtable((files), (files)->fdt)
83 static inline struct file *files_lookup_fd_raw(struct files_struct *files, unsigned int fd) in files_lookup_fd_raw() argument
85 struct fdtable *fdt = rcu_dereference_raw(files->fdt); in files_lookup_fd_raw()
94 static inline struct file *files_lookup_fd_locked(struct files_struct *files, unsigned int fd) in files_lookup_fd_locked() argument
96 RCU_LOCKDEP_WARN(!lockdep_is_held(&files->file_lock), in files_lookup_fd_locked()
98 return files_lookup_fd_raw(files, fd); in files_lookup_fd_locked()
101 static inline struct file *files_lookup_fd_rcu(struct files_struct *files, unsigned int fd) in files_lookup_fd_rcu() argument
[all …]
/Linux-v6.6/
D.gitignore3 # NOTE! Don't add files that are generated in specific
7 # NOTE! Please use 'git ls-files -i -c --exclude-per-directory=.gitignore'
9 # any tracked files which get ignored after the change.
58 # Top-level generic files
96 # We don't want to ignore the following even if they are dot-files
108 # Generated include files
117 # quilt's files
121 # ctags files
125 # cscope files
129 # gnu global files
[all …]
/Linux-v6.6/scripts/
Dcheckkconfigsymbols.py70 help="ignore files matching this Python regex "
165 files = sorted(undefined_b.get(symbol))
166 undefined[symbol] = files
167 # check if there are new files that reference the undefined symbol
169 files = sorted(undefined_b.get(symbol) -
171 if files:
172 undefined[symbol] = files
185 files = sorted(undefined.get(symbol))
186 print("%s: %s" % (yel("Referencing files"), ", ".join(files)))
293 """Return a list of all files in the current git directory."""
[all …]
DMakefile.clean24 # build a list of files to remove, usually relative to the current
27 __clean-files := \
28 $(clean-files) $(targets) $(hostprogs) $(userprogs) \
34 __clean-files := $(filter-out $(no-clean-files), $(__clean-files))
36 __clean-files := $(wildcard $(addprefix $(obj)/, $(__clean-files)))
43 cmd_clean = printf '$(obj)/%s ' $(patsubst $(obj)/%,%,$(__clean-files)) | xargs rm -rf
46 ifneq ($(strip $(__clean-files)),)
/Linux-v6.6/tools/perf/tests/
Dbuiltin-test-list.c35 static struct script_file *files = NULL; variable
131 pr_err("Too many script files\n"); in append_script()
136 files_tmp = realloc(files, in append_script()
143 files = files_tmp; in append_script()
145 files[files_num - 1].dir = strdup_check(dir); in append_script()
146 files[files_num - 1].file = strdup_check(file); in append_script()
147 files[files_num - 1].desc = strdup_check(desc); in append_script()
148 files[files_num].dir = NULL; in append_script()
149 files[files_num].file = NULL; in append_script()
150 files[files_num].desc = NULL; in append_script()
[all …]
/Linux-v6.6/tools/testing/selftests/pstore/
Dpstore_post_reboot_tests40 prlog -n "Checking dmesg files exist in pstore filesystem ... "
43 prlog -n "Checking console files exist in pstore filesystem ... "
46 prlog -n "Checking pmsg files exist in pstore filesystem ... "
49 prlog -n "Checking dmesg files contain oops end marker"
53 files=`ls dmesg-${backend}-*`
54 operate_files $? "$files" grep_end_trace
76 prlog -n "Removing all files in pstore filesystem "
77 files=`ls *-${backend}-*`
78 operate_files $? "$files" rm
/Linux-v6.6/drivers/gpu/drm/i915/gt/
Dintel_gt_debugfs.c75 static const struct intel_gt_debugfs_file files[] = { in gt_debugfs_register() local
80 intel_gt_debugfs_register_files(root, files, ARRAY_SIZE(files), gt); in gt_debugfs_register()
106 const struct intel_gt_debugfs_file *files, in intel_gt_debugfs_register_files() argument
110 umode_t mode = files->fops->write ? 0644 : 0444; in intel_gt_debugfs_register_files()
112 if (!files->eval || files->eval(data)) in intel_gt_debugfs_register_files()
113 debugfs_create_file(files->name, in intel_gt_debugfs_register_files()
115 files->fops); in intel_gt_debugfs_register_files()
117 files++; in intel_gt_debugfs_register_files()
/Linux-v6.6/tools/perf/util/
Ddata.c22 static void close_dir(struct perf_data_file *files, int nr) in close_dir() argument
25 close(files[nr].fd); in close_dir()
26 zfree(&files[nr].path); in close_dir()
28 free(files); in close_dir()
33 close_dir(data->dir.files, data->dir.nr); in perf_data__close_dir()
38 struct perf_data_file *files = NULL; in perf_data__create_dir() local
44 files = zalloc(nr * sizeof(*files)); in perf_data__create_dir()
45 if (!files) in perf_data__create_dir()
49 struct perf_data_file *file = &files[i]; in perf_data__create_dir()
67 data->dir.files = files; in perf_data__create_dir()
[all …]
/Linux-v6.6/Documentation/filesystems/spufs/
Dspufs.rst25 set of files. These files can be used for manipulating the state of the
26 logical SPU. Users can change permissions on those files, but not actu-
27 ally add or remove files.
40 Files chapter
43 The files in spufs mostly follow the standard behavior for regular sys-
49 All files that support the read(2) operation also support readv(2) and
50 all files that support the write(2) operation also support writev(2).
51 All files support the access(2) and stat(2) family of operations, but
55 All files support the chmod(2)/fchmod(2) and chown(2)/fchown(2) opera-
59 The current set of files is:
[all …]
/Linux-v6.6/Documentation/admin-guide/mm/damon/
Dusage.rst19 features by reading from and writing to special sysfs files. Therefore,
21 reads/writes the sysfs files instead of you. The `DAMON user space tool
42 creates multiple directories and files under its sysfs directory,
44 from the files under the directory.
56 Files Hierarchy
59 The files hierarchy of DAMON sysfs interface is shown below. In the below
61 directory is having ``/`` suffix, and files in each directory are separated by
101 has one directory named ``admin``. The directory contains the files for
112 Under the ``admin`` directory, one directory, ``kdamonds``, which has files for
121 In each kdamond directory, two files (``state`` and ``pid``) and one directory
[all …]
/Linux-v6.6/scripts/clang-tools/
Dgen_compile_commands.py25 # files in a different format. Do not support it.
36 paths: The list of files/directories to handle to find .cmd files.
38 usage = 'Creates a compile_commands.json database from kernel .cmd files'
59 paths_help = ('directories to search or files to parse '
60 '(files should be *.o, *.a, or modules.order). '
74 """Generate the iterator of .cmd files found under the directory.
79 directory: The directory to search for .cmd files.
113 """Generate the iterator of .cmd files associated with the archive.
128 """Generate the iterator of .cmd files associated with the modules.order.
156 root_directory: The directory that was searched for .cmd files. Usually
[all …]
/Linux-v6.6/Documentation/process/
Dlicense-rules.rst18 as a whole, though individual source files can have a different license
28 Aside from that, individual files can be provided under a dual license,
32 The User-space API (UAPI) header files, which describe the interface of
37 into any source files which create an executable running on the Linux
53 The Linux kernel requires the precise SPDX identifier in all source files.
63 The SPDX license identifier in kernel files shall be added at the first
65 of files this is the first line, except for scripts which require the
86 files. There was build breakage observed with generated .lds files where
109 For example, the linux kernel UAPI files use the expression::
125 to be selected. For example, some dtsi files are available under dual
[all …]
/Linux-v6.6/fs/jffs2/
DLICENCE1 The files in this directory and elsewhere which refer to this LICENCE
20 As a special exception, if other files instantiate templates or use
21 macros or inline functions from these files, or you compile these
22 files and link them with other works to produce a work based on these
23 files, these files do not by themselves cause the resulting work to be
25 these files must still be made available in accordance with section (3)
/Linux-v6.6/tools/usb/usbip/
DINSTALL21 It may also create one or more `.h' files containing system-dependent
31 cache files.
58 4. Type `make install' to install the programs and any data files and
61 5. You can remove the program binaries and object files from the
63 files that `configure' created (so you can compile the package for
67 all sorts of other programs in order to regenerate files that came
71 files again.
92 same time, by placing the object files for each architecture in their
94 directory where you want the object files and executables to go and run
107 `/usr/local/bin', include files under `/usr/local/include', etc. You
[all …]
/Linux-v6.6/Documentation/devicetree/bindings/
Dwriting-schema.rst6 Devicetree bindings are written using json-schema vocabulary. Schema files are
24 references to other files specified in schema "$ref" properties. A $ref value
28 local files, but there may not actually be files present at those locations.
86 validation of DT files.
98 boilerplate. The tools process the schema files to produce the final schema for
124 binding documents and validate DTS files using the DT schema. The DT schema
129 Note that 'dtschema' installation requires 'swig' and Python development files
149 In order to perform validation of DT source files, use the ``dtbs_check`` target::
153 Note that ``dtbs_check`` will skip any binding schema files with errors. It is
155 binding schema files.
[all …]
/Linux-v6.6/Documentation/kbuild/
Dmakefiles.rst22 (the resident kernel image) and modules (any module files).
46 any kernel Makefiles (or any other source files).
65 The kbuild files
72 The preferred name for the kbuild files are ``Makefile`` but ``Kbuild`` can
83 These lines define the files to be built, any special compilation
109 The kbuild Makefile specifies object files for vmlinux
113 Kbuild compiles all the $(obj-y) files. It then calls
114 ``$(AR) rcSTP`` to merge these files into one built-in.a file.
118 The order of files in $(obj-y) is significant. Duplicates in
132 # Each configuration option enables a list of files.
[all …]

12345678910>>...176