diff options
author | Matthew Wilcox <willy@linux.intel.com> | 2016-12-14 18:08:31 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-12-14 19:04:10 -0500 |
commit | 91b9677c4c1242a3d0afd76d0e91f43808243b92 (patch) | |
tree | ac110665e35ff5b3bac5516792cb797a5925fb36 /lib/radix-tree.c | |
parent | 0629573e6bbd60f20ed2d7a91da1214a6274e751 (diff) |
radix-tree: fix typo
Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
Tested-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Konstantin Khlebnikov <koct9i@gmail.com>
Cc: Ross Zwisler <ross.zwisler@linux.intel.com>
Cc: Matthew Wilcox <mawilcox@microsoft.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/radix-tree.c')
-rw-r--r-- | lib/radix-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/radix-tree.c b/lib/radix-tree.c index 2e8c6f7aa56e..60c10361cbfa 100644 --- a/lib/radix-tree.c +++ b/lib/radix-tree.c | |||
@@ -1110,7 +1110,7 @@ void **radix_tree_next_chunk(struct radix_tree_root *root, | |||
1110 | * because RADIX_TREE_MAP_SHIFT < BITS_PER_LONG. | 1110 | * because RADIX_TREE_MAP_SHIFT < BITS_PER_LONG. |
1111 | * | 1111 | * |
1112 | * This condition also used by radix_tree_next_slot() to stop | 1112 | * This condition also used by radix_tree_next_slot() to stop |
1113 | * contiguous iterating, and forbid swithing to the next chunk. | 1113 | * contiguous iterating, and forbid switching to the next chunk. |
1114 | */ | 1114 | */ |
1115 | index = iter->next_index; | 1115 | index = iter->next_index; |
1116 | if (!index && iter->index) | 1116 | if (!index && iter->index) |