Searched refs:p_blk (Results 1 – 1 of 1) sorted by relevance
/netbsd-src/sys/arch/ia64/stand/common/ |
H A D | bcache.c | 167 daddr_t p_blk, i, j, nblk; in read_strategy() local 185 p_blk = -1; in read_strategy() 191 if (p_blk == -1) { in read_strategy() 192 p_blk = blk + i; in read_strategy() 198 } else if (p_blk != -1) { in read_strategy() 200 result = dd->dv_strategy(dd->dv_devdata, rw, p_blk, p_size * bcache_blksize, p_buf, NULL); in read_strategy() 204 bcache_insert(p_buf + (j * bcache_blksize), p_blk + j); in read_strategy() 205 p_blk = -1; in read_strategy() 208 if (p_blk != -1) { in read_strategy() 210 result = dd->dv_strategy(dd->dv_devdata, rw, p_blk, p_size * bcache_blksize, p_buf, NULL); in read_strategy() [all …]
|