Increase max entry for directories to 1000
This include read-only directory initialized from build manifest, and
the writable directory initialized with empty.
Bug: 271029041
Test: atest ComposHostTestCases on CF
Change-Id: Ief9b086dc7e2eeeaf7e4531740cad3e6ee3348f0
diff --git a/authfs/src/file/dir.rs b/authfs/src/file/dir.rs
index f3cc6f8..5d2ec9f 100644
--- a/authfs/src/file/dir.rs
+++ b/authfs/src/file/dir.rs
@@ -28,7 +28,7 @@
use crate::fsverity::VerifiedFileEditor;
use crate::fusefs::{AuthFsDirEntry, Inode};
-const MAX_ENTRIES: u16 = 100; // Arbitrary limit
+const MAX_ENTRIES: u16 = 1000; // Arbitrary limit
struct InodeInfo {
inode: Inode,