Searched refs:files (Results 101 - 125 of 213) sorted by relevance

123456789

/linux-master/usr/include/
H A DMakefile89 clean-files += $(filter-out Makefile headers_check.pl, $(notdir $(wildcard $(obj)/*)))
/linux-master/drivers/crypto/hisilicon/sec2/
H A Dsec.h185 struct sec_debug_file files[SEC_DEBUG_FILE_NUM]; member in struct:sec_debug
/linux-master/tools/power/x86/amd_pstate_tracer/
H A Damd_pstate_trace.py176 """ clean up existing data files """
238 # Now separate the main overall csv file into per CPU csv files.
349 for root, dirs, files in os.walk('.'):
350 for f in files:
/linux-master/kernel/cgroup/
H A Dlegacy_freezer.c459 static struct cftype files[] = { variable in typeref:struct:cftype
486 .legacy_cftypes = files,
/linux-master/scripts/kconfig/
H A DMakefile124 clean-files += tests/.cache
163 # object files used by all kconfig flavours
234 clean-files += *conf-cflags *conf-libs *conf-bin
/linux-master/include/linux/
H A Dfilelock.h218 struct file *filp, struct files_struct *files);
397 struct file *filp, struct files_struct *files) {}
396 show_fd_locks(struct seq_file *f, struct file *filp, struct files_struct *files) argument
/linux-master/lib/
H A DMakefile8 # These files are disabled because they produce lots of non-interesting and/or
138 # Some KUnit files (hooks.o) need to be built-in even when KUnit is a module,
324 clean-files := crc32table.h
325 clean-files += crc64table.h
357 clean-files += oid_registry_data.c
426 clean-files += $(TEST_FORTIFY_LOGS)
427 clean-files += $(addsuffix .o, $(TEST_FORTIFY_LOGS))
439 clean-files += $(TEST_FORTIFY_LOG)
/linux-master/
H A DMakefile28 # Most importantly: sub-Makefiles should only ever modify files in
36 # The only cases where we need to modify files which have global
114 # Use 'make C=1' to enable checking of only re-compiled files.
115 # Use 'make C=2' to enable checking of *all* source files, regardless
167 # Kbuild will save output files in the current working directory.
172 # cd /dir/to/store/output/files; make -f /dir/to/kernel/source/Makefile
174 # If you want to save output files in a different location, there are
178 # Use "make O=dir/to/store/output/files/"
182 # export KBUILD_OUTPUT=dir/to/store/output/files/; make
763 # Read in dependencies to all Kconfig* files, mak
[all...]
/linux-master/fs/quota/
H A Ddquot.c27 * quota files
682 /* Write all dquot structures to quota files */
772 inode_lock(dqopt->files[cnt]);
773 truncate_inode_pages(&dqopt->files[cnt]->i_data, 0);
774 inode_unlock(dqopt->files[cnt]);
2224 struct inode *inode = dqopt->files[type];
2233 dqopt->files[type] = NULL;
2312 /* Skip syncing and setting flags if quota files are hidden */
2321 /* Now the quota files are just ordinary files an
[all...]
/linux-master/drivers/vfio/pci/
H A Dvfio_pci_core.c845 struct file **files; member in struct:vfio_pci_group_info
1312 struct file **files; local
1330 files = kcalloc(array_count, sizeof(*files), GFP_KERNEL);
1331 if (!group_fds || !files) {
1333 kfree(files);
1340 kfree(files);
1363 files[file_idx] = file;
1373 info.files = files;
[all...]
/linux-master/tools/testing/selftests/bpf/
H A Dtest_offload.py38 files = [] # files to be removed variable
140 if f in files:
141 files.remove(f)
224 files.append(file_name)
588 global files, netns, devs
592 for f in files:
596 files = []
603 files.append(file_name)
611 files
[all...]
/linux-master/fs/
H A Dcoredump.c503 struct file *files[2]; local
505 int err = create_pipe_files(files, 0);
509 cp->file = files[1];
511 err = replace_fd(0, files[0], 0);
512 fput(files[0]);
513 /* and disallow core files too */
945 * easy to generate sparse core files, use a helper that returns
H A Dlibfs.c828 * It can either be used for in-memory filesystems or special files
952 const struct tree_descr *files)
968 * because the root inode is 1, the files array must not contain an
980 for (i = 0; !files->name || files->name[0]; i++, files++) {
981 if (!files->name)
986 printk(KERN_WARNING "%s: %s passed in a files array"
990 dentry = d_alloc_name(s->s_root, files->name);
998 inode->i_mode = S_IFREG | files
951 simple_fill_super(struct super_block *s, unsigned long magic, const struct tree_descr *files) argument
[all...]
/linux-master/fs/cramfs/
H A Dinode.c11 * The actual compression is based on zlib, see the other files.
43 unsigned long files; member in struct:cramfs_sb_info
567 sbi->files = super->fsid.files;
571 sbi->files = 0;
684 buf->f_files = CRAMFS_SB(sb)->files;
/linux-master/fs/kernfs/
H A Dfile.c25 struct list_head files; /* goes through kernfs_open_file.list */ member in struct:kernfs_open_node
219 * bin files.
506 * create one. @of is chained to the files list.
532 INIT_LIST_HEAD(&on->files);
536 list_add_tail(&of->list, &on->files);
551 * Unlink @of from list of @kn's associated open files. If list of
552 * associated open files becomes empty, disassociate and free
584 if (list_empty(&on->files)) {
629 * @of->mutex for files which implement mmap. This is a rather
639 * For similar reasons, writable and readonly files ar
[all...]
/linux-master/drivers/usb/mtu3/
H A Dmtu3_debugfs.c372 const struct mtu3_file_map *files; local
380 files = &mtu3_ep_files[i];
382 debugfs_create_file(files->name, 0444, dir_ep,
/linux-master/security/apparmor/
H A Dfile.c5 * This file contains AppArmor mediation of files
679 void aa_inherit_files(const struct cred *cred, struct files_struct *files) argument
691 /* Revalidate access to inherited open files. */
692 n = iterate_fd(files, 0, match_file, &cl);
702 } while ((n = iterate_fd(files, n, match_file, &cl)) != 0);
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_gt_pm_debugfs.c589 static const struct intel_gt_debugfs_file files[] = { local
599 intel_gt_debugfs_register_files(root, files, ARRAY_SIZE(files), gt);
/linux-master/drivers/gpu/drm/xe/
H A Dxe_hw_engine_class_sysfs.c480 static const struct attribute * const files[] = { variable
497 sysfs_remove_files(kobj, files);
659 err = sysfs_create_files(&keclass->base, files);
/linux-master/drivers/misc/genwqe/
H A Dcard_dev.c252 * genwqe_kill_fasync() - Send signal to all processes with open GenWQE files
260 unsigned int files = 0; local
268 files++;
271 return files;
276 unsigned int files = 0; local
283 files++;
286 return files;
1329 /* if no open files we can safely continue, else ... */
/linux-master/tools/perf/util/
H A Ddwarf-aux.c24 Dwarf_Files *files; local
32 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles);
37 src = dwarf_filesrc(files, i, NULL, NULL);
480 Dwarf_Files *files; local
485 dwarf_getsrcfiles(&cu_die, &files, NULL) != 0)
488 return dwarf_filesrc(files, idx, NULL, NULL);
/linux-master/samples/hid/
H A DMakefile181 clean-files += vmlinux.h
184 # '--target=bpf'. This fixes "missing" files on some architectures/distros,
208 clean-files += $(LINKED_SKELS)
/linux-master/drivers/infiniband/hw/qib/
H A Dqib_fs.c373 /* create the files in the new directory */
399 /* create the files in the new directory */
456 static const struct tree_descr files[] = { local
462 ret = simple_fill_super(sb, QIBFS_MAGIC, files);
/linux-master/drivers/gpu/drm/qxl/
H A Dqxl_drv.h5 * copy of this software and associated documentation files (the "Software"),
171 struct drm_info_list *files; member in struct:qxl_debugfs
429 struct drm_info_list *files,
/linux-master/net/core/
H A Dnetprio_cgroup.c238 iterate_fd(p->files, 0, update_netprio, v);

Completed in 304 milliseconds

123456789