From: Brian Behlendorf Date: Tue, 16 Dec 2008 21:19:01 +0000 (-0800) Subject: Create gcc-shadow branch X-Git-Tag: zfs-0.4.4~12^2~200^2^2^2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5383875500e932e56228ef220d501b759e4563ae;p=zfs Create gcc-shadow branch --- diff --git a/.topdeps b/.topdeps new file mode 100644 index 000000000..1f7391f92 --- /dev/null +++ b/.topdeps @@ -0,0 +1 @@ +master diff --git a/.topmsg b/.topmsg new file mode 100644 index 000000000..a4ccc9490 --- /dev/null +++ b/.topmsg @@ -0,0 +1,6 @@ +From: Brian Behlendorf +Subject: [PATCH] gcc shadow + +Gcc -Wall warn: 'shadows a global declaration' + +Signed-off-by: Brian Behlendorf diff --git a/lib/libzfs/libzfs_dataset.c b/lib/libzfs/libzfs_dataset.c index a8005ffc0..1f740057a 100644 --- a/lib/libzfs/libzfs_dataset.c +++ b/lib/libzfs/libzfs_dataset.c @@ -528,14 +528,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); } @@ -546,12 +546,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;