* [PATCH -next v2] IB/ipath: use GFP_NOWAIT under spin lock
@ 2013-02-21 5:45 Wei Yongjun
[not found] ` <CAPgLHd965-++Kj6HE-wjHqpZjortmmCAvApSSwiXaX6YwWncHQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 10+ messages in thread
From: Wei Yongjun @ 2013-02-21 5:45 UTC (permalink / raw)
To: infinipath-ral2JQCrhuEAvxtiuMwx3w, roland-DgEjT+Ai2ygdnm+yROfE0A,
sean.hefty-ral2JQCrhuEAvxtiuMwx3w,
hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w, tj-DgEjT+Ai2ygdnm+yROfE0A
Cc: yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY,
linux-rdma-u79uwXL29TY76Z2rM5mHXA
From: Wei Yongjun <yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org>
A spin lock is taken here so we should use GFP_NOWAIT like
other case.
Signed-off-by: Wei Yongjun <yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org>
---
drivers/infiniband/hw/ipath/ipath_driver.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/infiniband/hw/ipath/ipath_driver.c b/drivers/infiniband/hw/ipath/ipath_driver.c
index fcdaeea..03ed479 100644
--- a/drivers/infiniband/hw/ipath/ipath_driver.c
+++ b/drivers/infiniband/hw/ipath/ipath_driver.c
@@ -204,7 +204,7 @@ static struct ipath_devdata *ipath_alloc_devdata(struct pci_dev *pdev)
idr_preload(GFP_KERNEL);
spin_lock_irqsave(&ipath_devs_lock, flags);
- ret = idr_alloc(&unit_table, dd, 0, 0, GFP_KERNEL);
+ ret = idr_alloc(&unit_table, dd, 0, 0, GFP_NOWAIT);
if (ret < 0) {
printk(KERN_ERR IPATH_DRV_NAME
": Could not allocate unit ID: error %d\n", -ret);
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 10+ messages in thread[parent not found: <CAPgLHd965-++Kj6HE-wjHqpZjortmmCAvApSSwiXaX6YwWncHQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* RE: [PATCH -next v2] IB/ipath: use GFP_NOWAIT under spin lock [not found] ` <CAPgLHd965-++Kj6HE-wjHqpZjortmmCAvApSSwiXaX6YwWncHQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2013-02-21 14:34 ` Marciniszyn, Mike 2013-02-21 15:33 ` Tejun Heo 1 sibling, 0 replies; 10+ messages in thread From: Marciniszyn, Mike @ 2013-02-21 14:34 UTC (permalink / raw) To: Wei Yongjun, infinipath, roland-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org, Hefty, Sean, hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org, tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org Cc: yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org, linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > Subject: [PATCH -next v2] IB/ipath: use GFP_NOWAIT under spin lock > > From: Wei Yongjun <yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org> Acked-by: Mike Marciniszyn <mike.marciniszyn-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH -next v2] IB/ipath: use GFP_NOWAIT under spin lock [not found] ` <CAPgLHd965-++Kj6HE-wjHqpZjortmmCAvApSSwiXaX6YwWncHQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2013-02-21 14:34 ` Marciniszyn, Mike @ 2013-02-21 15:33 ` Tejun Heo [not found] ` <CAOS58YNcJ0gDmoR4M1tgJbqqzv0i=5EkoAr=OhoTSrozfw-ZtQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 1 sibling, 1 reply; 10+ messages in thread From: Tejun Heo @ 2013-02-21 15:33 UTC (permalink / raw) To: Wei Yongjun Cc: infinipath-ral2JQCrhuEAvxtiuMwx3w, roland-DgEjT+Ai2ygdnm+yROfE0A, sean.hefty-ral2JQCrhuEAvxtiuMwx3w, hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w, yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY, linux-rdma-u79uwXL29TY76Z2rM5mHXA On Wed, Feb 20, 2013 at 9:45 PM, Wei Yongjun <weiyj.lk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > From: Wei Yongjun <yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org> > > A spin lock is taken here so we should use GFP_NOWAIT like > other case. > > Signed-off-by: Wei Yongjun <yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org> Acked-by: Tejun Heo <tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> Thanks! -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 10+ messages in thread
[parent not found: <CAOS58YNcJ0gDmoR4M1tgJbqqzv0i=5EkoAr=OhoTSrozfw-ZtQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH -next v2] IB/ipath: use GFP_NOWAIT under spin lock [not found] ` <CAOS58YNcJ0gDmoR4M1tgJbqqzv0i=5EkoAr=OhoTSrozfw-ZtQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2013-02-21 15:34 ` Tejun Heo [not found] ` <CAOS58YOHt7OaBHRwwqjLF8xZtVaj=BeFUXFAxW0owb4_BxC3Rg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 10+ messages in thread From: Tejun Heo @ 2013-02-21 15:34 UTC (permalink / raw) To: Wei Yongjun Cc: infinipath-ral2JQCrhuEAvxtiuMwx3w, roland-DgEjT+Ai2ygdnm+yROfE0A, sean.hefty-ral2JQCrhuEAvxtiuMwx3w, hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w, yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY, linux-rdma-u79uwXL29TY76Z2rM5mHXA On Thu, Feb 21, 2013 at 7:33 AM, Tejun Heo <tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote: >> Signed-off-by: Wei Yongjun <yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org> > > Acked-by: Tejun Heo <tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> Just noticed akpm isn't cc'd. Can you please repost w/ akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org cc'd? All related patches are going through -mm. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 10+ messages in thread
[parent not found: <CAOS58YOHt7OaBHRwwqjLF8xZtVaj=BeFUXFAxW0owb4_BxC3Rg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* [PATCH -next v3] IB/ipath: use GFP_NOWAIT under spin lock [not found] ` <CAOS58YOHt7OaBHRwwqjLF8xZtVaj=BeFUXFAxW0owb4_BxC3Rg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2013-02-22 2:48 ` Wei Yongjun [not found] ` <CAPgLHd8_WyQiDpJwRWwNVPbSvVcpMj1bMu7h2QmfJpscd0LOFQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 10+ messages in thread From: Wei Yongjun @ 2013-02-22 2:48 UTC (permalink / raw) To: tj-DgEjT+Ai2ygdnm+yROfE0A Cc: infinipath-ral2JQCrhuEAvxtiuMwx3w, roland-DgEjT+Ai2ygdnm+yROfE0A, sean.hefty-ral2JQCrhuEAvxtiuMwx3w, hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w, linux-rdma-u79uwXL29TY76Z2rM5mHXA, akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b From: Wei Yongjun <yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org> A spin lock is taken here so we should use GFP_NOWAIT like other case. Signed-off-by: Wei Yongjun <yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org> Acked-by: Mike Marciniszyn <mike.marciniszyn-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> Acked-by: Tejun Heo <tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> --- v2 -> v3: add acked and cc akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org --- drivers/infiniband/hw/ipath/ipath_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/infiniband/hw/ipath/ipath_driver.c b/drivers/infiniband/hw/ipath/ipath_driver.c index fcdaeea..03ed479 100644 --- a/drivers/infiniband/hw/ipath/ipath_driver.c +++ b/drivers/infiniband/hw/ipath/ipath_driver.c @@ -204,7 +204,7 @@ static struct ipath_devdata *ipath_alloc_devdata(struct pci_dev *pdev) idr_preload(GFP_KERNEL); spin_lock_irqsave(&ipath_devs_lock, flags); - ret = idr_alloc(&unit_table, dd, 0, 0, GFP_KERNEL); + ret = idr_alloc(&unit_table, dd, 0, 0, GFP_NOWAIT); if (ret < 0) { printk(KERN_ERR IPATH_DRV_NAME ": Could not allocate unit ID: error %d\n", -ret); -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 10+ messages in thread
[parent not found: <CAPgLHd8_WyQiDpJwRWwNVPbSvVcpMj1bMu7h2QmfJpscd0LOFQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH -next v3] IB/ipath: use GFP_NOWAIT under spin lock [not found] ` <CAPgLHd8_WyQiDpJwRWwNVPbSvVcpMj1bMu7h2QmfJpscd0LOFQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2013-02-22 22:16 ` Andrew Morton [not found] ` <20130222141642.247ee792.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> 0 siblings, 1 reply; 10+ messages in thread From: Andrew Morton @ 2013-02-22 22:16 UTC (permalink / raw) To: Wei Yongjun Cc: tj-DgEjT+Ai2ygdnm+yROfE0A, infinipath-ral2JQCrhuEAvxtiuMwx3w, roland-DgEjT+Ai2ygdnm+yROfE0A, sean.hefty-ral2JQCrhuEAvxtiuMwx3w, hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w, linux-rdma-u79uwXL29TY76Z2rM5mHXA On Fri, 22 Feb 2013 10:48:12 +0800 Wei Yongjun <weiyj.lk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > From: Wei Yongjun <yongjun_wei-zrsr2BFq86L20UzCJQGyNP8+0UxHXcjY@public.gmane.org> > > A spin lock is taken here so we should use GFP_NOWAIT like > other case. > > .. > > --- a/drivers/infiniband/hw/ipath/ipath_driver.c > +++ b/drivers/infiniband/hw/ipath/ipath_driver.c > @@ -204,7 +204,7 @@ static struct ipath_devdata *ipath_alloc_devdata(struct pci_dev *pdev) > idr_preload(GFP_KERNEL); > spin_lock_irqsave(&ipath_devs_lock, flags); > > - ret = idr_alloc(&unit_table, dd, 0, 0, GFP_KERNEL); > + ret = idr_alloc(&unit_table, dd, 0, 0, GFP_NOWAIT); > if (ret < 0) { > printk(KERN_ERR IPATH_DRV_NAME > ": Could not allocate unit ID: error %d\n", -ret); I'd say we're entitled to use GFP_ATOMIC here: it will dip into page reserves and is less likely to fail. Given that this code is performing allocations under spin_lock_irqsave(), it should be using idr_preload()/idr_preload_end() (and perhaps even a repeat loop around those) to make the allocations more reliable. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 10+ messages in thread
[parent not found: <20130222141642.247ee792.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>]
* Re: [PATCH -next v3] IB/ipath: use GFP_NOWAIT under spin lock [not found] ` <20130222141642.247ee792.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> @ 2013-02-22 22:21 ` Tejun Heo [not found] ` <CAOS58YMrcCwh8RhnfRTsmbfa_K_h1=n2M6ws4=MHWDxpAAoXOw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 10+ messages in thread From: Tejun Heo @ 2013-02-22 22:21 UTC (permalink / raw) To: Andrew Morton Cc: Wei Yongjun, infinipath-ral2JQCrhuEAvxtiuMwx3w, roland-DgEjT+Ai2ygdnm+yROfE0A, sean.hefty-ral2JQCrhuEAvxtiuMwx3w, hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w, linux-rdma-u79uwXL29TY76Z2rM5mHXA Hello, Andrew. On Fri, Feb 22, 2013 at 2:16 PM, Andrew Morton <akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> wrote: > Given that this code is performing allocations under > spin_lock_irqsave(), it should be using idr_preload()/idr_preload_end() > (and perhaps even a repeat loop around those) to make the allocations > more reliable. It's already using preload so GFP_NOWAIT is enough to guarantee GFP_KERNEL level allocation. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 10+ messages in thread
[parent not found: <CAOS58YMrcCwh8RhnfRTsmbfa_K_h1=n2M6ws4=MHWDxpAAoXOw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH -next v3] IB/ipath: use GFP_NOWAIT under spin lock [not found] ` <CAOS58YMrcCwh8RhnfRTsmbfa_K_h1=n2M6ws4=MHWDxpAAoXOw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2013-02-22 22:44 ` Andrew Morton [not found] ` <20130222144451.ed48f015.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> 0 siblings, 1 reply; 10+ messages in thread From: Andrew Morton @ 2013-02-22 22:44 UTC (permalink / raw) To: Tejun Heo Cc: Wei Yongjun, infinipath-ral2JQCrhuEAvxtiuMwx3w, roland-DgEjT+Ai2ygdnm+yROfE0A, sean.hefty-ral2JQCrhuEAvxtiuMwx3w, hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w, linux-rdma-u79uwXL29TY76Z2rM5mHXA On Fri, 22 Feb 2013 14:21:58 -0800 Tejun Heo <tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote: > Hello, Andrew. > > On Fri, Feb 22, 2013 at 2:16 PM, Andrew Morton > <akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> wrote: > > Given that this code is performing allocations under > > spin_lock_irqsave(), it should be using idr_preload()/idr_preload_end() > > (and perhaps even a repeat loop around those) to make the allocations > > more reliable. > > It's already using preload so GFP_NOWAIT is enough to guarantee > GFP_KERNEL level allocation. > Not "guarantee". - idr_preload() might fail. It is a design error that idr_preload() returns void - it should do what radix_tree_preload() does. - even if idr_preload() completed the preload, an interrupt might come in and its handler might drain this cpu's preload pool. This all sounds like crazy will-never-happen stuff. That's what I thought about the radix-tree code when used for pagecache. But under extreme worloads, the cant-happens kept on happening, which is how all that funky preload/preempt-disable stuff occurred. It would be more robust still if the per-cpu preload magazines were per-radixtree and per-idr, rather than kernel-wide. That would reduce the risk of interrupt-time stealing. Or make foo_preload() return with interrupts disabled rather than jsut preempt_disable(). -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 10+ messages in thread
[parent not found: <20130222144451.ed48f015.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>]
* Re: [PATCH -next v3] IB/ipath: use GFP_NOWAIT under spin lock [not found] ` <20130222144451.ed48f015.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> @ 2013-02-22 22:51 ` Tejun Heo [not found] ` <CAOS58YMo3rABCLpKYRr7pRqeMo+rmGbbUJDj5xxE08pb-SyBqw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 10+ messages in thread From: Tejun Heo @ 2013-02-22 22:51 UTC (permalink / raw) To: Andrew Morton Cc: Wei Yongjun, infinipath-ral2JQCrhuEAvxtiuMwx3w, roland-DgEjT+Ai2ygdnm+yROfE0A, sean.hefty-ral2JQCrhuEAvxtiuMwx3w, hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w, linux-rdma-u79uwXL29TY76Z2rM5mHXA Hello, Andrew. On Fri, Feb 22, 2013 at 2:44 PM, Andrew Morton <akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org> wrote: > Not "guarantee". > > - idr_preload() might fail. It is a design error that idr_preload() > returns void - it should do what radix_tree_preload() does. That would equal to GFP_KERNEL allocation failing. The error isn't ignored. It gets propagated to the actual idr_alloc() allocation. You're just collecting the error later. > - even if idr_preload() completed the preload, an interrupt might > come in and its handler might drain this cpu's preload pool. Non-process context doesn't dip into preload pool, so the first allocation after idr_preload() is *guaranteed* to fail iff the previous idr_preload(GFP_KERNEL) failed and there just isn't much we can do other than failing if GFP_KERNEL allocation fails. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 10+ messages in thread
[parent not found: <CAOS58YMo3rABCLpKYRr7pRqeMo+rmGbbUJDj5xxE08pb-SyBqw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH -next v3] IB/ipath: use GFP_NOWAIT under spin lock [not found] ` <CAOS58YMo3rABCLpKYRr7pRqeMo+rmGbbUJDj5xxE08pb-SyBqw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2013-02-22 22:58 ` Tejun Heo 0 siblings, 0 replies; 10+ messages in thread From: Tejun Heo @ 2013-02-22 22:58 UTC (permalink / raw) To: Andrew Morton Cc: Wei Yongjun, infinipath-ral2JQCrhuEAvxtiuMwx3w, roland-DgEjT+Ai2ygdnm+yROfE0A, sean.hefty-ral2JQCrhuEAvxtiuMwx3w, hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w, linux-rdma-u79uwXL29TY76Z2rM5mHXA On Fri, Feb 22, 2013 at 02:51:30PM -0800, Tejun Heo wrote: > Non-process context doesn't dip into preload pool, so the first > allocation after idr_preload() is *guaranteed* to fail iff the > previous idr_preload(GFP_KERNEL) failed and there just isn't much we > can do other than failing if GFP_KERNEL allocation fails. If it still is confusing, a good way to think about it is that idr_preload() upgrades the immediately following idr_preload() allocation flag to the stronger of the two used in idr_preload() and idr_alloc(). In practice, this means there's no reason to use anything other than GFP_NOWAIT inside preloaded section. IMO, this is a better or rather more evolved design of preloading in radix_tree. It's a lot more convenient and I'm thinking about updating radix_tree preloading to about the same scheme. It's a bit cumbersome at the moment requiring determination of whether preloading will be used or not at initialization time. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2013-02-22 22:58 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-21 5:45 [PATCH -next v2] IB/ipath: use GFP_NOWAIT under spin lock Wei Yongjun
[not found] ` <CAPgLHd965-++Kj6HE-wjHqpZjortmmCAvApSSwiXaX6YwWncHQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-02-21 14:34 ` Marciniszyn, Mike
2013-02-21 15:33 ` Tejun Heo
[not found] ` <CAOS58YNcJ0gDmoR4M1tgJbqqzv0i=5EkoAr=OhoTSrozfw-ZtQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-02-21 15:34 ` Tejun Heo
[not found] ` <CAOS58YOHt7OaBHRwwqjLF8xZtVaj=BeFUXFAxW0owb4_BxC3Rg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-02-22 2:48 ` [PATCH -next v3] " Wei Yongjun
[not found] ` <CAPgLHd8_WyQiDpJwRWwNVPbSvVcpMj1bMu7h2QmfJpscd0LOFQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-02-22 22:16 ` Andrew Morton
[not found] ` <20130222141642.247ee792.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
2013-02-22 22:21 ` Tejun Heo
[not found] ` <CAOS58YMrcCwh8RhnfRTsmbfa_K_h1=n2M6ws4=MHWDxpAAoXOw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-02-22 22:44 ` Andrew Morton
[not found] ` <20130222144451.ed48f015.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
2013-02-22 22:51 ` Tejun Heo
[not found] ` <CAOS58YMo3rABCLpKYRr7pRqeMo+rmGbbUJDj5xxE08pb-SyBqw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-02-22 22:58 ` Tejun Heo
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.