16 lines
685 B
C
16 lines
685 B
C
|
|
struct buf {
|
|
/* Data portion of the buffer. */
|
|
union fsdata_u *bp;
|
|
|
|
/* Header portion of the buffer. */
|
|
struct buf *b_next; /* used to link all free bufs in a chain */
|
|
struct buf *b_prev; /* used to link all free bufs the other way */
|
|
struct buf *b_hash; /* used to link bufs on hash chains */
|
|
block_t b_blocknr; /* block number of its (minor) device */
|
|
dev_t b_dev; /* major | minor device where block resides */
|
|
char b_dirt; /* CLEAN or DIRTY */
|
|
char b_count; /* number of users of this buffer */
|
|
int b_bytes; /* Number of bytes allocated in bp */
|
|
};
|
|
|