"b_unused1" was.

Fix comment for b_caller[12] fields.

Spotted by:     grog
This commit is contained in:
Poul-Henning Kamp 1999-11-17 21:43:00 +00:00
parent 119ce71e82
commit 6a54425c86
2 changed files with 4 additions and 6 deletions

View File

@ -100,7 +100,6 @@ struct buf {
TAILQ_ENTRY(buf) b_act; /* Device driver queue when active. *new* */
long b_flags; /* B_* flags. */
unsigned short b_qindex; /* buffer queue index */
unsigned char b_unused1; /* unused field */
unsigned char b_xflags; /* extra flags */
struct lock b_lock; /* Buffer lock */
int b_error; /* Errno value. */
@ -127,8 +126,8 @@ struct buf {
void *b_saveaddr; /* Original b_addr for physio. */
void *b_driver1; /* for private use by the driver */
void *b_driver2; /* for private use by the driver */
void *b_caller1; /* for private use by the driver */
void *b_caller2; /* for private use by the driver */
void *b_caller1; /* for private use by the caller */
void *b_caller2; /* for private use by the caller */
union pager_info {
void *pg_spc;
int pg_reqpage;

View File

@ -100,7 +100,6 @@ struct buf {
TAILQ_ENTRY(buf) b_act; /* Device driver queue when active. *new* */
long b_flags; /* B_* flags. */
unsigned short b_qindex; /* buffer queue index */
unsigned char b_unused1; /* unused field */
unsigned char b_xflags; /* extra flags */
struct lock b_lock; /* Buffer lock */
int b_error; /* Errno value. */
@ -127,8 +126,8 @@ struct buf {
void *b_saveaddr; /* Original b_addr for physio. */
void *b_driver1; /* for private use by the driver */
void *b_driver2; /* for private use by the driver */
void *b_caller1; /* for private use by the driver */
void *b_caller2; /* for private use by the driver */
void *b_caller1; /* for private use by the caller */
void *b_caller2; /* for private use by the caller */
union pager_info {
void *pg_spc;
int pg_reqpage;