/** * Record a newly allocated block ID in the edit log */ void logAllocateBlockId(long blockId) { AllocateBlockIdOp op = AllocateBlockIdOp.getInstance(cache.get()) .setBlockId(blockId); logEdit(op); }