Ticket #5183: vm_trace-errors.diff

File vm_trace-errors.diff, 743 bytes (added by andreasf, 14 years ago)

second patch

  • src/system/kernel/vm/vm.cpp

    diff --git a/src/system/kernel/vm/vm.cpp b/src/system/kernel/vm/vm.cpp
    index 3f1a8fd..87ddc83 100644
    a b vm_map_physical_memory_vecs(team_id team, const char* name, void** _address,  
    10881088    uint32 vecCount)
    10891089{
    10901090    TRACE(("vm_map_physical_memory_vecs(team = %ld, \"%s\", virtual = %p, "
    1091         "spec = %ld, size = %lu, protection = %ld, phys = %#lx)\n", team,
    1092         name, _address, addressSpec, size, protection, physicalAddress));
     1091        "spec = %ld, size = %p, protection = %ld, vecs = %p, vecCount = %ld)\n", team,
     1092        name, _address, addressSpec, _size, protection, vecs, vecCount));
    10931093
    10941094    if (!arch_vm_supports_protection(protection)
    10951095        || (addressSpec & B_MTR_MASK) != 0) {