Skip to content

Commit

Permalink
[PATCH] pr_debug: umem: repair nonexistant bh pr_debug reference
Browse files Browse the repository at this point in the history
umem: repair nonexistant bh pr_debug reference

Signed-off-by: Zach Brown <zach.brown@oracle.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Zach Brown authored and Linus Torvalds committed Oct 3, 2006
1 parent 5c1fdf4 commit f2b9ecc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/block/umem.c
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,8 @@ static void process_page(unsigned long data)
static int mm_make_request(request_queue_t *q, struct bio *bio)
{
struct cardinfo *card = q->queuedata;
pr_debug("mm_make_request %ld %d\n", bh->b_rsector, bh->b_size);
pr_debug("mm_make_request %llu %u\n",
(unsigned long long)bio->bi_sector, bio->bi_size);

bio->bi_phys_segments = bio->bi_idx; /* count of completed segments*/
spin_lock_irq(&card->lock);
Expand Down

0 comments on commit f2b9ecc

Please sign in to comment.