IDE crash...

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: David Miller
Subject: IDE crash...
Date: Monday, October 22, 2007 - 11:50 pm

I'm debugging a blk_rq_map_sg() crash that i'm getting on sparc64 as
root is mounted over IDE.  I think I know what is happening now.

The IDE sg table is allocated and initialized like this in
drivers/ide/ide-probe.c:

	x = kmalloc(sizeof(struct scatterlist) * nents, GFP_XXX);
	sg_init_table(x, nents);

So far, so good.

Now, ide_map_sg() passes requests down to blk_rq_map_sg() like this in
drivers/block/ide-io.c:

		hwif->sg_nents = blk_rq_map_sg(drive->queue, rq, sg);

Ok, so what does blk_rq_map_sg() do?

	sg = NULL;
	rq_for_each_segment(bvec, rq, iter) {
 ...
		if (bvprv && cluster) {
 ...
		} else {
new_segment:
			if (!sg)
				sg = sglist;
			else
				sg = sg_next(sg);
 ...
		}
		bvprv = bvec;
	} /* segments in rq */

	if (sg)
		__sg_mark_end(sg);

So let's say the first request comes in and needs 2 segs.
This will mark sg[1].page_link with 0x2

If the next request from IDE needs 4 segs, we'll OOPS because
sg_next() on &sg[1] will see page_link bit 0x2 is set and
therefore return NULL.

A quick look shows that if you're testing on SCSI (or something
layered on top of it like SATA or PATA) you won't see this seemingly
guarenteed crash because the SCSI mid-layer allocates a fresh sglist
via mempool_alloc() and runs sg_init_table() on it for every I/O
request.
-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
IDE crash..., David Miller, (Mon Oct 22, 11:50 pm)
Re: IDE crash..., Jens Axboe, (Tue Oct 23, 12:02 am)
Re: IDE crash..., Jens Axboe, (Tue Oct 23, 12:09 am)
Re: IDE crash..., FUJITA Tomonori, (Tue Oct 23, 12:14 am)
Re: IDE crash..., David Miller, (Tue Oct 23, 12:18 am)
Re: IDE crash..., Jens Axboe, (Tue Oct 23, 12:23 am)
Re: IDE crash..., Jens Axboe, (Tue Oct 23, 12:23 am)
Re: IDE crash..., David Miller, (Tue Oct 23, 12:43 am)
Re: IDE crash..., Jens Axboe, (Tue Oct 23, 12:45 am)
Re: IDE crash..., FUJITA Tomonori, (Tue Oct 23, 3:52 am)
Re: IDE crash..., Jens Axboe, (Tue Oct 23, 3:57 am)
Re: IDE crash..., Jens Axboe, (Tue Oct 23, 3:58 am)
Re: IDE crash..., FUJITA Tomonori, (Tue Oct 23, 4:10 am)
Re: IDE crash..., Jens Axboe, (Tue Oct 23, 4:43 am)
Re: IDE crash..., John Stoffel, (Tue Oct 23, 8:10 am)
Re: IDE crash..., David Miller, (Tue Oct 23, 2:18 pm)
Re: IDE crash..., Jens Axboe, (Tue Oct 23, 2:44 pm)
Re: IDE crash..., Jens Axboe, (Tue Oct 23, 11:49 pm)
Re: IDE crash..., John Stoffel, (Wed Oct 24, 9:27 am)
Re: IDE crash..., Jens Axboe, (Wed Oct 24, 11:10 am)