Home
last modified time | relevance | path

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

/dragonfly/sys/vfs/ufs/
HDufs_readwrite.c69 int seqcount; in ffs_read() local
73 seqcount = ap->a_ioflag >> IO_SEQSHIFT; in ffs_read()
111 &bp, seqcount); in ffs_read()
219 int seqcount; in ffs_write() local
224 seqcount = ap->a_ioflag >> IO_SEQSHIFT; in ffs_write()
278 if (seqcount > B_SEQMAX) in ffs_write()
281 flags = seqcount << B_SEQSHIFT; in ffs_write()
380 … cluster_write(bp, (off_t)ip->i_size, fs->fs_bsize, seqcount); in ffs_write()
HDffs_subr.c94 int seqcount) in ffs_blkatoff_ra() argument
130 bsize, seqcount * MAXBSIZE, &bp); in ffs_blkatoff_ra()
131 } else if (seqcount > 1) { in ffs_blkatoff_ra()
HDffs_balloc.c83 int seqcount; in ffs_balloc() local
415 seqcount = (flags & B_SEQMASK) >> B_SEQSHIFT; in ffs_balloc()
416 if (seqcount && in ffs_balloc()
422 seqcount * MAXBSIZE, in ffs_balloc()
/dragonfly/sys/vfs/ext2fs/
HDext2_balloc.c284 int seqcount = (flags & BA_SEQMASK) >> BA_SEQSHIFT; in ext2_balloc() local
286 if (seqcount && (vp->v_mount->mnt_flag & MNT_NOCLUSTERR) == 0) { in ext2_balloc()
289 MAXBSIZE, (size_t)seqcount, &nbp); in ext2_balloc()
HDext2_vnops.c1818 int error, orig_resid, seqcount; in ext2_read() local
1825 seqcount = ap->a_ioflag >> IO_SEQSHIFT; in ext2_read()
1869 } else if (seqcount > 1) { in ext2_read()
1931 int blkoffset, error, flags, ioflag, resid, size, seqcount, xfersize; in ext2_write() local
1937 seqcount = ioflag >> IO_SEQSHIFT; in ext2_write()
1984 if (seqcount > BA_SEQMAX) in ext2_write()
1987 flags = seqcount << BA_SEQSHIFT; in ext2_write()
2066 vp->v_mount->mnt_stat.f_iosize, seqcount); in ext2_write()
/dragonfly/sys/vfs/hammer2/
HDhammer2_vnops.c62 int seqcount);
64 int ioflag, int seqcount);
783 int seqcount; in hammer2_vop_read() local
801 seqcount = ap->a_ioflag >> IO_SEQSHIFT; in hammer2_vop_read()
803 error = hammer2_read_file(ip, uio, seqcount); in hammer2_vop_read()
816 int seqcount; in hammer2_vop_write() local
845 seqcount = ioflag >> IO_SEQSHIFT; in hammer2_vop_write()
870 error = hammer2_write_file(ip, uio, ioflag, seqcount); in hammer2_vop_write()
888 hammer2_read_file(hammer2_inode_t *ip, struct uio *uio, int seqcount) in hammer2_read_file() argument
922 seqcount * MAXBSIZE, in hammer2_read_file()
[all …]
/dragonfly/usr.sbin/makefs/hammer2/
HDhammer2_vnops.c67 int seqcount);
69 int ioflag, int seqcount);
918 int seqcount; in hammer2_vop_read() local
936 seqcount = ap->a_ioflag >> IO_SEQSHIFT; in hammer2_vop_read()
938 error = hammer2_read_file(ip, uio, seqcount); in hammer2_vop_read()
981 int seqcount; in hammer2_vop_write() local
1010 seqcount = ioflag >> IO_SEQSHIFT; in hammer2_vop_write()
1038 error = hammer2_write_file(ip, uio, ioflag, seqcount); in hammer2_vop_write()
1087 hammer2_read_file(hammer2_inode_t *ip, struct uio *uio, int seqcount) in hammer2_read_file() argument
1121 seqcount * MAXBSIZE, in hammer2_read_file()
[all …]
/dragonfly/sys/dev/drm/include/linux/
HDseqlock.h103 typedef struct seqcount { struct
/dragonfly/sys/vfs/msdosfs/
HDmsdosfs_vnops.c467 int seqcount; in msdosfs_read() local
494 seqcount = ap->a_ioflag >> IO_SEQSHIFT; in msdosfs_read()
529 seqcount * MAXBSIZE, &bp); in msdosfs_read()
531 } else if (seqcount > 1) { in msdosfs_read()
573 int seqcount; in msdosfs_write() local
663 seqcount = ioflag >> IO_SEQSHIFT; in msdosfs_write()
767 pmp->pm_bpcluster, seqcount); in msdosfs_write()
/dragonfly/sys/vfs/tmpfs/
HDtmpfs_vnops.c554 int seqcount; in tmpfs_read() local
571 seqcount = ap->a_ioflag >> IO_SEQSHIFT; in tmpfs_read()
612 seqcount * MAXBSIZE, in tmpfs_read()
682 int seqcount; in tmpfs_write() local
693 seqcount = ap->a_ioflag >> IO_SEQSHIFT; in tmpfs_write()
865 node->tn_blksize, seqcount); in tmpfs_write()
881 node->tn_blksize, seqcount); in tmpfs_write()
/dragonfly/sys/vfs/isofs/cd9660/
HDcd9660_vnops.c258 int seqcount; in cd9660_read() local
261 seqcount = ap->a_ioflag >> IO_SEQSHIFT; in cd9660_read()
295 if (seqcount > 1 && in cd9660_read()
/dragonfly/sys/kern/
HDvfs_cluster.c1244 cluster_write(struct buf *bp, off_t filesize, int blksize, int seqcount) in cluster_write() argument
1302 if (!async && seqcount > 0) { in cluster_write()
1331 if (seqcount > 1) { in cluster_write()
1389 if (seqcount > 1) in cluster_write()
/dragonfly/sys/vfs/fuse/
HDfuse_vnops.c1329 int seqcount; in fuse_vop_read() local
1350 seqcount = ap->a_ioflag >> IO_SEQSHIFT; in fuse_vop_read()
1378 seqcount * MAXBSIZE, in fuse_vop_read()
1447 int seqcount; in fuse_vop_write() local
1464 seqcount = ioflag >> IO_SEQSHIFT; in fuse_vop_write()
1606 cluster_write(bp, fnp->size, FUSE_BLKSIZE, seqcount); in fuse_vop_write()
/dragonfly/sys/vfs/hammer/
HDhammer_vnops.c313 int seqcount; in hammer_vop_read() local
346 seqcount = howmany(uio->uio_resid, MAXBSIZE); in hammer_vop_read()
348 if (seqcount < ioseqcount) in hammer_vop_read()
349 seqcount = ioseqcount; in hammer_vop_read()
419 seqcount * MAXBSIZE, in hammer_vop_read()
511 int seqcount; in hammer_vop_write() local
521 seqcount = ap->a_ioflag >> IO_SEQSHIFT; in hammer_vop_write()
841 cluster_write(bp, cluster_eof, blksize, seqcount); in hammer_vop_write()
/dragonfly/sys/vfs/nfs/
HDnfs_bio.c100 int seqcount; in nfs_bioread() local
122 seqcount = (int)((off_t)(ioflag >> IO_SEQSHIFT) * biosize / MAXBSIZE); in nfs_bioread()
194 for (nra = 0; nra < nmp->nm_readahead && nra < seqcount && in nfs_bioread()