From 8fdc6ee07969539a8223ee35b891f182c777c11c Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Mon, 22 Dec 2008 10:13:31 -0800 Subject: [PATCH] Stub out two more funcs until zpl support exists --- lib/libzfs/libzfs_mount.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/libzfs/libzfs_mount.c b/lib/libzfs/libzfs_mount.c index 26f582f885..662b610ba6 100644 --- a/lib/libzfs/libzfs_mount.c +++ b/lib/libzfs/libzfs_mount.c @@ -1433,4 +1433,16 @@ zfs_is_shared(zfs_handle_t *zhp) return B_FALSE; } +int +zpool_enable_datasets(zpool_handle_t *zhp, const char *mntopts, int flags) +{ + return B_TRUE; +} + +int +zpool_disable_datasets(zpool_handle_t *zhp, boolean_t force) +{ + return B_TRUE; +} + #endif /* HAVE_ZPL */