rbd: passing wrong variable to bvec_kunmap_irq()

We should be passing "buf" here insead of "bv". This is tricky because
it's not the same as kmap() and kunmap(). GCC does warn about it if you
compile on i386 with CONFIG_HIGHMEM.

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Sage Weil <sage@newdream.net>

authored by Dan Carpenter and committed by Sage Weil 85b5aaa6 b8d0638a

+1 -1
+1 -1
drivers/block/rbd.c
··· 554 554 buf = bvec_kmap_irq(bv, &flags); 555 555 memset(buf + remainder, 0, 556 556 bv->bv_len - remainder); 557 - bvec_kunmap_irq(bv, &flags); 557 + bvec_kunmap_irq(buf, &flags); 558 558 } 559 559 pos += bv->bv_len; 560 560 }