summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/mount.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-05-15 10:27:46 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-05-15 10:37:00 +0200
commit0a95800a58036ad75aa2b972036d458906ac447c (patch)
tree84330a05745639c08d0c039b7b12a0a4cf105c9c /cpukit/libcsupport/src/mount.c
parentFilesystem: Move operations to mount table entry (diff)
downloadrtems-0a95800a58036ad75aa2b972036d458906ac447c.tar.bz2
Filesystem: Change pathconf_limits_and_options
The pathconf_limits_and_options field of rtems_filesystem_mount_table_entry_t is now a const pointer to reduce the read-write memory demands of file system instances.
Diffstat (limited to 'cpukit/libcsupport/src/mount.c')
-rw-r--r--cpukit/libcsupport/src/mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/mount.c b/cpukit/libcsupport/src/mount.c
index 4563bdbf24..84283bc8e6 100644
--- a/cpukit/libcsupport/src/mount.c
+++ b/cpukit/libcsupport/src/mount.c
@@ -83,7 +83,7 @@ static rtems_filesystem_mount_table_entry_t *alloc_mount_table_entry(
mt_entry->mounted = true;
mt_entry->mt_fs_root = mt_fs_root;
- mt_entry->pathconf_limits_and_options = rtems_filesystem_default_pathconf;
+ mt_entry->pathconf_limits_and_options = &rtems_filesystem_default_pathconf;
mt_fs_root->location.mt_entry = mt_entry;
mt_fs_root->reference_count = 1;