]> git.karo-electronics.de Git - karo-tx-linux.git/commit
radix-tree: fix contiguous iterator
authorKonstantin Khlebnikov <khlebnikov@openvz.org>
Tue, 5 Jun 2012 17:36:33 +0000 (21:36 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 9 Jun 2012 15:36:17 +0000 (00:36 +0900)
commitb642cb6a143da812f188307c2661c0357776a9d0
tree2c88df819dc12d6a92bf72cce91eaad3ba62ec88
parentf940c5366eaaea9630ba643a036c2df321f66db3
radix-tree: fix contiguous iterator

commit fffaee365fded09f9ebf2db19066065fa54323c3 upstream.

This patch fixes bug in macro radix_tree_for_each_contig().

If radix_tree_next_slot() sees NULL in next slot it returns NULL, but following
radix_tree_next_chunk() switches iterating into next chunk. As result iterating
becomes non-contiguous and breaks vfs "splice" and all its users.

Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
Reported-and-bisected-by: Hans de Bruin <jmdebruin@xmsnet.nl>
Reported-and-bisected-by: Ondrej Zary <linux@rainbow-software.org>
Reported-bisected-and-tested-by: Toralf Förster <toralf.foerster@gmx.de>
Link: https://lkml.org/lkml/2012/6/5/64
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/radix-tree.h
lib/radix-tree.c