Searched refs:testfile (Results 1 - 5 of 5) sorted by relevance

/linux-master/samples/bpf/
H A Dtest_override_return.sh4 rm -f testfile.img
5 dd if=/dev/zero of=testfile.img bs=1M seek=1000 count=1
6 DEVICE=$(losetup --show -f testfile.img)
/linux-master/tools/perf/tests/shell/
H A Dtest_uprobe_from_different_cu.sh20 perf probe -x ${temp_dir}/testfile -d foo || true
34 cat > ${temp_dir}/testfile-foo.h << EOF
44 cat > ${temp_dir}/testfile-foo.c << EOF
45 #include "testfile-foo.h"
58 cat > ${temp_dir}/testfile-main.c << EOF
59 #include "testfile-foo.h"
76 gcc -g -Og -flto -c ${temp_dir}/testfile-foo.c -o ${temp_dir}/testfile-foo.o
77 gcc -g -Og -c ${temp_dir}/testfile-main.c -o ${temp_dir}/testfile
[all...]
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dfs_kfuncs.c13 static const char testfile[] = "/tmp/test_progs_fs_kfuncs"; variable
20 fd = open(testfile, O_CREAT | O_RDONLY, 0644);
27 err = setxattr(testfile, "user.kfuncs", "hello", sizeof("hello"), 0);
49 fd = open(testfile, O_RDONLY, 0644);
58 remove(testfile);
73 fd = open(testfile, O_CREAT | O_RDWR, 0644);
84 fd = open(testfile, O_RDONLY, 0644);
123 fd = open(testfile, O_RDONLY);
132 remove(testfile);
/linux-master/tools/testing/selftests/mm/
H A Dsplit_huge_page_test.c211 char testfile[INPUT_MAX]; local
221 status = snprintf(testfile, INPUT_MAX, "%s/thp_file", tmpfs_loc);
226 fd = open(testfile, O_CREAT|O_WRONLY, 0664);
242 write_debugfs(PATH_FMT, testfile, pgoff_start, pgoff_end, 0);
244 status = unlink(testfile);
299 int create_pagecache_thp_and_fd(const char *testfile, size_t fd_size, int *fd, argument
307 *fd = open(testfile, O_CREAT | O_RDWR, 0664);
309 ksft_exit_fail_msg("Failed to create a file at %s\n", testfile);
329 *fd = open(testfile, O_RDWR);
331 ksft_perror("Failed to open testfile\
367 char testfile[INPUT_MAX]; local
[all...]
/linux-master/tools/cgroup/
H A Diocost_coef_gen.py11 ./iocost-coef-fio.testfile. The result can be written directly to
35 help='Raw block device to use for testing, ignores --testfile-size')
36 parser.add_argument('--testfile-size-gb', type=float, metavar='GIGABYTES', default=16,
79 info(f'Creating testfile {path}')
89 def run_fio(testfile, duration, iotype, iodepth, blocksize, jobs):
95 f'--filename={testfile} --runtime={round(duration)} '
130 testfile = f'/dev/{devname}' variable
134 testfile = 'iocost-coef-fio.testfile' variable
136 create_testfile(testfile, testfile_siz
[all...]

Completed in 140 milliseconds