[GFS2] Use hlist for glock hash chains
authorSteven Whitehouse <swhiteho@redhat.com>
Tue, 12 Sep 2006 14:10:01 +0000 (10:10 -0400)
committerSteven Whitehouse <swhiteho@redhat.com>
Tue, 12 Sep 2006 14:10:01 +0000 (10:10 -0400)
commitb6397893a5ed81970e803d61ee2f1a0e79f87438
tree88b1f9fe213b70f0c4d96583bb40601d9cfc446d
parent24264434603cc102d71fb2a1b3b7e282a781f449
[GFS2] Use hlist for glock hash chains

This results in smaller list heads, so that we can have more chains
in the same amount of memory (twice as many). I've multiplied the
size of the table by four though - this is because we are saving
memory by not having one lock per chain any more. So we land up
using about the same amount of memory for the hash table as we
did before I started these changes, the difference being that we
now have four times as many hash chains.

The reason that I say "about the same amount of memory" is that the
actual amount now depends upon the NR_CPUS and some of the config
variables, so that its not exact and in some cases we do use more
memory. Eventually we might want to scale the hash table size
according to the size of physical ram as measured on module load.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/glock.c
fs/gfs2/incore.h
fs/gfs2/main.c