search for: __gnttab_unmap_common

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

2007 Oct 03
0
[PATCH 3/3] TLB flushing and IO memory mapping
...>flags & GNTMAP_device_map ) + { + (void)get_page(mfn_to_page(frame), rd); + if ( !(op->flags & GNTMAP_readonly) ) + get_page_type(mfn_to_page(frame), PGT_writable_page); + } } } @@ -474,7 +493,8 @@ __gnttab_unmap_common( { if ( unlikely(op->frame != act->frame) ) PIN_FAIL(unmap_out, GNTST_general_error, - "Bad frame number doesn''t match gntref.\n"); + "Bad frame number doesn''t match gntref. (%lx != % lx)\n&quo...
2012 May 25
0
[PATCH 3/3] gnttab: cleanup
...GTF_reading, status); unlock_out: - spin_unlock(&rd->grant_table->lock); + spin_unlock(&rgt->lock); op->status = rc; - put_maptrack_handle(ld->grant_table, handle); + put_maptrack_handle(lgt, handle); rcu_unlock_domain(rd); } @@ -794,33 +796,35 @@ __gnttab_unmap_common( { domid_t dom; struct domain *ld, *rd; + struct grant_table *lgt, *rgt; struct active_grant_entry *act; s16 rc = 0; ld = current->domain; + lgt = ld->grant_table; op->frame = (unsigned long)(op->dev_bus_addr >> PAGE...
2013 Sep 23
57
[PATCH RFC v13 00/20] Introduce PVH domU support
This patch series is a reworking of a series developed by Mukesh Rathor at Oracle. The entirety of the design and development was done by him; I have only reworked, reorganized, and simplified things in a way that I think makes more sense. The vast majority of the credit for this effort therefore goes to him. This version is labelled v13 because it is based on his most recent series, v11.