Changeset 614 for trunk/kernel/kern/kernel_init.c
- Timestamp:
- Jan 15, 2019, 1:59:32 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/kernel_init.c
r612 r614 1113 1113 vfs_root_inode_xp = XPTR_NULL; 1114 1114 1115 // File System must be FATFS in this implementation,1116 // butother File System can be introduced here1115 // Only FATFS is supported yet, 1116 // other File System can be introduced here 1117 1117 if( CONFIG_VFS_ROOT_IS_FATFS ) 1118 1118 { … … 1172 1172 } 1173 1173 1174 // create the <.> and <..> dentries in VFS root directory 1175 // the VFS root parent inode is the VFS root inode itself 1176 vfs_add_special_dentries( vfs_root_inode_xp, 1177 vfs_root_inode_xp ); 1178 1174 1179 // register VFS root inode in process_zero descriptor of cluster 0 1175 1180 process_zero.vfs_root_xp = vfs_root_inode_xp; … … 1255 1260 #if DEBUG_KERNEL_INIT 1256 1261 if( (core_lid == 0) & (local_cxy == 1) ) 1257 printk("\n[%s] : exit barrier 4: VFS root (%x,%x) in cluster 1 / cycle %d\n",1262 printk("\n[%s] : exit barrier 5 : VFS root (%x,%x) in cluster 1 / cycle %d\n", 1258 1263 __FUNCTION__, GET_CXY(process_zero.vfs_root_xp), 1259 1264 GET_PTR(process_zero.vfs_root_xp), (uint32_t)hal_get_cycles() );
Note: See TracChangeset
for help on using the changeset viewer.