dcache: increase DNAME_INLINE_LEN

Most dentry allocations exceed 32B.

Increase it by 192 bytes to accommodate larger allocation requests.
This still ensures 64 bytes cacheline alignments.

Signed-off-by: Park Ju Hyung <qkrwngud825@gmail.com>
Signed-off-by: Adam W. Willis <return.of.octobot@gmail.com>
This commit is contained in:
Park Ju Hyung 2019-07-12 00:57:18 +09:00 committed by spakkkk
parent 737ee0e2bf
commit 80a6eade76

View File

@ -75,7 +75,7 @@ extern struct dentry_stat_t dentry_stat;
* large memory footprint increase).
*/
#ifdef CONFIG_64BIT
# define DNAME_INLINE_LEN 96 /* 256 bytes */
# define DNAME_INLINE_LEN 32 + 192 /* 384 bytes */
#else
# ifdef CONFIG_SMP
# define DNAME_INLINE_LEN 36 /* 128 bytes */