[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 3/5] x86: improve _put_page_type() readability
By limiting the scope of rc it is more obvious that failure can be reported only if _put_final_page_type() failed. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> --- a/xen/arch/x86/mm.c +++ b/xen/arch/x86/mm.c @@ -2452,7 +2452,6 @@ static int _put_page_type(struct page_in struct page_info *ptpg) { unsigned long nx, x, y = page->u.inuse.type_info; - int rc = 0; for ( ; ; ) { @@ -2466,6 +2465,8 @@ static int _put_page_type(struct page_in if ( unlikely((nx & PGT_type_mask) <= PGT_l4_page_table) && likely(nx & (PGT_validated|PGT_partial)) ) { + int rc; + /* * Page-table pages must be unvalidated when count is zero. The * 'free' is safe because the refcnt is non-zero and validated @@ -2477,10 +2478,9 @@ static int _put_page_type(struct page_in continue; /* We cleared the 'valid bit' so we do the clean up. */ rc = _put_final_page_type(page, x, preemptible, ptpg); - ptpg = NULL; if ( x & PGT_partial ) put_page(page); - break; + return rc; } if ( !ptpg || !PGT_type_equal(x, ptpg->u.inuse.type_info) ) @@ -2518,12 +2518,11 @@ static int _put_page_type(struct page_in if ( ptpg && PGT_type_equal(x, ptpg->u.inuse.type_info) ) { - ASSERT(!rc); dec_linear_uses(page); dec_linear_entries(ptpg); } - return rc; + return 0; } _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |