Re: [PATCH] Make radix_tree_preload alloc one more slot

From: Wu Fengguang
Date: Thu Aug 27 2009 - 23:34:24 EST


On Fri, Aug 28, 2009 at 10:33:03AM +0800, Yan, Zheng wrote:
> 2009/8/28 Wu Fengguang <fengguang.wu@xxxxxxxxx>:
> > On Fri, Aug 28, 2009 at 12:46:46AM +0800, Yan, Zheng Âwrote:
> >> 2009/8/27 Wu Fengguang <fengguang.wu@xxxxxxxxx>:
> >> >
> >> > Hi Yanhai,
> >> >
> >> > [Nick CCed]
> >> >
> >> > On Thu, Aug 27, 2009 at 08:10:41PM +0800, Zhu Yanhai wrote:
> >> >> The operations against radix tree always use paths with RADIX_TREE_MAX_PATH
> >> >> + 1 slots, but radix_tree_preload only pre-allocs RADIX_TREE_MAX_PATH
> >> >> slots at present, which causes radix_tree_node_alloc tries to do
> >> >> kmem_cache_alloc at the last slot even if we don't have gfp_mask &
> >> >> __GFP_WAIT in hand.
> >> >
> >> > Are you sure? ÂThe comments read:
> >> >
> >> > Â Â Â Â/*
> >> > Â Â Â Â * The radix tree path needs to be one longer than the maximum path
> >> > Â Â Â Â * since the "list" is null terminated.
> >> > Â Â Â Â */
> >> > Â Â Â Âstruct radix_tree_path path[RADIX_TREE_MAX_PATH + 1], *pathp = path;
> >> >
> >> > Thanks,
> >> > Fengguang
> >> >
> >> >
> >> >> Signed-off-by: Zhu Yanhai <zhu.yanhai@xxxxxxxxx>
> >> >>
> >> >> ---
> >> >> Â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 23abbd9..72225a8 100644
> >> >> --- a/lib/radix-tree.c
> >> >> +++ b/lib/radix-tree.c
> >> >> @@ -79,7 +79,7 @@ static struct kmem_cache *radix_tree_node_cachep;
> >> >> Â */
> >> >> Âstruct radix_tree_preload {
> >> >> Â Â Â int nr;
> >> >> - Â Â struct radix_tree_node *nodes[RADIX_TREE_MAX_PATH];
> >> >> + Â Â struct radix_tree_node *nodes[RADIX_TREE_MAX_PATH + 1];
> >> >> Â};
> >> >> Âstatic DEFINE_PER_CPU(struct radix_tree_preload, radix_tree_preloads) = { 0, };
> >> >>
> >> >> --
> >> >> 1.6.2.2
> >>
> >> here is test case.
> >> ---
> >> #include <linux/module.h>
> >> #include <linux/kernel.h>
> >> #include <linux/radix-tree.h>
> >>
> >> static void __exit exit_test(void)
> >> {
> >> }
> >>
> >> static int __init init_test(void)
> >> {
> >> Â Â Â Â struct radix_tree_root radix_tree;
> >> Â Â Â Â int foo;
> >>
> >> Â Â Â Â INIT_RADIX_TREE(&radix_tree, GFP_KERNEL);
> >> Â Â Â Â radix_tree_preload(GFP_KERNEL);
> >> Â Â Â Â preempt_disable();
> >> Â Â Â Â radix_tree_insert(&radix_tree, (unsigned long)-2, &foo);
> >> Â Â Â Â preempt_enable();
> >> Â Â Â Â radix_tree_preload_end();
> >> Â Â Â Â radix_tree_delete(&radix_tree, (unsigned long)-2);
> >> Â Â Â Â return -1;
> >> }
> >>
> >> module_init(init_test)
> >> module_exit(exit_test)
> >> MODULE_LICENSE("GPL");
> >> -- end --
> >>
> >> I got following oops.
> >> ---
> >> BUG: sleeping function called from invalid context at
> >> /home/zhyan/linux-2.6/mm/slub.c:1697
> >> in_atomic(): 1, irqs_disabled(): 0, pid: 2791, name: insmod
> >> Pid: 2791, comm: insmod Not tainted 2.6.31-rc7 #1
> >> Call Trace:
> >> Â[<c042b26a>] __might_sleep+0x101/0x108
> >> Â[<c04b3976>] kmem_cache_alloc+0x39/0x141
> >> Â[<c05453c7>] ? radix_tree_node_alloc+0x4c/0x5d
> >> Â[<c05453c7>] radix_tree_node_alloc+0x4c/0x5d
> >> Â[<c054549a>] radix_tree_insert+0xc2/0x174
> >> Â[<f90cd03f>] init_test+0x3f/0x89 [test]
> >> Â[<c0401141>] do_one_initcall+0x4f/0x11f
> >> Â[<f90cd000>] ? init_test+0x0/0x89 [test]
> >> Â[<c044e504>] ? __blocking_notifier_call_chain+0x45/0x51
> >> Â[<c045d833>] sys_init_module+0xac/0x1bc
> >> Â[<c0403458>] sysenter_do_call+0x12/0x2d
> >> -- end --
> > This is weird, I cannot reproduce this message. Here is my .config.
> > I use SLAB but it also has the might_sleep_if(__GFP_WAIT) debug call.
> > Thanks,
> > Fengguang
>
> I realize it's my fault, I use GFP_KERNEL to initialize the radix tree.
> radix_tree_node_alloc does not use pre-loaded memory when the
> radix tree is initialized with GFP_KERNEL. Yesterday when I saw the

Ah yes!

> Oops, I suspect it's an radix_tree_preload bug. I told Zhu Yanhai
> my thought. Please forgive my rash act.

That's all right. So we can just do nothing? :)

Thanks,
Fengguang

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/