search for: f225cb1

Displaying 1 result from an estimated 1 matches for "f225cb1".

Did you mean: f225361
2010 Feb 23
0
[PATCH] grant-table: clear page->private in gnttab_copy_grant_page
The tracker is now tracking new_page and not page. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> --- drivers/xen/grant-table.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/xen/grant-table.c b/drivers/xen/grant-table.c index f225cb1..6c6f884 100644 --- a/drivers/xen/grant-table.c +++ b/drivers/xen/grant-table.c @@ -875,6 +875,7 @@ int gnttab_copy_grant_page(grant_ref_t ref, struct page **pagep) SetPageForeign(page, gnttab_page_free); ClearPageReserved(page); + page->private = 0UL; page->mapping = NULL; out: --...