diff options
author | Matthew Wilcox <willy@linux.intel.com> | 2016-12-14 15:08:31 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-12-14 16:04:10 -0800 |
commit | 91b9677c4c1242a3d0afd76d0e91f43808243b92 (patch) | |
tree | ac110665e35ff5b3bac5516792cb797a5925fb36 /lib | |
parent | 0629573e6bbd60f20ed2d7a91da1214a6274e751 (diff) | |
download | talos-obmc-linux-91b9677c4c1242a3d0afd76d0e91f43808243b92.tar.gz talos-obmc-linux-91b9677c4c1242a3d0afd76d0e91f43808243b92.zip |
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')
-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, * because RADIX_TREE_MAP_SHIFT < BITS_PER_LONG. * * This condition also used by radix_tree_next_slot() to stop - * contiguous iterating, and forbid swithing to the next chunk. + * contiguous iterating, and forbid switching to the next chunk. */ index = iter->next_index; if (!index && iter->index) |