summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking
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/libnetworking
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/libnetworking')
-rw-r--r--cpukit/libnetworking/lib/ftpfs.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/cpukit/libnetworking/lib/ftpfs.c b/cpukit/libnetworking/lib/ftpfs.c
index 8c5f4db091..3fd0ffa6e4 100644
--- a/cpukit/libnetworking/lib/ftpfs.c
+++ b/cpukit/libnetworking/lib/ftpfs.c
@@ -51,7 +51,6 @@
#include <rtems.h>
#include <rtems/ftpfs.h>
-#include <rtems/imfs.h>
#include <rtems/libio_.h>
#include <rtems/rtems_bsdnet.h>
#include <rtems/seterr.h>
@@ -1199,9 +1198,6 @@ int rtems_ftpfs_initialize(
/* We maintain no real file system nodes, so there is no real root */
e->mt_fs_root->location.node_access = NULL;
- /* Just use the limits from IMFS */
- e->pathconf_limits_and_options = IMFS_LIMITS_AND_OPTIONS;
-
return 0;
}