2009-10-01 16:00:27 +02:00
|
|
|
#include <dirent.h>
|
|
|
|
|
2012-03-25 20:25:53 +02:00
|
|
|
struct buf {
|
2011-08-05 01:15:16 +02:00
|
|
|
char b_data[_MAX_BLOCK_SIZE]; /* ordinary user data */
|
2009-10-01 16:00:27 +02:00
|
|
|
block_t b_blocknr; /* block number of its (minor) device */
|
|
|
|
char b_count; /* number of users of this buffer */
|
|
|
|
} buf[NR_BUFS];
|
|
|
|
|
|
|
|
/* A block is free if b_dev == NO_DEV. */
|
|
|
|
|
|
|
|
#define INODE_BLOCK 0 /* inode block */
|
|
|
|
#define DIRECTORY_BLOCK 1 /* directory block */
|