Re: [patch] ps3disk: passing wrong variable to bvec_kunmap_irq()

2010-10-17 Thread Geert Uytterhoeven
On Sun, Oct 17, 2010 at 08:49, Jens Axboe wrote: > On 2010-10-16 21:39, Geert Uytterhoeven wrote: >> On Mon, Oct 11, 2010 at 21:42, Jens Axboe wrote: >>> On 2010-10-11 21:13, Dan Carpenter wrote: This should pass "buf" to bvec_kunmap_irq() instead of "bv".  The api is like kmap_atomic()

Re: [patch] ps3disk: passing wrong variable to bvec_kunmap_irq()

2010-10-17 Thread Jens Axboe
On 2010-10-16 21:39, Geert Uytterhoeven wrote: > On Mon, Oct 11, 2010 at 21:42, Jens Axboe wrote: >> On 2010-10-11 21:13, Dan Carpenter wrote: >>> This should pass "buf" to bvec_kunmap_irq() instead of "bv". The api is >>> like kmap_atomic() instead of kmap(). >>> >>> Signed-off-by: Dan Carpenter

Re: [patch] ps3disk: passing wrong variable to bvec_kunmap_irq()

2010-10-16 Thread Geert Uytterhoeven
On Mon, Oct 11, 2010 at 21:42, Jens Axboe wrote: > On 2010-10-11 21:13, Dan Carpenter wrote: >> This should pass "buf" to bvec_kunmap_irq() instead of "bv".  The api is >> like kmap_atomic() instead of kmap(). >> >> Signed-off-by: Dan Carpenter >> >> diff --git a/drivers/block/ps3disk.c b/drivers

Re: [patch] ps3disk: passing wrong variable to bvec_kunmap_irq()

2010-10-12 Thread Geoff Levand
On 10/11/2010 12:13 PM, Dan Carpenter wrote: > This should pass "buf" to bvec_kunmap_irq() instead of "bv". The api is > like kmap_atomic() instead of kmap(). > > Signed-off-by: Dan Carpenter Looks good. Thanks. Acked-by: Geoff Levand ___ Linuxppc

Re: [patch] ps3disk: passing wrong variable to bvec_kunmap_irq()

2010-10-11 Thread Jens Axboe
On 2010-10-11 21:13, Dan Carpenter wrote: > This should pass "buf" to bvec_kunmap_irq() instead of "bv". The api is > like kmap_atomic() instead of kmap(). > > Signed-off-by: Dan Carpenter > > diff --git a/drivers/block/ps3disk.c b/drivers/block/ps3disk.c > index e9da874..03688c2 100644 > --- a

[patch] ps3disk: passing wrong variable to bvec_kunmap_irq()

2010-10-11 Thread Dan Carpenter
This should pass "buf" to bvec_kunmap_irq() instead of "bv". The api is like kmap_atomic() instead of kmap(). Signed-off-by: Dan Carpenter diff --git a/drivers/block/ps3disk.c b/drivers/block/ps3disk.c index e9da874..03688c2 100644 --- a/drivers/block/ps3disk.c +++ b/drivers/block/ps3disk.c @@