[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel][Pv-ops][PATCH] Netback multiple tasklet support
On Fri, Dec 11, 2009 at 09:34:42AM +0000, Ian Campbell wrote: > On Fri, 2009-12-11 at 08:34 +0000, Jan Beulich wrote: > > > > Btw., can any of you explain why 2.6.18 needs this (and the related) > > code,but pv-ops doesn't? > > The 2.6.18 bits came from > http://xenbits.xensource.com/linux-2.6.18-xen.hg?rev/a395e58bd234 Oh boy. That code (and its friends): /* Has the page been DMA-mapped? */ + if (unlikely(page_mapped(page))) { caused us at Virtual Iron so much head-ache. If a guest had iSCSI backed storage, and the page was grant mapped back to Dom0, in some cases we would two page references taken with one put - meaning that 'page_mapped(page))' would true forever. Joshua Nicholas traced it down to the TCP stack taking a page reference and never giving it up. The end result is that during migration (and shutdown) the guest would never die due to outstanding page grants. We never troubleshooted the TCP stack, but we implemented a similar mechanism in the blkback that netback does - squash the page reference when done. Not the most cleanest but it did the job. > > I can't immediately see why this wouldn't apply to pv ops too. There are > comments in drivers/pci/xen-iommu.c (e.g. in xen_dma_unmap_page) which > suggest someone has though about it at some point... Lets wait and see if its needed ? _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |