From: Keir Fraser Date: Fri, 9 Mar 2012 09:58:41 +0000 (+0000) Subject: low-mem virq: Parentheses around ternary operator in check_low_mem_virq() X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=69b701b237fcc0f1da918b1832891ba4d80c880a;p=xen.git low-mem virq: Parentheses around ternary operator in check_low_mem_virq() Signed-off-by: Keir Fraser --- diff --git a/xen/common/page_alloc.c b/xen/common/page_alloc.c index e3b84f9557..75d1eeae98 100644 --- a/xen/common/page_alloc.c +++ b/xen/common/page_alloc.c @@ -374,7 +374,7 @@ static void __init setup_low_mem_virq(void) static void check_low_mem_virq(void) { unsigned long avail_pages = total_avail_pages + - opt_tmem ? tmem_freeable_pages() : 0; + (opt_tmem ? tmem_freeable_pages() : 0); if ( unlikely(avail_pages <= low_mem_virq_th) ) {