]> git.proxmox.com Git - mirror_zfs.git/commit - module/zfs/spa.c
Implement -t option to zpool create for temporary pool names
authorRichard Yao <ryao@gentoo.org>
Fri, 20 Jun 2014 23:00:11 +0000 (19:00 -0400)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 30 Sep 2014 17:46:59 +0000 (10:46 -0700)
commit83e9986f6eefdf0afc387f06407087bba3ead4e9
tree4a457cb85a0a59cd219319727893ab9446024ecf
parent00d2a8c92f614f49d23dea5d73f7ea7eb489ccf1
Implement -t option to zpool create for temporary pool names

Creating virtual machines that have their rootfs on ZFS on hosts that
have their rootfs on ZFS causes SPA namespace collisions when the
standard name rpool is used. The solution is either to give each guest
pool a name unique to the host, which is not always desireable, or boot
a VM environment containing an ISO image to install it, which is
cumbersome.

26b42f3f9d03f85cc7966dc2fe4dfe9216601b0e introduced `zpool import -t
...` to simplify situations where a host must access a guest's pool when
there is a SPA namespace conflict. We build upon that to introduce
`zpool import -t tname ...`. That allows us to create a pool whose
in-core name is tname, but whose on-disk name is the normal name
specified.

This simplifies the creation of machine images that use a rootfs on ZFS.
That benefits not only real world deployments, but also ZFSOnLinux
development by decreasing the time needed to perform rootfs on ZFS
experiments.

Signed-off-by: Richard Yao <ryao@gentoo.org>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #2417
cmd/zpool/zpool_main.c
include/sys/fs/zfs.h
lib/libzfs/libzfs_pool.c
man/man8/zpool.8
module/zcommon/zpool_prop.c
module/zfs/spa.c