diff options
Diffstat (limited to 'include/sys/zvol.h')
-rw-r--r-- | include/sys/zvol.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/include/sys/zvol.h b/include/sys/zvol.h index 898e23521..c3e386f0b 100644 --- a/include/sys/zvol.h +++ b/include/sys/zvol.h @@ -21,6 +21,7 @@ /* * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016 Actifio, Inc. All rights reserved. */ #ifndef _SYS_ZVOL_H @@ -31,24 +32,22 @@ #define ZVOL_OBJ 1ULL #define ZVOL_ZAP_OBJ 2ULL -#ifdef _KERNEL +extern void zvol_create_minors(spa_t *spa, const char *name, boolean_t async); +extern void zvol_remove_minors(spa_t *spa, const char *name, boolean_t async); +extern void zvol_rename_minors(spa_t *spa, const char *oldname, + const char *newname, boolean_t async); +#ifdef _KERNEL extern int zvol_check_volsize(uint64_t volsize, uint64_t blocksize); extern int zvol_check_volblocksize(const char *name, uint64_t volblocksize); extern int zvol_get_stats(objset_t *os, nvlist_t *nv); extern boolean_t zvol_is_zvol(const char *); extern void zvol_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx); -extern int zvol_create_minor(const char *name); -extern int zvol_create_minors(const char *name); -extern int zvol_remove_minor(const char *name); -extern void zvol_remove_minors(const char *name); -extern void zvol_rename_minors(const char *oldname, const char *newname); extern int zvol_set_volsize(const char *, uint64_t); extern int zvol_set_volblocksize(const char *, uint64_t); -extern int zvol_set_snapdev(const char *, uint64_t); +extern int zvol_set_snapdev(const char *, zprop_source_t, uint64_t); extern int zvol_init(void); extern void zvol_fini(void); - #endif /* _KERNEL */ #endif /* _SYS_ZVOL_H */ |