Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2566 → Rev 2567

/trunk/uspace/srv/vfs/vfs_register.c
233,15 → 233,10
/*
* Add fs_info to the list of registered FS's.
*/
dprintf("Adding FS into the registered list.\n");
dprintf("Inserting FS into the list of registered file systems.\n");
list_append(&fs_info->fs_link, &fs_head);
 
/*
* ACK receiving a properly formatted, non-duplicit vfs_info.
*/
ipc_answer_fast(callid, EOK, 0, 0);
/*
* Now we want the client to send us the IPC_M_CONNECT_TO_ME call so
* that a callback connection is created and we have a phone through
* which to forward VFS requests to it.
311,7 → 306,6
dprintf("\"%s\" filesystem successfully registered, handle=%d.\n",
fs_info->vfs_info.name, fs_info->fs_handle);
 
}
 
/** For a given file system handle, implement policy for allocating a phone.