[PATCH] drm: reorder drm_open_hash to remove padding on 64 bitbuilds

From: Richard Kennedy
Date: Tue Mar 01 2011 - 09:09:22 EST


Remove 8 bytes of padding on 64 bit builds to reduce the size of
drm_open_hash to 24 bytes, which also shrinks drm_object_file by 24
bytes (136 -> 112) allowing it to fit in one fewer cache lines and a
smaller slab.

Signed-off-by: Richard Kennedy <richard@xxxxxxxxxxxxxxx>
---
patch against v2.6.38-rc6
compiled & tested on x86_64 with nouveau.

regards
Richard



diff --git a/include/drm/drm_hashtab.h b/include/drm/drm_hashtab.h
index 0af087a..ff2ab48 100644
--- a/include/drm/drm_hashtab.h
+++ b/include/drm/drm_hashtab.h
@@ -48,8 +48,8 @@ struct drm_open_hash {
unsigned int size;
unsigned int order;
unsigned int fill;
- struct hlist_head *table;
int use_vmalloc;
+ struct hlist_head *table;
};




--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/