diff options
Diffstat (limited to 'sys/geom/vinum')
-rw-r--r-- | sys/geom/vinum/geom_vinum.c | 1 | ||||
-rw-r--r-- | sys/geom/vinum/geom_vinum_drive.c | 1 | ||||
-rw-r--r-- | sys/geom/vinum/geom_vinum_plex.c | 1 | ||||
-rw-r--r-- | sys/geom/vinum/geom_vinum_volume.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/sys/geom/vinum/geom_vinum.c b/sys/geom/vinum/geom_vinum.c index b535f56..2423202 100644 --- a/sys/geom/vinum/geom_vinum.c +++ b/sys/geom/vinum/geom_vinum.c @@ -623,6 +623,7 @@ gv_destroy_geom(struct gctl_req *req, struct g_class *mp, struct g_geom *gp) static struct g_class g_vinum_class = { .name = VINUM_CLASS_NAME, + .version = G_VERSION, .taste = gv_taste, /*.destroy_geom = gv_destroy_geom,*/ .ctlreq = gv_config, diff --git a/sys/geom/vinum/geom_vinum_drive.c b/sys/geom/vinum/geom_vinum_drive.c index a7fa0d6..17a3737 100644 --- a/sys/geom/vinum/geom_vinum_drive.c +++ b/sys/geom/vinum/geom_vinum_drive.c @@ -512,6 +512,7 @@ gv_drive_destroy_geom(struct gctl_req *req, struct g_class *mp, static struct g_class g_vinum_drive_class = { .name = VINUMDRIVE_CLASS_NAME, + .version = G_VERSION, .taste = gv_drive_taste, .destroy_geom = gv_drive_destroy_geom }; diff --git a/sys/geom/vinum/geom_vinum_plex.c b/sys/geom/vinum/geom_vinum_plex.c index e44a64e..02855e4 100644 --- a/sys/geom/vinum/geom_vinum_plex.c +++ b/sys/geom/vinum/geom_vinum_plex.c @@ -479,6 +479,7 @@ gv_plex_destroy_geom(struct gctl_req *req, struct g_class *mp, static struct g_class g_vinum_plex_class = { .name = VINUMPLEX_CLASS_NAME, + .version = G_VERSION, .taste = gv_plex_taste, .destroy_geom = gv_plex_destroy_geom, }; diff --git a/sys/geom/vinum/geom_vinum_volume.c b/sys/geom/vinum/geom_vinum_volume.c index 7f4216a..c6cc128 100644 --- a/sys/geom/vinum/geom_vinum_volume.c +++ b/sys/geom/vinum/geom_vinum_volume.c @@ -253,6 +253,7 @@ gv_volume_destroy_geom(struct gctl_req *req, struct g_class *mp, static struct g_class g_vinum_volume_class = { .name = VINUMVOLUME_CLASS_NAME, + .version = G_VERSION, .taste = gv_volume_taste, .destroy_geom = gv_volume_destroy_geom, }; |