From: Eric Dumazet Date: Tue, 4 Oct 2005 22:55:51 +0000 (-0700) Subject: [INET]: Shrink struct inet_ehash_bucket on 32 bits UP X-Git-Tag: v2.6.14-rc4~39^2~16 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d2553612fa329979e6423a5f2410fd7be5aa902;p=pandora-kernel.git [INET]: Shrink struct inet_ehash_bucket on 32 bits UP No need to align struct inet_ehash_bucket on a 8 bytes boundary. On 32 bits Uniprocessor, that's a waste of 4 bytes per struct (50 %) On other platforms, the attribute is useless, natual alignement is already 8. platform | Size before | Size after patch -------------+-------------+------------------ 32 bits, UP | 8 | 4 32 bits, SMP | 8 | 8 64 bits, UP | 8 | 8 64 bits, SMP | 16 | 16 Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller --- Reading git-diff-tree failed