Merge commit 'refs/top-bases/linux-configure-branch' into linux-configure-branch
This commit is contained in:
commit
7660bc4c74
|
@ -750,17 +750,20 @@ main(int argc, char **argv)
|
|||
if (dataset[0] != '\0' && domount) {
|
||||
if ((zhp = zfs_open(g_zfs, dataset, ZFS_TYPE_DATASET)) == NULL)
|
||||
return (1);
|
||||
|
||||
#ifdef HAVE_ZPL
|
||||
if (zfs_unmount(zhp, NULL, 0) != 0)
|
||||
return (1);
|
||||
#endif /* HAVE_ZPL */
|
||||
}
|
||||
|
||||
record.zi_error = error;
|
||||
|
||||
ret = register_handler(pool, flags, &record, quiet);
|
||||
|
||||
#ifdef HAVE_ZPL
|
||||
if (dataset[0] != '\0' && domount)
|
||||
ret = (zfs_mount(zhp, NULL, 0) != 0);
|
||||
#endif /* HAVE_ZPL */
|
||||
|
||||
libzfs_fini(g_zfs);
|
||||
|
||||
|
|
|
@ -2,9 +2,12 @@ include $(top_srcdir)/config/Rules.am
|
|||
|
||||
DEFAULT_INCLUDES += \
|
||||
-I${top_srcdir}/lib/libspl/include \
|
||||
-I${top_srcdir}/lib/libzpool/include \
|
||||
-I${top_srcdir}/lib/libuutil/include \
|
||||
-I${top_srcdir}/lib/libzfs/include \
|
||||
-I${top_srcdir}/lib/libnvpair/include \
|
||||
-I${top_srcdir}/module/zfs \
|
||||
-I${top_srcdir}/module/zfs/include \
|
||||
-I${top_srcdir}/module/zcommon/include \
|
||||
-I${top_srcdir}/module/nvpair/include \
|
||||
-I${top_srcdir}/module/avl/include
|
||||
|
|
Loading…
Reference in New Issue