Adding reply phase to pager_sys_open()

So that open() errors on pager's side can be noticed by vfs.
This commit is contained in:
Bahadir Balban
2008-04-21 15:30:40 +01:00
parent a674cf2b27
commit 80470e2581
3 changed files with 34 additions and 14 deletions

View File

@@ -273,7 +273,7 @@ int sys_ipc(struct syscall_args *regs)
return ret;
error:
printk("Erroneous ipc by: %d\n", current->tid);
printk("Erroneous ipc by: %d. Err: %d\n", current->tid, ret);
ipc_type = IPC_INVALID;
return ret;
}