diff options
author | David Chinner <dgc@sgi.com> | 2007-07-14 02:05:04 -0400 |
---|---|---|
committer | Tim Shimmin <tes@chook.melbourne.sgi.com> | 2007-07-14 02:05:04 -0400 |
commit | d7f0923d83dcabfc063257a281529cdbcd5eedb5 (patch) | |
tree | e45e8134c4d3b8c9a80d652063aa296fc222f31d /lib | |
parent | faa63e9584df41020440756b8b90b7b63f95e4f6 (diff) |
[LIB]: export radix_tree_preload()
XFS filestreams functionality uses radix trees and the preload
functions. XFS can be built as a module and hence we need
radix_tree_preload() exported. radix_tree_preload_end() is a
static inline, so it doesn't need exporting.
Signed-Off-By: Dave Chinner <dgc@sgi.com>
Signed-Off-By: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/radix-tree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/radix-tree.c b/lib/radix-tree.c index 402eb4eb6b23..9927cca14cb7 100644 --- a/lib/radix-tree.c +++ b/lib/radix-tree.c | |||
@@ -151,6 +151,7 @@ int radix_tree_preload(gfp_t gfp_mask) | |||
151 | out: | 151 | out: |
152 | return ret; | 152 | return ret; |
153 | } | 153 | } |
154 | EXPORT_SYMBOL(radix_tree_preload); | ||
154 | 155 | ||
155 | static inline void tag_set(struct radix_tree_node *node, unsigned int tag, | 156 | static inline void tag_set(struct radix_tree_node *node, unsigned int tag, |
156 | int offset) | 157 | int offset) |