[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [RFC PATCH 1/2] mem_access: Fix npfec.kind propagation
>>> On 26.09.18 at 19:00, <andrew.cooper3@xxxxxxxxxx> wrote: > On 26/09/18 17:47, George Dunlap wrote: >> --- a/xen/arch/x86/mm/mem_access.c >> +++ b/xen/arch/x86/mm/mem_access.c >> @@ -232,12 +232,12 @@ bool p2m_mem_access_check(paddr_t gpa, unsigned long >> gla, >> { >> req->u.mem_access.flags |= MEM_ACCESS_GLA_VALID; >> req->u.mem_access.gla = gla; >> - >> - if ( npfec.kind == npfec_kind_with_gla ) >> - req->u.mem_access.flags |= MEM_ACCESS_FAULT_WITH_GLA; >> - else if ( npfec.kind == npfec_kind_in_gpt ) >> - req->u.mem_access.flags |= MEM_ACCESS_FAULT_IN_GPT; >> } >> + >> + if ( npfec.kind == npfec_kind_with_gla ) >> + req->u.mem_access.flags |= MEM_ACCESS_FAULT_WITH_GLA; >> + else if ( npfec.kind == npfec_kind_in_gpt ) >> + req->u.mem_access.flags |= MEM_ACCESS_FAULT_IN_GPT; > > Nit. Newline here please, as it is not logically related with the block > below. And, despite it being just two comparisons, perhaps better to make it a switch() at the same time? Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |