loader: use struct initializer in vdev_probe().

Hopefully it is a bit more clear this way.
This commit is contained in:
Toomas Soome 2019-11-10 15:07:36 +00:00
parent 3cac32d147
commit e5d9d07948
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=354594

View File

@ -1697,7 +1697,7 @@ vdev_uberblock_load(vdev_t *vd, uberblock_t *ub)
static int
vdev_probe(vdev_phys_read_t *_read, void *read_priv, spa_t **spap)
{
vdev_t vtmp;
vdev_t vtmp = { 0 };
spa_t *spa;
vdev_t *vdev, *top_vdev, *pool_vdev;
unsigned char *nvlist;
@ -1713,7 +1713,6 @@ vdev_probe(vdev_phys_read_t *_read, void *read_priv, spa_t **spap)
* Load the vdev label and figure out which
* uberblock is most current.
*/
memset(&vtmp, 0, sizeof(vtmp));
vtmp.v_phys_read = _read;
vtmp.v_read_priv = read_priv;
vtmp.v_psize = P2ALIGN(ldi_get_size(read_priv),