Merge commit 'refs/top-bases/zfs-branch' into zfs-branch

This commit is contained in:
Brian Behlendorf 2008-12-16 13:21:23 -08:00
commit 5af8235e41
1 changed files with 5 additions and 5 deletions

View File

@ -532,14 +532,14 @@ zfs_close(zfs_handle_t *zhp)
}
int
zfs_spa_version(zfs_handle_t *zhp, int *spa_version)
zfs_spa_version(zfs_handle_t *zhp, int *version)
{
zpool_handle_t *zpool_handle = zhp->zpool_hdl;
if (zpool_handle == NULL)
return (-1);
*spa_version = zpool_get_prop_int(zpool_handle,
*version = zpool_get_prop_int(zpool_handle,
ZPOOL_PROP_VERSION, NULL);
return (0);
}
@ -550,12 +550,12 @@ zfs_spa_version(zfs_handle_t *zhp, int *spa_version)
static int
zfs_which_resv_prop(zfs_handle_t *zhp, zfs_prop_t *resv_prop)
{
int spa_version;
int version;
if (zfs_spa_version(zhp, &spa_version) < 0)
if (zfs_spa_version(zhp, &version) < 0)
return (-1);
if (spa_version >= SPA_VERSION_REFRESERVATION)
if (version >= SPA_VERSION_REFRESERVATION)
*resv_prop = ZFS_PROP_REFRESERVATION;
else
*resv_prop = ZFS_PROP_RESERVATION;