public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* optimize DNAME_INLINE_LEN
@ 2001-12-13 22:22 Manfred Spraul
  2001-12-13 23:07 ` Andreas Dilger
  0 siblings, 1 reply; 6+ messages in thread
From: Manfred Spraul @ 2001-12-13 22:22 UTC (permalink / raw)
  To: linux-kernel; +Cc: ak

[-- Attachment #1: Type: text/plain, Size: 499 bytes --]

The dcache entries are allocated with SLAB_HWCACHE_ALIGN. For better
memory usage, we should increase DNAME_INLINE_LEN so that sizeof(struct
dentry) becomes a multiple of the L1 cache line size.

On i386 the DNAME_INLINE_LEN becomes 36 bytes instead of 16, which saves
thousands of kmallocs for external file names. (12818 on my debug
system, after updatedb)

The attached patch is preliminary, it doesn't compile with egcs-1.1.2.
Which gcc version added support for unnamed structures?

--
	Manfred

[-- Attachment #2: patch-dcache --]
[-- Type: text/plain, Size: 742 bytes --]

--- 2.5/include/linux/dcache.h	Thu Oct 11 15:20:18 2001
+++ build-2.5/include/linux/dcache.h	Thu Dec 13 22:55:50 2001
@@ -61,9 +61,7 @@
 	return end_name_hash(hash);
 }
 
-#define DNAME_INLINE_LEN 16
-
-struct dentry {
+struct dentry_nameless {
 	atomic_t d_count;
 	unsigned int d_flags;
 	struct inode  * d_inode;	/* Where the name belongs to - NULL is negative */
@@ -80,6 +78,12 @@
 	struct super_block * d_sb;	/* The root of the dentry tree */
 	unsigned long d_vfs_flags;
 	void * d_fsdata;		/* fs-specific data */
+};
+#define DNAME_INLINE_LEN \
+	(16 + L1_CACHE_BYTES - (16+sizeof(struct dentry_nameless))%L1_CACHE_BYTES)
+
+struct dentry {
+	struct dentry_nameless;
 	unsigned char d_iname[DNAME_INLINE_LEN]; /* small names */
 };
 

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2001-12-14  0:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-12-13 22:22 optimize DNAME_INLINE_LEN Manfred Spraul
2001-12-13 23:07 ` Andreas Dilger
2001-12-13 23:24   ` Manfred Spraul
2001-12-13 23:29   ` Andi Kleen
2001-12-14  0:03     ` Andreas Dilger
2001-12-14  0:10       ` Andi Kleen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox