]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit - lib/btree.c
btree: export btree_get_prev() so modules can use btree_for_each
authorSteve Hodgson <steve@purestorage.com>
Tue, 10 Jan 2012 23:09:47 +0000 (15:09 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 11 Jan 2012 00:30:49 +0000 (16:30 -0800)
commit96b62067f970ff529c98913311d33f4b57b453dc
tree4e696c155b2cce6fd0068a9be2a0c09e42bb38d6
parentc957b614bde8539416dcde8d702370ff30b1c662
btree: export btree_get_prev() so modules can use btree_for_each

The btree_for_each API is implemented with macros that internally call
btree_get_prev(), so if btree_get_prev() isn't exported then modules fail
to link if they try to use one of the btree_for_each macros.  Since the
rest of the btree API is exported, we should keep things orthogonal and
make this work too.

Signed-off-by: Roland Dreier <roland@purestorage.com>
Signed-off-by: Steve Hodgson <steve@purestorage.com>
Acked-by: Joern Engel <joern@logfs.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/btree.c