diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libzpool/kernel.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/libzpool/kernel.c b/lib/libzpool/kernel.c index a69a8da3a..49d17ece3 100644 --- a/lib/libzpool/kernel.c +++ b/lib/libzpool/kernel.c @@ -20,6 +20,7 @@ */ /* * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016 Actifio, Inc. All rights reserved. */ #include <assert.h> @@ -1354,3 +1355,24 @@ spl_fstrans_check(void) { return (0); } + +void +zvol_create_minors(spa_t *spa, const char *name, boolean_t async) +{ +} + +void +zvol_remove_minor(spa_t *spa, const char *name, boolean_t async) +{ +} + +void +zvol_remove_minors(spa_t *spa, const char *name, boolean_t async) +{ +} + +void +zvol_rename_minors(spa_t *spa, const char *oldname, const char *newname, + boolean_t async) +{ +} |