/xen-4.10.0-shim-comet/tools/blktap2/vhd/lib/ |
A D | vhd-util-check.c | 64 buf = (uint32_t *)footer; in vhd_util_check_footer_opened() 86 if (footer->hidden && in vhd_util_check_validate_footer() 90 char tmp = footer->hidden; in vhd_util_check_validate_footer() 91 footer->hidden = 0; in vhd_util_check_validate_footer() 93 footer->hidden = tmp; in vhd_util_check_validate_footer() 125 if (vhd_chs(footer->curr_size) < footer->geometry) in vhd_util_check_validate_footer() 133 if (footer->saved && footer->saved != 1) in vhd_util_check_validate_footer() 136 if (footer->hidden && footer->hidden != 1) in vhd_util_check_validate_footer() 809 vhd_footer_t footer; in vhd_util_check_vhd() local 813 memset(&footer, 0, sizeof(footer)); in vhd_util_check_vhd() [all …]
|
A D | libvhd.c | 128 BE32_IN(&footer->type); in vhd_footer_in() 144 BE32_OUT(&footer->type); in vhd_footer_out() 239 footer->checksum = 0; in vhd_checksum_footer() 245 footer->checksum = tmp; in vhd_checksum_footer() 271 if (footer->hidden && in vhd_validate_footer() 276 footer->hidden = 0; in vhd_validate_footer() 278 footer->hidden = tmp; in vhd_validate_footer() 896 vhd_footer_in(footer); in vhd_read_short_footer() 933 vhd_footer_in(footer); in vhd_read_footer_at() 2438 memcpy(ctx->footer.cookie, HD_COOKIE, sizeof(ctx->footer.cookie)); in vhd_initialize_footer() [all …]
|
A D | libvhd-journal.c | 418 vhd_footer_t footer; in vhd_journal_add_footer() local 434 vhd_footer_out(&footer); in vhd_journal_add_footer() 436 (char *)&footer, in vhd_journal_add_footer() 449 vhd_footer_out(&footer); in vhd_journal_add_footer() 451 (char *)&footer, in vhd_journal_add_footer() 472 off = vhd->footer.data_offset; in vhd_journal_add_header() 669 vhd_footer_in(footer); in __vhd_journal_read_footer() 1115 memcpy(&vhd->footer.cookie, in vhd_journal_disable_vhd() 1117 vhd->footer.checksum = vhd_checksum_footer(&vhd->footer); in vhd_journal_disable_vhd() 1141 memcpy(&vhd->footer.cookie, HD_COOKIE, sizeof(vhd->footer.cookie)); in vhd_journal_enable_vhd() [all …]
|
A D | vhd-util-resize.c | 93 vhd->footer.curr_size = new_eof; in vhd_fixed_shrink() 94 return vhd_write_footer(vhd, &vhd->footer); in vhd_fixed_shrink() 160 vhd->footer.curr_size += size; in vhd_fixed_grow() 161 err = vhd_write_footer(vhd, &vhd->footer); in vhd_fixed_grow() 179 cur_secs = vhd->footer.curr_size >> VHD_SECTOR_SHIFT; in vhd_fixed_resize() 428 vhd->footer.geometry = vhd_chs(vhd->footer.curr_size); in vhd_clear_bat_entries() 429 err = vhd_write_footer(vhd, &vhd->footer); in vhd_clear_bat_entries() 821 vhd->footer.geometry = vhd_chs(vhd->footer.curr_size); in vhd_add_bat_entries() 822 vhd->footer.checksum = vhd_checksum_footer(&vhd->footer); in vhd_add_bat_entries() 823 err = vhd_write_footer(vhd, &vhd->footer); in vhd_add_bat_entries() [all …]
|
A D | vhd-util-set-field.c | 95 vhd.footer.hidden = (char)value; in vhd_util_set_field() 97 err = vhd_write_footer(&vhd, &vhd.footer); in vhd_util_set_field()
|
A D | vhd-util-query.c | 97 printf("%"PRIu64"\n", vhd.footer.curr_size >> 20); in vhd_util_query() 110 if (vhd.footer.type != HD_TYPE_DIFF) in vhd_util_query()
|
A D | vhd-util-read.c | 268 vhd_print_footer(&vhd->footer, hex); in vhd_print_headers() 273 if (vhd->footer.type == HD_TYPE_DIFF) in vhd_print_headers() 306 vhd_read_footer(&vhd, &vhd.footer); in vhd_dump_headers() 309 vhd_print_footer(&vhd.footer, hex); in vhd_dump_headers() 326 if (vhd_sectors_to_bytes(sector + count) > vhd->footer.curr_size) { in vhd_print_logical_to_physical() 437 if (vhd_sectors_to_bytes(sector + count) > vhd->footer.curr_size) { in vhd_test_bitmap() 558 if (vhd_sectors_to_bytes(sec + count) > vhd->footer.curr_size) in vhd_read_data()
|
A D | vhd-util-snapshot.c | 54 if (vhd.footer.type != HD_TYPE_DIFF) in vhd_util_find_snapshot_target() 180 size = vhd.footer.curr_size; in vhd_util_snapshot()
|
A D | vhd-util-repair.c | 75 err = vhd_write_footer_at(&vhd, &vhd.footer, eof); in vhd_util_repair()
|
A D | vhd-util-scan.c | 576 image->capacity = vhd->footer.curr_size; in vhd_util_scan_get_size() 640 memcpy(&vhd->footer, buf, sizeof(vhd_footer_t)); in vhd_util_scan_read_volume_headers() 641 vhd_footer_in(&vhd->footer); in vhd_util_scan_read_volume_headers() 642 err = vhd_validate_footer(&vhd->footer); in vhd_util_scan_read_volume_headers() 651 if (vhd->footer.data_offset != sizeof(vhd_footer_t)) in vhd_util_scan_read_volume_headers() 653 vhd->footer.data_offset + in vhd_util_scan_read_volume_headers() 976 if (vhd.footer.type == HD_TYPE_DIFF) { in vhd_util_scan_targets()
|
/xen-4.10.0-shim-comet/tools/include/xen-foreign/ |
A D | mkheader.py | 17 footer = {}; variable 37 footer["arm32"] = """ 58 footer["arm64"] = """ 75 footer["x86_32"] = """ 102 footer["x86_64"] = """ 185 if arch in footer: 186 output += footer[arch];
|
/xen-4.10.0-shim-comet/tools/blktap2/include/ |
A D | libvhd.h | 151 vhd_footer_t footer; member 183 return (ctx->footer.type == HD_TYPE_DYNAMIC || in vhd_type_dynamic() 184 ctx->footer.type == HD_TYPE_DIFF); in vhd_type_dynamic() 190 return !strncmp(ctx->footer.crtr_app, "tap", 3); in vhd_creator_tapdisk() 196 return (!memcmp(ctx->footer.cookie, in vhd_disabled() 197 VHD_POISON_COOKIE, sizeof(ctx->footer.cookie))); in vhd_disabled() 243 int vhd_validate_footer(vhd_footer_t *footer);
|
/xen-4.10.0-shim-comet/tools/blktap2/vhd/ |
A D | vhd-update.c | 57 journal->vhd.footer.crtr_ver = VHD_VERSION(1, 1); in update_creator_version() 58 return vhd_write_footer(&journal->vhd, &journal->vhd.footer); in update_creator_version() 228 journal.vhd.footer.crtr_ver != VHD_VERSION(0, 1) || in main() 229 journal.vhd.footer.type == HD_TYPE_FIXED) { in main()
|
/xen-4.10.0-shim-comet/tools/blktap2/drivers/ |
A D | block-vhd.c | 339 if (s->vhd.footer.type == HD_TYPE_FIXED) in vhd_kill_footer() 549 if (strncmp(s->vhd.footer.crtr_app, "tap", 3)) in vhd_check_version() 557 s->vhd.footer.crtr_ver, VHD_CURRENT_VERSION); in vhd_check_version() 577 s->vhd.file, buf, s->vhd.footer.crtr_ver); in vhd_log_open() 745 err = vhd_write_footer(&s->vhd, &s->vhd.footer); in _vhd_close() 783 if (child->vhd.footer.type != HD_TYPE_DIFF) in vhd_validate_parent() 834 if (s->vhd.footer.type != HD_TYPE_DIFF) in vhd_get_parent_id() 1145 if (s->vhd.footer.type == HD_TYPE_FIXED) in read_bitmap_cache() 1193 if (s->vhd.footer.type == HD_TYPE_FIXED) in read_bitmap_cache_span() 1453 if (s->vhd.footer.type == HD_TYPE_FIXED) { in schedule_data_read() [all …]
|
A D | td.c | 455 printf("%"PRIu64"\n", vhd.footer.curr_size >> 20); in td_query() 458 if (vhd.footer.type != HD_TYPE_DIFF) in td_query()
|
/xen-4.10.0-shim-comet/docs/ |
A D | Makefile | 113 -V date="$(DATE)" -V footer="$(VERSION)" \
|
/xen-4.10.0-shim-comet/docs/specs/ |
A D | libxl-migration-stream.pandoc | 98 A record has a record header, type specific data and a trailing footer. If
|
A D | libxc-migration-stream.pandoc | 187 footer. If `body_length` is not a multiple of 8, the body is padded
|