lkml.org 
[lkml]   [2009]   [Nov]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 09/30] VFS: Use GFP_NOFS in posix_acl_from_xattr()
    Date
    GFS2 needs to call this from under a glock, so we need GFP_NOFS
    and I suspect that other filesystems might require this too.

    Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
    ---
    fs/xattr_acl.c | 2 +-
    1 files changed, 1 insertions(+), 1 deletions(-)

    diff --git a/fs/xattr_acl.c b/fs/xattr_acl.c
    index c6ad7c7..05ac0fe 100644
    --- a/fs/xattr_acl.c
    +++ b/fs/xattr_acl.c
    @@ -36,7 +36,7 @@ posix_acl_from_xattr(const void *value, size_t size)
    if (count == 0)
    return NULL;

    - acl = posix_acl_alloc(count, GFP_KERNEL);
    + acl = posix_acl_alloc(count, GFP_NOFS);
    if (!acl)
    return ERR_PTR(-ENOMEM);
    acl_e = acl->a_entries;
    --
    1.6.2.5


    \
     
     \ /
      Last update: 2009-11-25 14:35    [W:4.130 / U:0.528 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site