Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2588 → Rev 2589

/trunk/uspace/srv/vfs/vfs.c
56,14 → 56,6
printf("Connection opened from %p\n", icall->in_phone_hash);
 
/*
* Initialize the table of open files.
*/
if (!vfs_conn_open_files_init()) {
ipc_answer_fast_0(iid, ENOMEM);
return;
}
 
/*
* The connection was opened via the IPC_CONNECT_ME_TO call.
* This call needs to be answered.
*/
96,8 → 88,13
keep_on_going = false;
break;
case VFS_MOUNT:
vfs_mount(callid, &call);
keep_on_going = false;
break;
case VFS_OPEN:
vfs_open(callid, &call);
break;
case VFS_UNMOUNT:
case VFS_OPEN:
case VFS_CREATE:
case VFS_CLOSE:
case VFS_READ: