Searched refs:files (Results 1 - 25 of 213) 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.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)
170 __releases(files->file_lock)
171 __acquires(files->file_lock)
175 spin_unlock(&files->file_lock);
181 if (atomic_read(&files->count) > 1)
184 spin_lock(&files->file_lock);
195 cur_fdt = files_fdtable(files);
412 close_files(struct files_struct * files) argument
444 put_files_struct(struct files_struct *files) argument
458 struct files_struct * files = tsk->files; local
501 struct files_struct *files = current->files; local
568 __put_unused_fd(struct files_struct *files, unsigned int fd) argument
578 struct files_struct *files = current->files; local
604 struct files_struct *files = current->files; local
642 file_close_fd_locked(struct files_struct *files, unsigned fd) argument
663 struct files_struct *files = current->files; local
703 __range_close(struct files_struct *files, unsigned int fd, unsigned int max_fd) argument
812 struct files_struct *files = current->files; local
822 do_close_on_exec(struct files_struct *files) argument
954 __fget_files_rcu(struct files_struct *files, unsigned int fd, fmode_t mask) argument
1030 __fget_files(struct files_struct *files, unsigned int fd, fmode_t mask) argument
1081 struct files_struct *files; local
1096 struct files_struct *files; local
1133 struct files_struct *files = current->files; local
1209 struct files_struct *files = current->files; local
1222 struct files_struct *files = current->files; local
1279 struct files_struct *files = current->files; local
1358 struct files_struct *files = current->files; local
1396 struct files_struct *files = current->files; local
1441 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
/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/include/linux/
H A Dfdtable.h74 #define rcu_dereference_check_fdtable(files, fdtfd) \
75 rcu_dereference_check((fdtfd), lockdep_is_held(&(files)->file_lock))
77 #define files_fdtable(files) \
78 rcu_dereference_check_fdtable((files), (files)->fdt)
83 static inline struct file *files_lookup_fd_raw(struct files_struct *files, unsigned int fd) argument
85 struct fdtable *fdt = rcu_dereference_raw(files->fdt);
99 static inline struct file *files_lookup_fd_locked(struct files_struct *files, unsigned int fd) argument
101 RCU_LOCKDEP_WARN(!lockdep_is_held(&files->file_lock),
103 return files_lookup_fd_raw(files, f
[all...]
/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/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/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
/linux-master/tools/testing/selftests/cpufreq/
H A Dcpufreq.sh48 local files=`ls $1`
52 for file in $files; do
80 local files=`ls $1`
84 for file in $files; do
107 # Update all writable files with their existing values
190 # read/update all cpufreq files
/linux-master/drivers/zorro/
H A DMakefile13 clean-files := devlist.h
15 # Dependencies on generated files need to be listed explicitly
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_debugfs.h66 struct t4_debugfs_entry *files,
/linux-master/drivers/gpu/drm/ci/
H A Dbuild.sh97 mkdir -p /lava-files/
99 cp arch/${KERNEL_ARCH}/boot/${image} /lava-files/.
104 cp ${DEVICE_TREES} /lava-files/.
120 /lava-files/cheza-kernel
124 gzip -k /lava-files/Image
128 # Pass needed files to the test stage
137 xz -7 -c -T${FDO_CI_CONCURRENT:-4} vmlinux > /lava-files/vmlinux.xz
145 ci-fairy s3cp --token-file "${CI_JOB_JWT_FILE}" /lava-files/$f \
149 S3_ARTIFACT_NAME="kernel-files.tar.zst"
163 cp /lava-files/
[all...]

Completed in 189 milliseconds

123456789