mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
8720e9e748
This patch adds a command (-c) option to zpool status and zpool iostat. The -c option allows you to run an arbitrary command on each vdev and display the first line of output in zpool status/iostat. The environment vars VDEV_PATH and VDEV_UPATH are set to the vdev's path and "underlying path" before running the command. For device mapper, multipath, or partitioned vdevs, VDEV_UPATH is the actual underlying /dev/sd* disk. This can be useful if the command you're running requires a /dev/sd* device. The patch also uses /sys/block/<dev>/slaves/ to lookup the underlying device instead of using libdevmapper. This not only removes the libdevmapper requirement at build time, but also allows you to resolve device mapper devices without being root. This means that UDEV_UPATH get set correctly when running zpool status/iostat as an unprivileged user. Example: $ zpool status -c 'echo I am $VDEV_PATH, $VDEV_UPATH' NAME STATE READ WRITE CKSUM mypool ONLINE 0 0 0 mirror-0 ONLINE 0 0 0 mpatha ONLINE 0 0 0 I am /dev/mapper/mpatha, /dev/sdc sdb ONLINE 0 0 0 I am /dev/sdb1, /dev/sdb Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tony Hutter <hutter2@llnl.gov> Closes #5368
36 lines
849 B
Plaintext
36 lines
849 B
Plaintext
dnl #
|
|
dnl # Default ZFS user configuration
|
|
dnl #
|
|
AC_DEFUN([ZFS_AC_CONFIG_USER], [
|
|
ZFS_AC_CONFIG_USER_MOUNT_HELPER
|
|
ZFS_AC_CONFIG_USER_UDEV
|
|
ZFS_AC_CONFIG_USER_SYSTEMD
|
|
ZFS_AC_CONFIG_USER_SYSVINIT
|
|
ZFS_AC_CONFIG_USER_DRACUT
|
|
ZFS_AC_CONFIG_USER_ZLIB
|
|
ZFS_AC_CONFIG_USER_LIBUUID
|
|
ZFS_AC_CONFIG_USER_LIBTIRPC
|
|
ZFS_AC_CONFIG_USER_LIBBLKID
|
|
ZFS_AC_CONFIG_USER_LIBATTR
|
|
ZFS_AC_CONFIG_USER_LIBUDEV
|
|
ZFS_AC_CONFIG_USER_FRAME_LARGER_THAN
|
|
ZFS_AC_CONFIG_USER_RUNSTATEDIR
|
|
|
|
ZFS_AC_CONFIG_USER_COMMANDS
|
|
ZFS_AC_TEST_FRAMEWORK
|
|
|
|
AC_CHECK_FUNCS([mlockall])
|
|
])
|
|
|
|
dnl #
|
|
dnl # Setup the environment for the ZFS Test Suite. Currently only
|
|
dnl # Linux sytle systems are supported but this infrastructure can
|
|
dnl # be extended to support other platforms if needed.
|
|
dnl #
|
|
AC_DEFUN([ZFS_AC_TEST_FRAMEWORK], [
|
|
ZONENAME="echo global"
|
|
AC_SUBST(ZONENAME)
|
|
|
|
AC_SUBST(RM)
|
|
])
|