commit | e10abc8abb479dadd928b5e149bef67664867a02 | [log] [tgz] |
---|---|---|
author | Alan Stokes <alanstokes@google.com> | Tue Feb 28 11:32:59 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Feb 28 11:32:59 2023 +0000 |
tree | 912aa93c68af3144b183cabdcaa631d97b8d83d4 | |
parent | 37a9041ee210d11402abaa883e530c4a5d14315e [diff] | |
parent | fa5172ef1b7a5e166e82f4d374f8c8978a61e4e0 [diff] |
Merge "Increase max entry for directories to 1000"
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,