diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-21 13:54:22 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-21 13:54:22 -0700 |
commit | 30d73f375238441d6dc31de0d90bc39f5bb0bfe5 (patch) | |
tree | 0a94e144fbb7d3fa84c443fb6cc61f2f01f61a1b /fs/dlm/lowcomms.c | |
parent | e2a0883e4071237d09b604a342c28b96b44a04b3 (diff) | |
parent | 1b189b8889b7d8e0bddc2655d171c43cfd344157 (diff) | |
download | op-kernel-dev-30d73f375238441d6dc31de0d90bc39f5bb0bfe5.zip op-kernel-dev-30d73f375238441d6dc31de0d90bc39f5bb0bfe5.tar.gz |
Merge tag 'dlm-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm
Pull dlm updates for 3.4 from David Teigland:
"This set includes one trivial fix, and one simple recovery speed up.
Directory recovery can use the standard hash table to find resources
rather than always searching the linear recovery list."
* tag 'dlm-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm:
dlm: last element of dlm_local_addr[] never used
dlm: fix slow rsb search in dir recovery
Diffstat (limited to 'fs/dlm/lowcomms.c')
-rw-r--r-- | fs/dlm/lowcomms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c index ca0c59a..133ef6d 100644 --- a/fs/dlm/lowcomms.c +++ b/fs/dlm/lowcomms.c @@ -1076,7 +1076,7 @@ static void init_local(void) int i; dlm_local_count = 0; - for (i = 0; i < DLM_MAX_ADDR_COUNT - 1; i++) { + for (i = 0; i < DLM_MAX_ADDR_COUNT; i++) { if (dlm_our_addr(&sas, i)) break; |