summaryrefslogtreecommitdiff
path: root/lib/libgeom/libgeom.h
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2010-10-06 00:13:55 +0000
committerXin LI <delphij@FreeBSD.org>2010-10-06 00:13:55 +0000
commit24fed98ab088ebdb3b21e9158fb0387e2c66dc9f (patch)
treea8b51a6838019dbef0df95267ab968c646df8b34 /lib/libgeom/libgeom.h
parent4cefac73e60aa301e177b702c97f9fa1523c166e (diff)
Notes
Diffstat (limited to 'lib/libgeom/libgeom.h')
-rw-r--r--lib/libgeom/libgeom.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libgeom/libgeom.h b/lib/libgeom/libgeom.h
index 7255bd4a8f31..c951f25babfe 100644
--- a/lib/libgeom/libgeom.h
+++ b/lib/libgeom/libgeom.h
@@ -123,6 +123,8 @@ struct gprovider {
char *lg_mode;
off_t lg_mediasize;
u_int lg_sectorsize;
+ off_t lg_stripeoffset;
+ off_t lg_stripesize;
struct gconf lg_config;
};
@@ -149,6 +151,8 @@ int g_open(const char *, int);
int g_close(int);
off_t g_mediasize(int);
ssize_t g_sectorsize(int);
+off_t g_stripeoffset(int);
+off_t g_stripesize(int);
int g_flush(int);
int g_delete(int, off_t, off_t);
int g_get_ident(int, char *, size_t);