|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] about blkfront.c
> Sorry for the dumb question,
>
> I noticed that in the function blkfront.c: blkif_queue_request(...), there
> are these two lines of codes:
>
> ----------------------------
> if ( lsect > 7 )
> BUG();
> ----------------------------
Disk sectors are 512 bytes, pages 4096 bytes, hence you can have
runs of up to 8 sectors in a page. At the point that
queue_request is called we know that the request will fit
entirely within a page. It's the job of this function to merge
requests that are to sequential areas of disk into in a single
scatter gather list.
Ian
-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/xen-devel
|
|
|
|
|