Searched refs:blkcount (Results 1 – 6 of 6) sorted by relevance
/dflybsd-src/sys/vfs/ufs/ |
H A D | ffs_inode.c | 473 long blkcount, factor; in ffs_indirtrunc() local 557 (ufs_daddr_t)-1, level - 1, &blkcount)) != 0) in ffs_indirtrunc() 559 blocksreleased += blkcount; in ffs_indirtrunc() 573 last, level - 1, &blkcount); in ffs_indirtrunc() 576 blocksreleased += blkcount; in ffs_indirtrunc()
|
/dflybsd-src/sys/vfs/ext2fs/ |
H A D | ext2_inode.c | 128 e4fs_daddr_t blkcount, factor, blocksreleased = 0; in ext2_indirtrunc() local 195 fsbtodb(fs, nb), (int32_t)-1, level - 1, &blkcount)) != 0) in ext2_indirtrunc() 197 blocksreleased += blkcount; in ext2_indirtrunc() 211 last, level - 1, &blkcount)) != 0) in ext2_indirtrunc() 213 blocksreleased += blkcount; in ext2_indirtrunc()
|
/dflybsd-src/sys/dev/disk/nata/ |
H A D | atapi-tape.c | 400 u_int32_t blkcount; in ast_strategy() local 441 blkcount = bbp->b_bcount / stp->blksize; in ast_strategy() 444 ccb[2] = blkcount >> 16; in ast_strategy() 445 ccb[3] = blkcount >> 8; in ast_strategy() 446 ccb[4] = blkcount; in ast_strategy() 458 request->bytecount = blkcount * stp->blksize; in ast_strategy()
|
/dflybsd-src/sys/dev/raid/mlx/ |
H A D | mlx.c | 1719 int blkcount; in mlx_startio() local 1768 blkcount = (bp->b_bcount + MLX_BLKSIZE - 1) / MLX_BLKSIZE; in mlx_startio() 1771 if ((blkno + blkcount) > sc->mlx_sysdrive[driveno].ms_size) in mlx_startio() 1773 blkno, blkcount, sc->mlx_sysdrive[driveno].ms_size); in mlx_startio() 1781 blkcount & 0xff, /* xfer length low byte */ in mlx_startio() 1788 blkcount & 0xff, /* xfer length low byte */ in mlx_startio() 1789 (driveno << 3) | ((blkcount >> 8) & 0x07), /* target and length high 3 bits */ in mlx_startio()
|
/dflybsd-src/sys/dev/raid/mfi/ |
H A D | mfi.c | 1979 int flags = 0, blkcount = 0; in mfi_build_syspdio() local 2007 blkcount = (bp->b_bcount + MFI_SECTOR_LEN - 1) / MFI_SECTOR_LEN; in mfi_build_syspdio() 2014 pass->cdb[7] = (blkcount & 0xff00) >> 8; in mfi_build_syspdio() 2015 pass->cdb[8] = (blkcount & 0x00ff); in mfi_build_syspdio() 2042 int flags, blkcount; in mfi_build_ldio() local 2068 blkcount = (bp->b_bcount + MFI_SECTOR_LEN - 1) / MFI_SECTOR_LEN; in mfi_build_ldio() 2075 io->header.data_len = blkcount; in mfi_build_ldio() 2446 int blkcount = 0; in mfi_dump_syspd_blocks() local 2459 blkcount = (len + MFI_SECTOR_LEN - 1) / MFI_SECTOR_LEN; in mfi_dump_syspd_blocks() 2460 pass->cdb[7] = (blkcount & 0xff00) >> 8; in mfi_dump_syspd_blocks() [all …]
|
/dflybsd-src/sys/dev/raid/amr/ |
H A D | amr.c | 1232 int blkcount; in amr_bio_command() local 1282 blkcount = (bp->b_bcount + AMR_BLKSIZE - 1) / AMR_BLKSIZE; in amr_bio_command() 1286 ac->ac_mailbox.mb_blkcount = blkcount; in amr_bio_command() 1288 if (((bio->bio_offset / AMR_BLKSIZE) + blkcount) > sc->amr_drive[driveno].al_size) { in amr_bio_command() 1291 (long long)(bio->bio_offset / AMR_BLKSIZE), blkcount, in amr_bio_command()
|