Lines Matching refs:ondisk
50 hammer_volume_ondisk_t ondisk; in read_ondisk() local
52 ondisk = read_buf(fp, 0, sizeof(*ondisk)); in read_ondisk()
53 if (ondisk == NULL) in read_ondisk()
56 return (ondisk); in read_ondisk()
60 test_ondisk(const hammer_volume_ondisk_t ondisk) in test_ondisk() argument
66 if (ondisk->vol_signature != HAMMER_FSBUF_VOLUME && in test_ondisk()
67 ondisk->vol_signature != HAMMER_FSBUF_VOLUME_REV) in test_ondisk()
69 if (ondisk->vol_rootvol != HAMMER_ROOT_VOLNO) in test_ondisk()
71 if (ondisk->vol_no < 0 || ondisk->vol_no > HAMMER_MAX_VOLUMES - 1) in test_ondisk()
73 if (ondisk->vol_count < 1 || ondisk->vol_count > HAMMER_MAX_VOLUMES) in test_ondisk()
77 count = ondisk->vol_count; in test_ondisk()
79 memcpy(&fsid, &ondisk->vol_fsid, sizeof(fsid)); in test_ondisk()
80 memcpy(&fstype, &ondisk->vol_fstype, sizeof(fstype)); in test_ondisk()
81 strlcpy(label, ondisk->vol_label, sizeof(label)); in test_ondisk()
83 if (ondisk->vol_count != count) in test_ondisk()
85 if (memcmp(&ondisk->vol_fsid, &fsid, sizeof(fsid))) in test_ondisk()
87 if (memcmp(&ondisk->vol_fstype, &fstype, sizeof(fstype))) in test_ondisk()
89 if (strcmp(ondisk->vol_label, label)) in test_ondisk()
99 hammer_volume_ondisk_t ondisk; in fstyp_hammer() local
102 ondisk = read_ondisk(fp); in fstyp_hammer()
103 if (ondisk->vol_no != HAMMER_ROOT_VOLNO) in fstyp_hammer()
105 if (ondisk->vol_count != 1) in fstyp_hammer()
107 if (test_ondisk(ondisk)) in fstyp_hammer()
110 strlcpy(label, ondisk->vol_label, size); in fstyp_hammer()
113 free(ondisk); in fstyp_hammer()
120 hammer_volume_ondisk_t ondisk; in test_volume() local
127 ondisk = read_ondisk(fp); in test_volume()
129 if (test_ondisk(ondisk)) in test_volume()
132 volno = ondisk->vol_no; in test_volume()
134 free(ondisk); in test_volume()
141 hammer_volume_ondisk_t ondisk = NULL; in __fsvtyp_hammer() local
170 ondisk = read_ondisk(fp); in __fsvtyp_hammer()
186 if (ondisk->vol_count != i) in __fsvtyp_hammer()
192 strlcpy(label, ondisk->vol_label, size); in __fsvtyp_hammer()
195 free(ondisk); in __fsvtyp_hammer()