lkml.org 
[lkml]   [2012]   [May]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 02/12] selinux: tag avc cache alloc as non-critical
    Date
    Failing to allocate a cache entry will only harm performance not
    correctness. Do not consume valuable reserve pages for something
    like that.

    Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
    Signed-off-by: Mel Gorman <mgorman@suse.de>
    ---
    security/selinux/avc.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/security/selinux/avc.c b/security/selinux/avc.c
    index 8ee42b2..75c2977 100644
    --- a/security/selinux/avc.c
    +++ b/security/selinux/avc.c
    @@ -280,7 +280,7 @@ static struct avc_node *avc_alloc_node(void)
    {
    struct avc_node *node;

    - node = kmem_cache_zalloc(avc_node_cachep, GFP_ATOMIC);
    + node = kmem_cache_zalloc(avc_node_cachep, GFP_ATOMIC|__GFP_NOMEMALLOC);
    if (!node)
    goto out;

    --
    1.7.9.2


    \
     
     \ /
      Last update: 2012-05-10 16:41    [W:4.204 / U:0.996 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site