Changeset View
Changeset View
Standalone View
Standalone View
sys/sys/buf.h
Show First 20 Lines • Show All 133 Lines • ▼ Show 20 Lines | union cluster_info { | ||||
TAILQ_ENTRY(buf) cluster_entry; | TAILQ_ENTRY(buf) cluster_entry; | ||||
} b_cluster; | } b_cluster; | ||||
struct vm_page *b_pages[btoc(MAXPHYS)]; | struct vm_page *b_pages[btoc(MAXPHYS)]; | ||||
int b_npages; | int b_npages; | ||||
struct workhead b_dep; /* (D) List of filesystem dependencies. */ | struct workhead b_dep; /* (D) List of filesystem dependencies. */ | ||||
void *b_fsprivate1; | void *b_fsprivate1; | ||||
void *b_fsprivate2; | void *b_fsprivate2; | ||||
void *b_fsprivate3; | void *b_fsprivate3; | ||||
int b_pin_count; | |||||
}; | }; | ||||
#define b_object b_bufobj->bo_object | #define b_object b_bufobj->bo_object | ||||
/* | /* | ||||
* These flags are kept in b_flags. | * These flags are kept in b_flags. | ||||
* | * | ||||
* Notes: | * Notes: | ||||
▲ Show 20 Lines • Show All 402 Lines • Show Last 20 Lines |