Changeset fb4541b in rtems
- Timestamp:
- 05/19/00 19:02:30 (23 years ago)
- Children:
- 9064ad4
- Parents:
- 459d051b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libc/unmount.c
r459d051b rfb4541b 63 63 rtems_filesystem_location_info_t temp_loc; 64 64 rtems_filesystem_mount_table_entry_t temp_mt_entry; 65 int result;66 65 67 66 /* … … 102 101 * Allow the file system being mounted on to do its cleanup. 103 102 * XXX - Did I change these correctly ??? It looks like either I did 104 * XXX this backwards or the IMFS_unmount and IMFS_fsumount are swap ed.103 * XXX this backwards or the IMFS_unmount and IMFS_fsumount are swapped. 105 104 * XXX Add to the mt_point_node unmount to set the mt_entry back to null 106 105 * XXX I will step off in space when evaluating past the end of the node. … … 120 119 return -1; 121 120 } 122 123 /*124 * Allow the file system to clean up.125 */126 127 result = (*temp_loc.ops->fsunmount_me)( temp_loc.mt_entry );128 121 129 122 /* … … 140 133 free( temp_loc.mt_entry ); 141 134 rtems_filesystem_freenode( &temp_loc ); 142 143 return result;144 135 145 136 }
Note: See TracChangeset
for help on using the changeset viewer.