Home
last modified time | relevance | path

Searched refs:ub2 (Results 1 – 3 of 3) sorted by relevance

/titanic_41/usr/src/uts/common/fs/zfs/
H A Dvdev_label.c865 vdev_uberblock_compare(uberblock_t *ub1, uberblock_t *ub2) in vdev_uberblock_compare() argument
867 if (ub1->ub_txg < ub2->ub_txg) in vdev_uberblock_compare()
869 if (ub1->ub_txg > ub2->ub_txg) in vdev_uberblock_compare()
872 if (ub1->ub_timestamp < ub2->ub_timestamp) in vdev_uberblock_compare()
874 if (ub1->ub_timestamp > ub2->ub_timestamp) in vdev_uberblock_compare()
/titanic_41/usr/src/grub/grub-0.97/stage2/
H A Dfsys_zfs.c220 vdev_uberblock_compare(uberblock_t *ub1, uberblock_t *ub2) in vdev_uberblock_compare() argument
222 if (ub1->ub_txg < ub2->ub_txg) in vdev_uberblock_compare()
224 if (ub1->ub_txg > ub2->ub_txg) in vdev_uberblock_compare()
227 if (ub1->ub_timestamp < ub2->ub_timestamp) in vdev_uberblock_compare()
229 if (ub1->ub_timestamp > ub2->ub_timestamp) in vdev_uberblock_compare()
/titanic_41/usr/src/psm/stand/bootblks/zfs/common/
H A Dzfs.fth622 : ub-cmp ( ub1 ub2 -- best-ub )
624 \ ub1 wins if ub2 isn't valid
629 \ if ub1 is 0, ub2 wins by default
630 over 0= if nip exit then ( ub2 )
633 over ub_txg over ub_txg ( ub1 ub2 txg1 txg2 )
635 2drop nip exit ( ub2 )
636 then ( ub1 ub2 txg1 txg2 )
641 nip ( ub2 )