diff options
author | Eric Schrock <[email protected]> | 2012-04-27 11:14:46 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-08-23 10:39:43 -0700 |
commit | db49968e5ca7814bf833477f27c148208a835a7d (patch) | |
tree | 5f862ec545bb6063af112d9a8b491bd3c74b35f8 /include/libzfs.h | |
parent | e346ec25af02c6a7820e7c2a0da71b451a4be70f (diff) |
Illumos #2635: 'zfs rename -f' to perform force unmount
Reviewed by: Matt Ahrens <[email protected]>
Reviewed by: George Wilson <[email protected]>
Reviewed by: Bill Pijewski <[email protected]>
Reviewed by: Richard Elling <[email protected]>
Approved by: Richard Lowe <[email protected]>
References:
https://www.illumos.org/issues/2635
Ported by: Martin Matuska <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #717
Diffstat (limited to 'include/libzfs.h')
-rw-r--r-- | include/libzfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libzfs.h b/include/libzfs.h index 83e1bee6e..c7a7daf2f 100644 --- a/include/libzfs.h +++ b/include/libzfs.h @@ -553,7 +553,7 @@ extern int zfs_destroy_snaps_nvl(zfs_handle_t *, nvlist_t *, boolean_t); extern int zfs_clone(zfs_handle_t *, const char *, nvlist_t *); extern int zfs_snapshot(libzfs_handle_t *, const char *, boolean_t, nvlist_t *); extern int zfs_rollback(zfs_handle_t *, zfs_handle_t *, boolean_t); -extern int zfs_rename(zfs_handle_t *, const char *, boolean_t); +extern int zfs_rename(zfs_handle_t *, const char *, boolean_t, boolean_t); typedef struct sendflags { /* print informational messages (ie, -v was specified) */ |