freebsd-dev/cmd
Ned Bass 79e7242a91 Add helper functions for manipulating device names
This change adds two helper functions for working with vdev names and paths.
zfs_resolve_shortname() resolves a shorthand vdev name to an absolute path
of a file in /dev, /dev/disk/by-id, /dev/disk/by-label, /dev/disk/by-path,
/dev/disk/by-uuid, /dev/disk/zpool.  This was previously done only in the
function is_shorthand_path(), but we need a general helper function to
implement shorthand names for additional zpool subcommands like remove.
is_shorthand_path() is accordingly updated to call the helper function.

There is a minor change in the way zfs_resolve_shortname() tests if a file
exists.  is_shorthand_path() effectively used open() and stat64() to test for
file existence, since its scope includes testing if a device is a whole disk
and collecting file status information.  zfs_resolve_shortname(), on the other
hand, only uses access() to test for existence and leaves it to the caller to
perform any additional file operations.  This seemed like the most general and
lightweight approach, and still preserves the semantics of is_shorthand_path().

zfs_append_partition() appends a partition suffix to a device path.  This
should be used to generate the name of a whole disk as it is stored in the vdev
label. The user-visible names of whole disks do not contain the partition
information, while the name in the vdev label does.   The code was lifted from
the function make_disks(), which now just calls the helper function.  Again,
having a helper function to do this supports general handling of shorthand
names in the user interface.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
2010-10-22 12:25:30 -07:00
..
zdb Add FAILFAST support 2010-10-12 14:55:02 -07:00
zfs Add FAILFAST support 2010-10-12 14:55:02 -07:00
zinject Add FAILFAST support 2010-10-12 14:55:02 -07:00
zpios Add FAILFAST support 2010-10-12 14:55:02 -07:00
zpool Add helper functions for manipulating device names 2010-10-22 12:25:30 -07:00
zpool_id Add FAILFAST support 2010-10-12 14:55:02 -07:00
zpool_layout Add FAILFAST support 2010-10-12 14:55:02 -07:00
ztest Add FAILFAST support 2010-10-12 14:55:02 -07:00
Makefile.am Add linux zpios support 2010-08-31 13:42:01 -07:00
Makefile.in Add FAILFAST support 2010-10-12 14:55:02 -07:00