Compare commits

...

1 Commits
master ... test

Author SHA1 Message Date
Vitaliy Filippov 19eadbce7f trace writes
Test / test_root_node (push) Successful in 12s Details
Test / test_rebalance_verify_ec_imm (push) Successful in 1m47s Details
Test / test_write_no_same (push) Successful in 14s Details
Test / test_switch_primary (push) Successful in 38s Details
Test / test_write (push) Successful in 40s Details
Test / test_write_xor (push) Successful in 41s Details
Test / test_heal_pg_size_2 (push) Successful in 2m20s Details
Test / test_heal_ec (push) Successful in 2m22s Details
Test / test_heal_antietcd (push) Successful in 2m23s Details
Test / test_heal_csum_32k_dmj (push) Successful in 2m23s Details
Test / test_heal_csum_32k_dj (push) Successful in 2m21s Details
Test / test_heal_csum_32k (push) Successful in 2m22s Details
Test / test_heal_csum_4k_dmj (push) Successful in 2m26s Details
Test / test_heal_csum_4k_dj (push) Successful in 2m23s Details
Test / test_resize (push) Successful in 18s Details
Test / test_resize_auto (push) Successful in 13s Details
Test / test_osd_tags (push) Successful in 13s Details
Test / test_snapshot_pool2 (push) Successful in 21s Details
Test / test_enospc (push) Successful in 15s Details
Test / test_enospc_imm (push) Successful in 16s Details
Test / test_enospc_xor (push) Successful in 19s Details
Test / test_enospc_imm_xor (push) Successful in 19s Details
Test / test_scrub (push) Successful in 19s Details
Test / test_scrub_zero_osd_2 (push) Successful in 19s Details
Test / test_scrub_xor (push) Successful in 20s Details
Test / test_scrub_pg_size_3 (push) Successful in 19s Details
Test / test_scrub_pg_size_6_pg_minsize_4_osd_count_6_ec (push) Successful in 20s Details
Test / test_scrub_ec (push) Successful in 20s Details
Test / test_nfs (push) Successful in 15s Details
Test / test_heal_csum_4k (push) Successful in 2m23s Details
2025-04-01 12:13:55 +03:00
1 changed files with 4 additions and 0 deletions

View File

@ -46,6 +46,10 @@ void osd_t::autosync()
void osd_t::finish_op(osd_op_t *cur_op, int retval)
{
inflight_ops--;
if (cur_op->req.hdr.opcode == OSD_OP_WRITE)
{
printf("%jx %jx+%x v%jx r=%d\n", cur_op->req.rw.inode, cur_op->req.rw.offset, cur_op->req.rw.len, cur_op->reply.rw.version, retval);
}
if (cur_op->req.hdr.opcode == OSD_OP_READ ||
cur_op->req.hdr.opcode == OSD_OP_WRITE ||
cur_op->req.hdr.opcode == OSD_OP_DELETE)