Home
last modified time | relevance | path

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

/dragonfly/sys/vfs/hpfs/
H A Dhpfs_vnops.c303 u_int xfersz, toread; in hpfs_read() local
327 xfersz = roundup2(toread, DEV_BSIZE); in hpfs_read()
329 bn, runl, toread, xfersz)); in hpfs_read()
334 error = bread(hp->h_devvp, dbtodoff(bn), xfersz, &bp); in hpfs_read()
363 u_int xfersz, towrite; in hpfs_write() local
396 xfersz = roundup2(towrite, DEV_BSIZE); in hpfs_write()
398 bn, runl, towrite, xfersz)); in hpfs_write()
408 if (off == 0 && towrite == xfersz && in hpfs_write()
410 bp = getblk(hp->h_devvp, dbtodoff(bn), xfersz, 0, 0); in hpfs_write()
413 error = bread(hp->h_devvp, dbtodoff(bn), xfersz, &bp); in hpfs_write()