forked from Imagelibrary/rtems
2010-06-29 Jennifer.Averett <Jennifer.Averett@OARcorp.com>
* umon/tfsDriver.c: Changed NULL methods in filesystem tables to be default methods.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2010-06-29 Jennifer.Averett <Jennifer.Averett@OARcorp.com>
|
||||
|
||||
* umon/tfsDriver.c: Changed NULL methods in filesystem tables to be
|
||||
default methods.
|
||||
|
||||
2010-05-28 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* umon/tfsDriver.c:
|
||||
|
||||
@@ -702,20 +702,23 @@ rtems_filesystem_location_info_t *pathloc)
|
||||
rtems_filesystem_operations_table rtems_tfs_ops = {
|
||||
rtems_tfs_eval_path, /* eval_path */
|
||||
rtems_tfs_evaluate_for_make, /* evaluate_for_make */
|
||||
NULL, /* link */
|
||||
NULL, /* unlink */
|
||||
rtems_filesystem_default_link, /* link */
|
||||
rtems_filesystem_default_unlink, /* unlink */
|
||||
rtems_tfs_node_type, /* node_type */
|
||||
NULL, /* mknod */
|
||||
NULL, /* chown */
|
||||
devFS_mknod, /* mknod */
|
||||
rtems_filesystem_default_chown, /* chown */
|
||||
rtems_tfs_free_node_info, /* freenodinfo */
|
||||
NULL, /* mount */
|
||||
rtems_filesystem_default_mount, /* mount */
|
||||
rtems_tfs_mount_me, /* initialize */
|
||||
NULL, /* unmount */
|
||||
NULL, /* fsunmount */
|
||||
NULL, /* utime */
|
||||
NULL, /* evaluate_link */
|
||||
NULL, /* symlink */
|
||||
NULL, /* readlin */
|
||||
rtems_filesystem_default_unmount, /* unmount */
|
||||
rtems_filesystem_default_fsunmount, /* fsunmount */
|
||||
rtems_filesystem_default_utime, /* utime */
|
||||
rtems_filesystem_default_evaluate_link, /* evaluate_link */
|
||||
rtems_filesystem_default_symlink, /* symlink */
|
||||
rtems_filesystem_default_readlink, /* readlin */
|
||||
rtems_filesystem_default_rename,
|
||||
rtems_filesystem_default_statvfs
|
||||
}
|
||||
};
|
||||
|
||||
rtems_filesystem_file_handlers_r rtems_tfs_handlers = {
|
||||
@@ -725,12 +728,12 @@ rtems_filesystem_file_handlers_r rtems_tfs_handlers = {
|
||||
rtems_tfs_write, /* write */
|
||||
rtems_tfs_ioctl, /* ioctl */
|
||||
rtems_tfs_lseek, /* lseek */
|
||||
NULL, /* fstat */
|
||||
NULL, /* fchmod */
|
||||
rtems_filesystem_default_fstat, /* fstat */
|
||||
rtems_filesystem_default_fchmod, /* fchmod */
|
||||
rtems_tfs_ftruncate, /* ftruncate */
|
||||
NULL, /* fpathconf */
|
||||
NULL, /* fsync */
|
||||
NULL, /* fdatasync */
|
||||
NULL, /* fcntl */
|
||||
NULL /* rmnod */
|
||||
rtems_filesystem_default_fpathconf, /* fpathconf */
|
||||
rtems_filesystem_default_fsync, /* fsync */
|
||||
rtems_filesystem_default_fdatasync, /* fdatasync */
|
||||
rtems_filesystem_default_fcntl, /* fcntl */
|
||||
rtems_filesystem_default_rmnod /* rmnod */
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user