Home
last modified time | relevance | path

Searched refs:test (Results 1 – 16 of 16) sorted by relevance

/fs/btrfs/
Dordered-data.c83 struct rb_node *test; in __tree_search() local
103 test = rb_next(prev); in __tree_search()
104 if (!test) in __tree_search()
106 prev_entry = rb_entry(test, struct btrfs_ordered_extent, in __tree_search()
111 prev = test; in __tree_search()
117 test = rb_prev(prev); in __tree_search()
118 if (!test) in __tree_search()
120 prev_entry = rb_entry(test, struct btrfs_ordered_extent, in __tree_search()
122 prev = test; in __tree_search()
969 struct btrfs_ordered_extent *test; in btrfs_ordered_update_i_size() local
[all …]
Dioctl.c1940 struct btrfs_key test; in key_in_sk() local
1943 test.objectid = sk->min_objectid; in key_in_sk()
1944 test.type = sk->min_type; in key_in_sk()
1945 test.offset = sk->min_offset; in key_in_sk()
1947 ret = btrfs_comp_cpu_keys(key, &test); in key_in_sk()
1951 test.objectid = sk->max_objectid; in key_in_sk()
1952 test.type = sk->max_type; in key_in_sk()
1953 test.offset = sk->max_offset; in key_in_sk()
1955 ret = btrfs_comp_cpu_keys(key, &test); in key_in_sk()
1972 struct btrfs_key test; in copy_to_sk() local
[all …]
DKconfig61 during the run of a regression test, say N
/fs/jffs2/
DTODO16 - test, test, test
/fs/
Dinode.c786 int (*test)(struct inode *, void *), in find_inode()
795 if (!test(inode, data)) in find_inode()
1022 int (*test)(struct inode *, void *), in iget5_locked()
1029 inode = find_inode(sb, head, test, data); in iget5_locked()
1047 old = find_inode(sb, head, test, data); in iget5_locked()
1255 int (*test)(struct inode *, void *), void *data) in ilookup5_nowait()
1261 inode = find_inode(sb, head, test, data); in ilookup5_nowait()
1286 int (*test)(struct inode *, void *), void *data) in ilookup5()
1290 inode = ilookup5_nowait(sb, hashval, test, data); in ilookup5()
1423 int (*test)(struct inode *, void *), void *data) in insert_inode_locked4()
[all …]
Dsuper.c464 int (*test)(struct super_block *,void *), in sget_userns()
479 if (test) { in sget_userns()
481 if (!test(old, data)) in sget_userns()
541 int (*test)(struct super_block *,void *), in sget()
559 return sget_userns(type, test, set, flags, user_ns, data); in sget()
/fs/9p/
Dvfs_inode_dotl.c122 int (*test)(struct inode *, void *); in v9fs_qid_iget_dotl() local
125 test = v9fs_test_new_inode_dotl; in v9fs_qid_iget_dotl()
127 test = v9fs_test_inode_dotl; in v9fs_qid_iget_dotl()
130 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st); in v9fs_qid_iget_dotl()
Dvfs_inode.c517 int (*test)(struct inode *, void *); in v9fs_qid_iget() local
520 test = v9fs_test_new_inode; in v9fs_qid_iget()
522 test = v9fs_test_inode; in v9fs_qid_iget()
525 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode, st); in v9fs_qid_iget()
/fs/autofs4/
Ddev-ioctl.c207 int test(struct path *path, void *data), in find_autofs_mount()
219 if (test(&path, data)) { in find_autofs_mount()
/fs/sysv/
Dsuper.c274 int (*test)(struct sysv_sb_info *, struct buffer_head *); member
381 size = flavours[i].test(SYSV_SB(sb), bh); in sysv_fill_super()
/fs/lockd/
Dsvc4proc.c480 PROC(test, testargs, testres, args, res, Ck+St+2+No+Rg),
Dsvcproc.c524 PROC(test, testargs, testres, args, res, Ck+St+2+No+Rg),
/fs/befs/
DChangeLog132 * Added test for "impossible" condition of empty internal nodes in
151 the page size in linux, which is 4k i386. Oops. Added a test for
/fs/cramfs/
DREADME69 default mkcramfs doesn't test for & create holes, since cramfs in
/fs/affs/
DChanges213 - Changed name type to unsigned char; the test for
/fs/ext4/
Dnamei.c162 #define assert(test) J_ASSERT(test) argument