- Make the gvinum softc invisible to userland, as it is not needed.

This commit is contained in:
lulf 2009-05-04 17:30:20 +00:00
parent e3d34903b6
commit 5a4e3bbf09

View File

@ -221,7 +221,6 @@ struct gv_event {
intmax_t arg4;
TAILQ_ENTRY(gv_event) events;
};
#endif
/* This struct contains the main vinum config. */
struct gv_softc {
@ -234,13 +233,10 @@ struct gv_softc {
TAILQ_HEAD(,gv_event) equeue; /* Event queue. */
struct mtx queue_mtx; /* Queue lock. */
struct mtx config_mtx; /* Configuration lock. */
#ifdef _KERNEL
struct bio_queue_head *bqueue; /* BIO queue. */
#else
char *padding;
#endif
struct g_geom *geom; /* Pointer to our VINUM geom. */
};
#endif
/* softc for a drive. */
struct gv_drive {