Changeset dae3dd1 in rtems
- Timestamp:
- 11/07/02 15:45:09 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3d4c7390
- Parents:
- a86f4f6c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libcsupport/src/mount.c
ra86f4f6c rdae3dd1 102 102 } 103 103 104 /* Do they support being mounted at all ? */ 105 if ( !fs_ops->fsmount_me_h ) { 106 errno = ENOTSUP; 107 goto cleanup_and_bail; 108 } 109 110 104 111 /* 105 112 * Allocate a mount table entry … … 208 215 } 209 216 210 if ( !fs_ops->fsmount_me_h ) { 211 errno = ENOTSUP; 217 if ( fs_ops->fsmount_me_h( temp_mt_entry ) ) { 218 /* try to undo the mount operation */ 219 if ( loc.ops->unmount_h ) { 220 loc.ops->unmount_h( temp_mt_entry ); 221 } 212 222 goto cleanup_and_bail; 213 223 } 214 215 if ( fs_ops->fsmount_me_h( temp_mt_entry ) )216 goto cleanup_and_bail;217 224 218 225 /*
Note: See TracChangeset
for help on using the changeset viewer.