summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-10-07 17:12:49 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-10-07 17:12:49 +0200
commit8b65f389aac940a5aadcf190894fdba1b75453f2 (patch)
treebebd70ad10b3f557b4e2c740762322b173e72a57
parentfstests/fsimfsgeneric01: Avoid global state (diff)
downloadrtems-8b65f389aac940a5aadcf190894fdba1b75453f2.tar.bz2
Filesystem: Rename function
Rename rtems_filesystem_location_is_root() into rtems_filesystem_location_is_instance_root() to distinguish this from the file system root directory of the current task environment.
-rw-r--r--cpukit/libcsupport/include/rtems/libio_.h2
-rw-r--r--cpukit/libcsupport/src/mount.c2
-rw-r--r--cpukit/libcsupport/src/rmdir.c2
-rw-r--r--cpukit/libcsupport/src/unlink.c2
-rw-r--r--cpukit/libcsupport/src/unmount.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/libcsupport/include/rtems/libio_.h b/cpukit/libcsupport/include/rtems/libio_.h
index 1e4bb84ecd..fb8b534712 100644
--- a/cpukit/libcsupport/include/rtems/libio_.h
+++ b/cpukit/libcsupport/include/rtems/libio_.h
@@ -592,7 +592,7 @@ void rtems_filesystem_do_unmount(
rtems_filesystem_mount_table_entry_t *mt_entry
);
-static inline bool rtems_filesystem_location_is_root(
+static inline bool rtems_filesystem_location_is_instance_root(
const rtems_filesystem_location_info_t *loc
)
{
diff --git a/cpukit/libcsupport/src/mount.c b/cpukit/libcsupport/src/mount.c
index 84283bc8e6..a6c43215ef 100644
--- a/cpukit/libcsupport/src/mount.c
+++ b/cpukit/libcsupport/src/mount.c
@@ -115,7 +115,7 @@ static int register_subordinate_file_system(
rtems_filesystem_location_info_t *currentloc =
rtems_filesystem_eval_path_start( &ctx, target, eval_flags );
- if ( !rtems_filesystem_location_is_root( currentloc ) ) {
+ if ( !rtems_filesystem_location_is_instance_root( currentloc ) ) {
rtems_filesystem_location_info_t targetloc;
rtems_filesystem_global_location_t *mt_point_node;
diff --git a/cpukit/libcsupport/src/rmdir.c b/cpukit/libcsupport/src/rmdir.c
index f2bc16e516..5e4c9f15be 100644
--- a/cpukit/libcsupport/src/rmdir.c
+++ b/cpukit/libcsupport/src/rmdir.c
@@ -38,7 +38,7 @@ int rmdir( const char *path )
rtems_filesystem_node_types_t type = (*ops->node_type_h)( currentloc );
if ( type == RTEMS_FILESYSTEM_DIRECTORY ) {
- if ( !rtems_filesystem_location_is_root( currentloc ) ) {
+ if ( !rtems_filesystem_location_is_instance_root( currentloc ) ) {
rv = (*ops->rmnod_h)( &parentloc, currentloc );
} else {
rtems_filesystem_eval_path_error( &ctx, EBUSY );
diff --git a/cpukit/libcsupport/src/unlink.c b/cpukit/libcsupport/src/unlink.c
index 2a3b1c75a8..a007cc293b 100644
--- a/cpukit/libcsupport/src/unlink.c
+++ b/cpukit/libcsupport/src/unlink.c
@@ -35,7 +35,7 @@ int unlink( const char *path )
parent_eval_flags
);
- if ( !rtems_filesystem_location_is_root( currentloc ) ) {
+ if ( !rtems_filesystem_location_is_instance_root( currentloc ) ) {
const rtems_filesystem_operations_table *ops = currentloc->mt_entry->ops;
rv = (*ops->rmnod_h)( &parentloc, currentloc );
diff --git a/cpukit/libcsupport/src/unmount.c b/cpukit/libcsupport/src/unmount.c
index ad45220fd5..b888dee240 100644
--- a/cpukit/libcsupport/src/unmount.c
+++ b/cpukit/libcsupport/src/unmount.c
@@ -43,7 +43,7 @@ int unmount( const char *path )
rtems_filesystem_eval_path_start( &ctx, path, eval_flags );
rtems_filesystem_mount_table_entry_t *mt_entry = currentloc->mt_entry;
- if ( rtems_filesystem_location_is_root( currentloc ) ) {
+ if ( rtems_filesystem_location_is_instance_root( currentloc ) ) {
if ( !contains_root_or_current_directory( mt_entry ) ) {
const rtems_filesystem_operations_table *mt_point_ops =
mt_entry->mt_point_node->location.mt_entry->ops;