summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2010-07-01 15:18:06 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2010-07-01 15:18:06 +0000
commit955a34b566dbd7076084dff82ec5468b9c6d8336 (patch)
tree1395933adfd0fcbeb17d6cbd0e9ce69afd72d242 /cpukit/libfs
parent2010-06-29 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-955a34b566dbd7076084dff82ec5468b9c6d8336.tar.bz2
2010-07-01 Sebastian Huber <sebastian.huber@embedded-brains.de>
* libcsupport/include/rtems/libio_.h: Removed rtems_filesystem_mount_table_control. * libcsupport/include/rtems/libio.h, libcsupport/src/mount-mgr.c, libcsupport/src/mount.c libcsupport/src/statvfs.c, libcsupport/src/unmount.c, libmisc/shell/main_mount.c: Documentation. Removed rtems_filesystem_mounts_first() and rtems_filesystem_mounts_next(). Added rtems_filesystem_mount_iterate(). Changed return type of rtems_filesystem_iterate(). Removed rtems_filesystem_nodes_equal(). 2010-07-01 Sebastian Huber <sebastian.huber@embedded-brains.de> * libfs/src/nfsclient/src/nfs.c, libfs/src/nfsclient/src/nfs.c, libfs/src/nfsclient/src/librtemsNfs.h: Renamed rtems_nfsfs_initialize() in rtems_nfs_initialize(). * sapi/include/confdefs.h: Reflect changes above. Renamed *_miniIMFS in *_MINIIMFS. Renamed *_NFSFS in *_NFS.
Diffstat (limited to 'cpukit/libfs')
-rw-r--r--cpukit/libfs/src/nfsclient/src/librtemsNfs.h4
-rw-r--r--cpukit/libfs/src/nfsclient/src/nfs.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/libfs/src/nfsclient/src/librtemsNfs.h b/cpukit/libfs/src/nfsclient/src/librtemsNfs.h
index 01ef9a3a76..fc17d1de7f 100644
--- a/cpukit/libfs/src/nfsclient/src/librtemsNfs.h
+++ b/cpukit/libfs/src/nfsclient/src/librtemsNfs.h
@@ -143,8 +143,8 @@ nfsMountsShow(FILE *f);
* Filesystem mount table mount handler. Do not call, use the mount call.
*/
int
-rtems_nfsfs_initialize(rtems_filesystem_mount_table_entry_t *mt_entry,
- const void *data);
+rtems_nfs_initialize(rtems_filesystem_mount_table_entry_t *mt_entry,
+ const void *data);
/* A utility routine to find the path leading to a
* rtems_filesystem_location_info_t node.
diff --git a/cpukit/libfs/src/nfsclient/src/nfs.c b/cpukit/libfs/src/nfsclient/src/nfs.c
index de902cbbad..8a7d41d5cb 100644
--- a/cpukit/libfs/src/nfsclient/src/nfs.c
+++ b/cpukit/libfs/src/nfsclient/src/nfs.c
@@ -1908,8 +1908,8 @@ struct rtems_filesystem_mount_table_entry_tt {
#endif
-int rtems_nfsfs_initialize(
- rtems_filesystem_mount_table_entry_t *mt_entry,
+int rtems_nfs_initialize(
+ rtems_filesystem_mount_table_entry_t *mt_entry,
const void *data
)
{
@@ -2479,7 +2479,7 @@ struct _rtems_filesystem_operations_table nfs_fs_ops = {
nfs_chown, /* OPTIONAL; may be NULL */
nfs_freenode, /* OPTIONAL; may be NULL; (release node_access) */
nfs_mount, /* OPTIONAL; may be NULL */
- rtems_nfsfs_initialize, /* OPTIONAL; may be NULL -- not used anymore */
+ rtems_nfs_initialize, /* OPTIONAL; may be NULL -- not used anymore */
nfs_unmount, /* OPTIONAL; may be NULL */
nfs_fsunmount_me, /* OPTIONAL; may be NULL */
nfs_utime, /* OPTIONAL; may be NULL */