Searched refs:files (Results 1 - 25 of 220) sorted by relevance

123456789

/linux-master/tools/testing/selftests/rcutorture/bin/
H A 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
[all...]
/linux-master/fs/
H A Dfile.c52 * space if any. This does not copy the file pointers. Called with the files
70 * clear the extra space. Called with the files spinlock held for write.
163 * The files->file_lock should be held on entry, and will be held on exit.
165 static int expand_fdtable(struct files_struct *files, unsigned int nr)
166 __releases(files->file_lock)
167 __acquires(files->file_lock)
171 spin_unlock(&files->file_lock);
177 if (atomic_read(&files->count) > 1)
180 spin_lock(&files->file_lock);
191 cur_fdt = files_fdtable(files);
413 close_files(struct files_struct * files) argument
445 put_files_struct(struct files_struct *files) argument
459 struct files_struct * files = tsk->files; local
502 struct files_struct *files = current->files; local
569 __put_unused_fd(struct files_struct *files, unsigned int fd) argument
579 struct files_struct *files = current->files; local
605 struct files_struct *files = current->files; local
643 file_close_fd_locked(struct files_struct *files, unsigned fd) argument
664 struct files_struct *files = current->files; local
704 __range_close(struct files_struct *files, unsigned int fd, unsigned int max_fd) argument
813 struct files_struct *files = current->files; local
823 do_close_on_exec(struct files_struct *files) argument
950 __fget_files_rcu(struct files_struct *files, unsigned int fd, fmode_t mask) argument
1026 __fget_files(struct files_struct *files, unsigned int fd, fmode_t mask) argument
1077 struct files_struct *files; local
1092 struct files_struct *files; local
1129 struct files_struct *files = current->files; local
1205 struct files_struct *files = current->files; local
1273 struct files_struct *files = current->files; local
1352 struct files_struct *files = current->files; local
1390 struct files_struct *files = current->files; local
1435 iterate_fd(struct files_struct *files, unsigned n, int (*f)(const void *, struct file *, unsigned), const void *p) argument
[all...]
/linux-master/drivers/gpu/drm/i915/gt/uc/
H A Dintel_huc_debugfs.c28 static const struct intel_gt_debugfs_file files[] = { local
35 intel_gt_debugfs_register_files(root, files, ARRAY_SIZE(files), huc);
H A Dintel_gsc_uc_debugfs.c31 static const struct intel_gt_debugfs_file files[] = { local
38 intel_gt_debugfs_register_files(root, files, ARRAY_SIZE(files), gsc_uc);
H A Dintel_uc_debugfs.c42 static const struct intel_gt_debugfs_file files[] = { local
60 intel_gt_debugfs_register_files(root, files, ARRAY_SIZE(files), uc);
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_gt_debugfs.c75 static const struct intel_gt_debugfs_file files[] = { local
80 intel_gt_debugfs_register_files(root, files, ARRAY_SIZE(files), gt);
106 const struct intel_gt_debugfs_file *files,
110 umode_t mode = files->fops->write ? 0644 : 0444;
112 if (!files->eval || files->eval(data))
113 debugfs_create_file(files->name,
115 files->fops);
117 files
105 intel_gt_debugfs_register_files(struct dentry *root, const struct intel_gt_debugfs_file *files, unsigned long count, void *data) argument
[all...]
H A Dintel_gt_engines_debugfs.c31 static const struct intel_gt_debugfs_file files[] = { local
35 intel_gt_debugfs_register_files(root, files, ARRAY_SIZE(files), gt);
/linux-master/scripts/
H A 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)),)
[all...]
H A Dmisc-check6 # Detect files that are tracked but ignored by git. This is checked only when
15 git -C ${srctree:-.} ls-files -i -c --exclude-per-directory=.gitignore 2>/dev/null |
16 sed 's/$/: warning: ignored by one of the .gitignore files/' >&2
H A Dchecktransupdate.py13 This will print all the files that need to be updated in the zh_CN locale.
137 help="Locale to check when files are not specified",
147 "--print-updated-files",
150 help="Print files that do no need to be updated",
161 "files", nargs="*", help="Files to check, if not specified, check all files"
170 # get files related to linux path
171 files = args.files
172 if len(files)
[all...]
H A Dmake_fit.py8 """Build a FIT containing a lot of devicetree files
15 Creates a FIT containing the supplied kernel and a set of devicetree files,
28 looks at the .cmd files produced by the kernel build.
66 epilog = 'Build a FIT from a directory tree containing .dtb files'
87 help='Specifies the devicetree files to process')
150 for model, compat, files in entries:
155 fsw.property('fdt', bytes(''.join(f'fdt-{x}\x00' for x in files), "ascii"))
225 files: list of filenames corresponding to the DTB
243 files = cmd.split()
244 files
[all...]
/linux-master/include/linux/
H A Dfdtable.h64 #define rcu_dereference_check_fdtable(files, fdtfd) \
65 rcu_dereference_check((fdtfd), lockdep_is_held(&(files)->file_lock))
67 #define files_fdtable(files) \
68 rcu_dereference_check_fdtable((files), (files)->fdt)
73 static inline struct file *files_lookup_fd_raw(struct files_struct *files, unsigned int fd) argument
75 struct fdtable *fdt = rcu_dereference_raw(files->fdt);
89 static inline struct file *files_lookup_fd_locked(struct files_struct *files, unsigned int fd) argument
91 RCU_LOCKDEP_WARN(!lockdep_is_held(&files->file_lock),
93 return files_lookup_fd_raw(files, f
100 close_on_exec(unsigned int fd, const struct files_struct *files) argument
[all...]
/linux-master/include/drm/
H A Ddrm_debugfs.h13 * copy of this software and associated documentation files (the "Software"),
142 void drm_debugfs_create_files(const struct drm_info_list *files,
145 int drm_debugfs_remove_files(const struct drm_info_list *files, int count,
152 const struct drm_debugfs_info *files, int count);
157 static inline void drm_debugfs_create_files(const struct drm_info_list *files, argument
162 static inline int drm_debugfs_remove_files(const struct drm_info_list *files, argument
175 const struct drm_debugfs_info *files,
174 drm_debugfs_add_files(struct drm_device *dev, const struct drm_debugfs_info *files, int count) argument
/linux-master/tools/net/ynl/
H A Dynl-regen.sh20 files=$(git grep --files-with-matches '^/\* YNL-GEN \(kernel\|uapi\|user\)')
21 for f in $files; do
/linux-master/tools/testing/selftests/pstore/
H A 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-master/scripts/selinux/mdp/
H A DMakefile7 clean-files := policy.* file_contexts
/linux-master/drivers/comedi/drivers/ni_routing/tools/
H A 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
[all...]
/linux-master/drivers/gpu/drm/qxl/
H A Dqxl_debugfs.c5 * a copy of this software and associated documentation files (the
100 struct drm_info_list *files,
106 if (qdev->debugfs[i].files == files) {
118 qdev->debugfs[qdev->debugfs_count].files = files;
122 drm_debugfs_create_files(files, nfiles,
99 qxl_debugfs_add_files(struct qxl_device *qdev, struct drm_info_list *files, unsigned int nfiles) argument
/linux-master/tools/perf/util/
H A Ddata.c23 static void close_dir(struct perf_data_file *files, int nr) argument
26 close(files[nr].fd);
27 zfree(&files[nr].path);
29 free(files);
34 close_dir(data->dir.files, data->dir.nr);
40 struct perf_data_file *files = NULL; local
46 files = zalloc(nr * sizeof(*files));
47 if (!files)
51 struct perf_data_file *file = &files[
90 struct perf_data_file *files = NULL; local
[all...]
/linux-master/tools/testing/selftests/net/netfilter/
H A Dnf_conntrack_packetdrill.sh16 files="
67 for f in $files;do
/linux-master/scripts/package/debian/
H A Drules36 mk-files = $(patsubst binary-%,debian/%.files,$1)
53 $(Q)dh_gencontrol $(DH_OPTIONS) -- -f$(call mk-files,$@)
60 $(Q)truncate -s0 $(call mk-files,$@)
67 $(Q)cat $(call mk-files,$^) > debian/files
79 $(Q)rm -rf debian/deb-env.vars* debian/*.files
/linux-master/tools/testing/selftests/x86/
H A DMakefile114 # header files as an input to the compiler invocation.
115 define extra-files
120 $(eval $(call extra-files,sysret_ss_attrs_64,thunks.S))
121 $(eval $(call extra-files,ptrace_syscall_32,raw_syscall_helper_32.S))
122 $(eval $(call extra-files,test_syscall_vdso_32,thunks_32.S))
123 $(eval $(call extra-files,fsgsbase_restore_64,clang_helpers_64.S))
124 $(eval $(call extra-files,fsgsbase_restore_32,clang_helpers_32.S))
125 $(eval $(call extra-files,sysret_rip_64,clang_helpers_64.S))
/linux-master/io_uring/
H A Dfiletable.c41 table->files = kvcalloc(nr_files, sizeof(table->files[0]),
43 if (unlikely(!table->files))
48 kvfree(table->files);
57 kvfree(table->files);
59 table->files = NULL;
/linux-master/drivers/eisa/
H A DMakefile20 clean-files := devlist.h
/linux-master/kernel/debug/kdb/
H A DMakefile12 clean-files := gen-kdb_cmds.c

Completed in 401 milliseconds

123456789