summaryrefslogtreecommitdiff
path: root/firmware/include/fs_defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/fs_defines.h')
-rw-r--r--firmware/include/fs_defines.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/firmware/include/fs_defines.h b/firmware/include/fs_defines.h
index 538c4b36cd..aee6daff6a 100644
--- a/firmware/include/fs_defines.h
+++ b/firmware/include/fs_defines.h
@@ -51,12 +51,19 @@
51/* internal functions open streams as well; make sure they don't fail if all 51/* internal functions open streams as well; make sure they don't fail if all
52 user descs are busy; this needs to be at least the greatest quantity needed 52 user descs are busy; this needs to be at least the greatest quantity needed
53 at once by all internal functions */ 53 at once by all internal functions */
54/* internal functions open streams as well; make sure they don't fail if all
55 user descs are busy; this needs to be at least the greatest quantity needed
56 at once by all internal functions */
57#define MOUNT_AUX_FILEOBJS 1
58
54#ifdef HAVE_DIRCACHE 59#ifdef HAVE_DIRCACHE
55#define AUX_FILEOBJS 3 60#define DIRCACHE_AUX_FILEOBJS 1
56#else 61#else
57#define AUX_FILEOBJS 2 62#define DIRCACHE_AUX_FILEOBJS 0
58#endif 63#endif
59 64
65#define AUX_FILEOBJS (2+DIRCACHE_AUX_FILEOBJS+MOUNT_AUX_FILEOBJS)
66
60/* number of components statically allocated to handle the vast majority 67/* number of components statically allocated to handle the vast majority
61 of path depths; should maybe be tuned for >= 90th percentile but for now, 68 of path depths; should maybe be tuned for >= 90th percentile but for now,
62 imma just guessing based on something like: 69 imma just guessing based on something like: