Home
last modified time | relevance | path

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

/linux-4.19.296/fs/xfs/
Dxfs_log_recover.c2019 struct xfs_buf_cancel *bcp; in xlog_recover_buffer_pass1() local
2034 list_for_each_entry(bcp, bucket, bc_list) { in xlog_recover_buffer_pass1()
2035 if (bcp->bc_blkno == buf_f->blf_blkno && in xlog_recover_buffer_pass1()
2036 bcp->bc_len == buf_f->blf_len) { in xlog_recover_buffer_pass1()
2037 bcp->bc_refcount++; in xlog_recover_buffer_pass1()
2043 bcp = kmem_alloc(sizeof(struct xfs_buf_cancel), KM_SLEEP); in xlog_recover_buffer_pass1()
2044 bcp->bc_blkno = buf_f->blf_blkno; in xlog_recover_buffer_pass1()
2045 bcp->bc_len = buf_f->blf_len; in xlog_recover_buffer_pass1()
2046 bcp->bc_refcount = 1; in xlog_recover_buffer_pass1()
2047 list_add_tail(&bcp->bc_list, bucket); in xlog_recover_buffer_pass1()
[all …]