summaryrefslogtreecommitdiff
path: root/sys/src/libbio/boffset.c
blob: 23d74816dd1579b2931acbf9b0d290346ffc0183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include	<u.h>
#include	<libc.h>
#include	<bio.h>

vlong
Boffset(Biobufhdr *bp)
{
	vlong n;

	switch(bp->state) {
	default:
		fprint(2, "Boffset: unknown state %d\n", bp->state);
		n = Beof;
		break;

	case Bracteof:
	case Bractive:
		n = bp->offset + bp->icount;
		break;

	case Bwactive:
		n = bp->offset + (bp->bsize + bp->ocount);
		break;
	}
	return n;
}