Home
last modified time | relevance | path

Searched refs:b_list (Results 1 – 4 of 4) sorted by relevance

/fs/lockd/
Dsvclock.c65 if (list_empty(&block->b_list)) { in nlmsvc_insert_block()
68 list_del_init(&block->b_list); in nlmsvc_insert_block()
76 b = list_entry(pos, struct nlm_block, b_list); in nlmsvc_insert_block()
85 list_add_tail(&block->b_list, pos); in nlmsvc_insert_block()
95 if (!list_empty(&block->b_list)) { in nlmsvc_remove_block()
96 list_del_init(&block->b_list); in nlmsvc_remove_block()
114 list_for_each_entry(block, &nlm_blocked, b_list) { in nlmsvc_lookup_block()
147 list_for_each_entry(block, &nlm_blocked, b_list) { in nlmsvc_find_block()
193 INIT_LIST_HEAD(&block->b_list); in nlmsvc_create_block()
288 if (list_empty(&block->b_list)) in nlmsvc_traverse_blocks()
[all …]
Dclntlock.c35 struct list_head b_list; /* linked list */ member
99 list_add(&block->b_list, &nlm_blocked); in nlmclnt_prepare_block()
108 list_del(&block->b_list); in nlmclnt_finish_block()
205 list_for_each_entry(block, &nlm_blocked, b_list) { in nlmclnt_grant()
311 list_for_each_entry(block, &nlm_blocked, b_list) { in reclaimer()
/fs/xfs/linux-2.6/
Dxfs_buf.c263 INIT_LIST_HEAD(&bp->b_list); in _xfs_buf_initialize()
1611 if (!list_empty(&bp->b_list)) { in xfs_buf_delwri_queue()
1615 list_del(&bp->b_list); in xfs_buf_delwri_queue()
1619 list_add_tail(&bp->b_list, dwq); in xfs_buf_delwri_queue()
1635 if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) { in xfs_buf_delwri_dequeue()
1637 list_del_init(&bp->b_list); in xfs_buf_delwri_dequeue()
1693 list_for_each_entry_safe(bp, n, dwq, b_list) { in xfs_buf_delwri_split()
1707 list_move_tail(&bp->b_list, list); in xfs_buf_delwri_split()
1746 bp = list_entry(tmp.next, xfs_buf_t, b_list); in xfsbufd()
1749 list_del_init(&bp->b_list); in xfsbufd()
[all …]
Dxfs_buf.h152 struct list_head b_list; member