lkml.org 
[lkml]   [2004]   [Nov]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    SubjectSuspend 2 merge: 14/51: Disable page alloc failure message when suspending
    From
    Date
    While eating memory, we will potentially trigger this a lot. We
    therefore disable the message when suspending.

    diff -ruN 503-disable-page-alloc-warnings-while-suspending-old/mm/page_alloc.c 503-disable-page-alloc-warnings-while-suspending-new/mm/page_alloc.c
    --- 503-disable-page-alloc-warnings-while-suspending-old/mm/page_alloc.c 2004-11-06 09:24:37.231308424 +1100
    +++ 503-disable-page-alloc-warnings-while-suspending-new/mm/page_alloc.c 2004-11-06 09:24:40.844759096 +1100
    @@ -725,7 +725,10 @@
    }

    nopage:
    - if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit()) {
    + if ((!(gfp_mask & __GFP_NOWARN)) &&
    + (!test_suspend_state(SUSPEND_RUNNING)) &&
    + printk_ratelimit()) {
    +
    printk(KERN_WARNING "%s: page allocation failure."
    " order:%d, mode:0x%x\n",
    p->comm, order, gfp_mask);

    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/

    \
     
     \ /
      Last update: 2005-03-22 14:08    [W:4.093 / U:0.672 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site