summaryrefslogblamecommitdiffstats
path: root/cpukit/libfs/src/imfs/imfs_init.c
blob: 854363ccc62a5e64f55be1f64cda57c9ab700f5c (plain) (tree)
1
2
3
4
5
6
7
8
9



                     
  



                              
                            
                                                    


                                                           
                                         

   
                 
                     

      
                 
 
                                                    


                                              
                      
                                                                
                        

                          
                        

                                
                        


                                   


                              
                                               

  





                                                   

  
                    
                                                 
                                            

 


                                 
                       
    
 
/**
 * @file
 *
 * @ingroup LibFSIMFS
 *
 * @brief IMFS initialization.
 */

/*
 *  COPYRIGHT (c) 1989-1999.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
  #include "config.h"
#endif

#include "imfs.h"

const rtems_filesystem_operations_table IMFS_ops = {
  .lock_h = rtems_filesystem_default_lock,
  .unlock_h = rtems_filesystem_default_unlock,
  .eval_path_h = IMFS_eval_path,
  .link_h = IMFS_link,
  .are_nodes_equal_h = rtems_filesystem_default_are_nodes_equal,
  .mknod_h = IMFS_mknod,
  .rmnod_h = IMFS_rmnod,
  .fchmod_h = IMFS_fchmod,
  .chown_h = IMFS_chown,
  .clonenod_h = IMFS_node_clone,
  .freenod_h = IMFS_node_free,
  .mount_h = IMFS_mount,
  .unmount_h = IMFS_unmount,
  .fsunmount_me_h = IMFS_fsunmount,
  .utime_h = IMFS_utime,
  .symlink_h = IMFS_symlink,
  .readlink_h = IMFS_readlink,
  .rename_h = IMFS_rename,
  .statvfs_h = rtems_filesystem_default_statvfs
};

static const IMFS_mknod_control *const
  IMFS_mknod_controls[ IMFS_TYPE_COUNT ] = {
  [IMFS_DIRECTORY] = &IMFS_mknod_control_directory,
  [IMFS_DEVICE] = &IMFS_mknod_control_device,
  [IMFS_MEMORY_FILE] = &IMFS_mknod_control_memfile,
  [IMFS_FIFO] = &IMFS_mknod_control_enosys
};

int IMFS_initialize(
  rtems_filesystem_mount_table_entry_t *mt_entry,
  const void                           *data
)
{
  return IMFS_initialize_support(
    mt_entry,
    &IMFS_ops,
    IMFS_mknod_controls
  );
}