Displaying 1 result from an estimated 1 matches for "tmp_guid".
Did you mean:
p_guid
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
...78,15 +1534,16 @@ check_pool_label(uint64_t sector, char *
int
zfs_mount(void)
{
- char *stack;
+ char *stack, *ub_array;
int label = 0;
- uberblock_phys_t *ub_array, *ubbest;
+ uberblock_t *ubbest;
objset_phys_t *osp;
char tmp_bootpath[MAXNAMELEN];
char tmp_devid[MAXNAMELEN];
- uint64_t tmp_guid;
+ uint64_t tmp_guid, ashift, version;
uint64_t adjpl = (uint64_t)part_length << SPA_MINBLOCKSHIFT;
int err = errnum; /* preserve previous errnum state */
+ uint64_t sector;
/* if it''s our first time here, zero the best uberblock out */
if (best_drive == 0 && best_p...