search for: urb_ring_area

Displaying 3 results from an estimated 3 matches for "urb_ring_area".

2011 Apr 04
0
[PATCH] linux-2.6.18/backends: use xenbus_be.ko interfaces instead of open-coding them
..._list_lock); @@ -101,83 +102,27 @@ usbif_t *usbif_alloc(domid_t domid, unsi return usbif; } -static int map_frontend_pages(usbif_t *usbif, - grant_ref_t urb_ring_ref, - grant_ref_t conn_ring_ref) -{ - struct gnttab_map_grant_ref op; - - gnttab_set_map_op(&op, (unsigned long)usbif->urb_ring_area->addr, - GNTMAP_host_map, urb_ring_ref, usbif->domid); - - gnttab_check_GNTST_eagain_do_while(GNTTABOP_map_grant_ref, &op); - - if (op.status != GNTST_okay) { - printk(KERN_ERR "grant table failure mapping urb_ring_ref %d\n", (int)op.status); - return -EINVAL; - } - - usbi...
2011 Dec 01
11
[PATCH 0 of 2] Paging support updates for XCP dom0
This is a cherry pick of two patches that add support for guest paged out frames in the XCP 2.6.32 dom0 patch queue. First patch propagates the ENOENT returned by the hypervisor in the case of a paged out page, all the way up the call chain to the MMAPBATCH_V2 ioctl. The ioctl is mainly used to harvest those return values and retry. The second patch adds retry loops to all backend grant
2010 Sep 15
15
xenpaging fixes for kernel and hypervisor
Patrick, there following patches fix xenpaging for me. Granttable handling is incomplete. If a page is gone, a GNTST_eagain should be returned to the caller to inidcate the hypercall has to be retried after a while, until the page is available again. Please review. Olaf _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com