File indexing completed on 2025-05-11 08:24:16
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifdef HAVE_CONFIG_H
0019 #include "config.h"
0020 #endif
0021
0022 #include <rtems.h>
0023 #include <rtems/libio_.h>
0024
0025 #include <errno.h>
0026
0027 #include "fat.h"
0028 #include "fat_fat_operations.h"
0029 #include "fat_file.h"
0030
0031 #include "msdos.h"
0032
0033
0034
0035
0036 void
0037 msdos_free_node_info(const rtems_filesystem_location_info_t *pathloc)
0038 {
0039 msdos_fs_info_t *fs_info = pathloc->mt_entry->fs_info;
0040
0041 fat_file_close(&fs_info->fat, pathloc->node_access);
0042 }