Subversion Repositories HelenOS

Rev

Rev 2676 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2676 Rev 2678
Line 104... Line 104...
104
 
104
 
105
    /*
105
    /*
106
     * Deliver the file system name.
106
     * Deliver the file system name.
107
     */
107
     */
108
    char fs_name[FS_NAME_MAXLEN + 1];
108
    char fs_name[FS_NAME_MAXLEN + 1];
109
    (void) ipc_data_write_deliver(callid, fs_name, size);
109
    (void) ipc_data_write_finalize(callid, fs_name, size);
110
    fs_name[size] = '\0';
110
    fs_name[size] = '\0';
111
   
111
   
112
    /*
112
    /*
113
     * Check if we know a file system with the same name as is in fs_name.
113
     * Check if we know a file system with the same name as is in fs_name.
114
     * This will also give us its file system handle.
114
     * This will also give us its file system handle.
Line 148... Line 148...
148
    }
148
    }
149
 
149
 
150
    /*
150
    /*
151
     * Deliver the mount point.
151
     * Deliver the mount point.
152
     */
152
     */
153
    (void) ipc_data_write_deliver(callid, buf, size);
153
    (void) ipc_data_write_finalize(callid, buf, size);
154
 
154
 
155
    /*
155
    /*
156
     * Lookup the root node of the filesystem being mounted.
156
     * Lookup the root node of the filesystem being mounted.
157
     * In this case, we don't need to take the unlink_futex as the root node
157
     * In this case, we don't need to take the unlink_futex as the root node
158
     * cannot be removed. However, we do take a reference to it so that
158
     * cannot be removed. However, we do take a reference to it so that