pager_req_release(): Correct debug messages

This commit is contained in:
Masamichi Takagi
2018-03-03 17:04:21 +09:00
parent be635ceb19
commit 2337832e4c

View File

@ -1290,7 +1290,7 @@ static int pager_req_release(ihk_os_t os, uintptr_t handle, int unref)
spin_unlock_irqrestore(&pager_lock, flags);
if (error) {
printk("pager_req_relase(%p,%lx,%d):pager not found. %d\n", os, handle, unref, error);
printk("pager_req_release(%p,%lx,%d):pager not found. %d\n", os, handle, unref, error);
goto out;
}
@ -1306,7 +1306,7 @@ static int pager_req_release(ihk_os_t os, uintptr_t handle, int unref)
error = 0;
out:
dprintk("pager_req_relase(%p,%lx,%d): %d\n", os, handle, unref, error);
dprintk("pager_req_release(%p,%lx,%d): %d\n", os, handle, unref, error);
return error;
}