Searched refs:tmpfile (Results 1 - 25 of 36) sorted by path

12

/linux-master/tools/testing/selftests/tmpfs/
H A DMakefile6 TEST_GEN_PROGS += bug-link-o-tmpfile
/linux-master/fs/
H A Dbad_inode.c183 .tmpfile = bad_inode_tmpfile,
H A Dnamei.c3657 * vfs_tmpfile - create tmpfile
3660 * @file: file descriptor of the new tmpfile
3661 * @mode: mode of the new tmpfile
3685 if (!dir->i_op->tmpfile)
3693 error = dir->i_op->tmpfile(idmap, dir, file, mode);
3712 * kernel_tmpfile_open - open a tmpfile for kernel internal use
3715 * @mode: mode of the new tmpfile
/linux-master/fs/bcachefs/
H A Dfs.c1152 .tmpfile = bch2_tmpfile,
/linux-master/fs/btrfs/
H A Dinode.c11024 .tmpfile = btrfs_tmpfile,
/linux-master/fs/cachefiles/
H A Dcache.c64 !d_backing_inode(root)->i_op->tmpfile ||
/linux-master/fs/ext2/
H A Dnamei.c421 .tmpfile = ext2_tmpfile,
/linux-master/fs/ext4/
H A Dnamei.c3476 /* this can happen only for tmpfile being
4229 .tmpfile = ext4_tmpfile,
/linux-master/fs/f2fs/
H A Dnamei.c887 * add this non-linked tmpfile to orphan list, in this way we could
888 * remove all unused data of tmpfile after abnormal power-off.
1394 .tmpfile = f2fs_tmpfile,
/linux-master/fs/fuse/
H A Ddir.c2139 .tmpfile = fuse_tmpfile,
/linux-master/fs/hugetlbfs/
H A Dinode.c1324 .tmpfile = hugetlbfs_tmpfile,
/linux-master/fs/minix/
H A Dnamei.c266 .tmpfile = minix_tmpfile,
/linux-master/fs/overlayfs/
H A Dcopy_up.c846 struct file *tmpfile; local
855 tmpfile = ovl_do_tmpfile(ofs, c->workdir, c->stat.mode);
858 if (IS_ERR(tmpfile))
859 return PTR_ERR(tmpfile);
861 temp = tmpfile->f_path.dentry;
863 err = ovl_copy_up_file(ofs, c->dentry, tmpfile, c->stat.size);
901 fput(tmpfile);
975 if (S_ISREG(c->stat.mode) && ofs->tmpfile)
H A Dovl_entry.h75 bool tmpfile; member in struct:ovl_fs
H A Dsuper.c646 struct file *tmpfile; local
682 tmpfile = ovl_do_tmpfile(ofs, ofs->workdir, S_IFREG | 0);
683 ofs->tmpfile = !IS_ERR(tmpfile);
684 if (ofs->tmpfile)
685 fput(tmpfile);
687 pr_warn("upper fs does not support tmpfile.\n");
/linux-master/fs/ramfs/
H A Dinode.c201 .tmpfile = ramfs_tmpfile,
/linux-master/fs/ubifs/
H A Ddir.c1714 .tmpfile = ubifs_tmpfile,
/linux-master/fs/udf/
H A Dnamei.c1015 .tmpfile = udf_tmpfile,
/linux-master/fs/xfs/
H A Dxfs_inode.c2148 * a tmpfile via O_TMPFILE. The inode @ip must have nlink == 0.
2924 * whiteout in a rename transaction. We use a tmpfile inode here so that if we
2935 struct xfs_inode *tmpfile; local
2940 &tmpfile);
2946 error = xfs_inode_init_security(VFS_I(tmpfile), VFS_I(dp), &name);
2948 xfs_finish_inode_setup(tmpfile);
2949 xfs_irele(tmpfile);
2954 * Prepare the tmpfile inode as if it were created through the VFS.
2958 xfs_setup_iops(tmpfile);
2959 xfs_finish_inode_setup(tmpfile);
[all...]
H A Dxfs_iops.c170 struct file *tmpfile) /* unnamed file */
193 /* Verify mode is valid also for tmpfile case */
198 if (!tmpfile) {
227 if (tmpfile) {
237 d_tmpfile(tmpfile, inode);
250 if (!tmpfile)
1147 .tmpfile = xfs_vn_tmpfile,
1174 .tmpfile = xfs_vn_tmpfile,
164 xfs_generic_create( struct mnt_idmap *idmap, struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev, struct file *tmpfile) argument
/linux-master/include/linux/
H A Dfs.h2089 int (*tmpfile) (struct mnt_idmap *, struct inode *, member in struct:inode_operations
/linux-master/mm/
H A Dshmem.c4567 .tmpfile = shmem_tmpfile,
/linux-master/tools/perf/tests/shell/
H A Dtest_intel_pt.sh20 tmpfile="${temp_dir}/tmp-perf.data"
97 if ! perf_record_no_decode -o "${tmpfile}" -e dummy:u -C "$1" true >/dev/null 2>&1 ; then
132 perf_record_no_decode -o "${tmpfile}" -e dummy:k true >/dev/null 2>&1 && can_kernel_trace=1
413 perf_record_no_bpf -o "${tmpfile}" -e intel_pt//u "${jitdump_workload}"
414 perf inject -i "${tmpfile}" -o "${perfdatafile}" --jit
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Darg_parsing.c119 char tmpfile[80]; local
123 snprintf(tmpfile, sizeof(tmpfile), "/tmp/bpf_arg_parsing_test.XXXXXX");
124 fd = mkstemp(tmpfile);
149 ASSERT_OK(parse_test_list_file(tmpfile, &set, true), "parse file");
166 remove(tmpfile);
/linux-master/tools/testing/selftests/bpf/
H A Dtest_sockmap.c423 file = tmpfile();

Completed in 435 milliseconds

12