search for: 808735ebbb59

Displaying 1 result from an estimated 1 matches for "808735ebbb59".

2011 Apr 06
0
[PATCH] X86: Fix mce offline page bug
...line page logic: For page_state_is(pg, free), it''s impossible to trigger the case; For page_state_is(pg, offlined), it in fact didn''t offline related page; This patch fix the bug, and remove an ambiguous comment. Signed-off-by: Liu, Jinsong <jinsong.liu@intel.com> diff -r 808735ebbb59 xen/common/page_alloc.c --- a/xen/common/page_alloc.c Tue Mar 29 18:03:15 2011 +0800 +++ b/xen/common/page_alloc.c Wed Mar 30 14:44:55 2011 +0800 @@ -611,10 +611,6 @@ static void free_heap_pages( /* - * Following possible status for a page: - * free and Online; free and offlined; free and offl...