summaryrefslogtreecommitdiffstats
path: root/sys/geom/geom.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/geom/geom.h')
-rw-r--r--sys/geom/geom.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/geom/geom.h b/sys/geom/geom.h
index 6256572..2546b56 100644
--- a/sys/geom/geom.h
+++ b/sys/geom/geom.h
@@ -44,7 +44,6 @@
#include <sys/queue.h>
#include <sys/ioccom.h>
#include <sys/conf.h>
-#include <sys/sbuf.h>
#include <sys/module.h>
struct g_class;
@@ -90,6 +89,7 @@ typedef void g_dumpconf_t (struct sbuf *, const char *indent, struct g_geom *,
struct g_class {
const char *name;
u_int version;
+ u_int spare0;
g_taste_t *taste;
g_config_t *config;
g_ctl_req_t *ctlreq;
@@ -106,6 +106,8 @@ struct g_class {
g_access_t *access;
g_orphan_t *orphan;
g_ioctl_t *ioctl;
+ void *spare1;
+ void *spare2;
/*
* The remaining elements are private
*/
@@ -135,6 +137,8 @@ struct g_geom {
g_access_t *access;
g_orphan_t *orphan;
g_ioctl_t *ioctl;
+ void *spare0;
+ void *spare1;
void *softc;
unsigned flags;
#define G_GEOM_WITHER 1
OpenPOWER on IntegriCloud