Home
last modified time | relevance | path

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

/fs/btrfs/
Dordered-data.c82 struct rb_node *test; in __tree_search() local
102 test = rb_next(prev); in __tree_search()
103 if (!test) in __tree_search()
105 prev_entry = rb_entry(test, struct btrfs_ordered_extent, in __tree_search()
110 prev = test; in __tree_search()
116 test = rb_prev(prev); in __tree_search()
117 if (!test) in __tree_search()
119 prev_entry = rb_entry(test, struct btrfs_ordered_extent, in __tree_search()
121 prev = test; in __tree_search()
957 struct btrfs_ordered_extent *test; in btrfs_ordered_update_i_size() local
[all …]
Dioctl.c1934 struct btrfs_key test; in key_in_sk() local
1937 test.objectid = sk->min_objectid; in key_in_sk()
1938 test.type = sk->min_type; in key_in_sk()
1939 test.offset = sk->min_offset; in key_in_sk()
1941 ret = btrfs_comp_cpu_keys(key, &test); in key_in_sk()
1945 test.objectid = sk->max_objectid; in key_in_sk()
1946 test.type = sk->max_type; in key_in_sk()
1947 test.offset = sk->max_offset; in key_in_sk()
1949 ret = btrfs_comp_cpu_keys(key, &test); in key_in_sk()
1967 struct btrfs_key test; in copy_to_sk() local
[all …]
DKconfig63 during the run of a regression test, say N
/fs/jffs2/
DTODO16 - test, test, test
/fs/
Dinode.c781 int (*test)(struct inode *, void *), in find_inode()
790 if (!test(inode, data)) in find_inode()
1017 int (*test)(struct inode *, void *), in iget5_locked()
1024 inode = find_inode(sb, head, test, data); in iget5_locked()
1038 old = find_inode(sb, head, test, data); in iget5_locked()
1234 int (*test)(struct inode *, void *), void *data) in ilookup5_nowait()
1240 inode = find_inode(sb, head, test, data); in ilookup5_nowait()
1265 int (*test)(struct inode *, void *), void *data) in ilookup5()
1267 struct inode *inode = ilookup5_nowait(sb, hashval, test, data); in ilookup5()
1391 int (*test)(struct inode *, void *), void *data) in insert_inode_locked4()
[all …]
Dsuper.c464 int (*test)(struct super_block *,void *), in sget()
475 if (test) { in sget()
477 if (!test(old, 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.c196 int test(struct path *path, void *data), in find_autofs_mount()
206 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.c163 #define assert(test) J_ASSERT(test) argument