From: Russ Anderson Date: Fri, 4 Nov 2005 22:58:28 +0000 (-0600) Subject: [IA64] MCA recovery: Bump reference count on bad pages X-Git-Tag: v2.6.15-rc1~70^2~1 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=cbb921443424fb8019e52bae83e442d01f7715ef;p=~emulex%2Finfiniband.git [IA64] MCA recovery: Bump reference count on bad pages When a page has a memory uncorrectable ECC error, the recovery code wants to prevent the page from being reused. This change bumps the reference count to prevent the page from getting back on the free list. Signed-off-by: Russ Anderson (rja@sgi.com) Signed-off-by: Tony Luck --- diff --git a/arch/ia64/kernel/mca_drv.c b/arch/ia64/kernel/mca_drv.c index 6ff32d4faf8..eb39bc9c133 100644 --- a/arch/ia64/kernel/mca_drv.c +++ b/arch/ia64/kernel/mca_drv.c @@ -108,6 +108,7 @@ mca_page_isolate(unsigned long paddr) return ISOLATE_NG; /* add attribute 'Reserved' and register the page */ + get_page(p); SetPageReserved(p); page_isolate[num_page_isolate++] = p;