From 3cf8394af5f646642df593c8de833441e186af64 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 24 Feb 1999 20:58:47 +0000 Subject: Changed IMFS to use IMFS_NAME_MAX as the maximum length of a basename rather then NAME_MAX. NAME_MAX is 255 and that lets IMFS chew up memory too fast. Perhaps in the future, the places in IMFS that put a maximum length name string on the stack and the jnode structure does not include a maximu length name string can be fixed so this is not a problem. --- cpukit/libcsupport/src/mount.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'cpukit/libcsupport/src/mount.c') diff --git a/cpukit/libcsupport/src/mount.c b/cpukit/libcsupport/src/mount.c index 9b42c78118..d7d12f442e 100644 --- a/cpukit/libcsupport/src/mount.c +++ b/cpukit/libcsupport/src/mount.c @@ -32,12 +32,16 @@ Chain_Control rtems_filesystem_mount_table_control; +#include "imfs.h" + +/* XXX this structure should be in an IMFS specific file */ +/* XXX this structure should use real constants */ rtems_filesystem_limits_and_options_t IMFS_LIMITS_AND_OPTIONS = { 5, /* link_max */ 6, /* max_canon */ 7, /* max_input */ - 255, /* name_max */ + IMFS_NAME_MAX, /* name_max */ 255, /* path_max */ 2, /* pipe_buf */ 1, /* posix_async_io */ -- cgit v1.2.3