• Chuck Lever's avatar
    NFSD: Clean up xattr memory allocation flags · 22b620ec
    Chuck Lever authored
    Tetsuo Handa points out:
    > Since GFP_KERNEL is "GFP_NOFS | __GFP_FS", usage like
    > "GFP_KERNEL | GFP_NOFS" does not make sense.
    
    The original intent was to hold the inode lock while estimating
    the buffer requirements for the requested information. Frank van
    der Linden, the author of NFSD's xattr code, says:
    
    > ... you need inode_lock to get an atomic view of an xattr. Since
    > both nfsd_getxattr and nfsd_listxattr to the standard trick of
    > querying the xattr length with a NULL buf argument (just getting
    > the length back), allocating the right buffer size, and then
    > querying again, they need to hold the inode lock to avoid having
    > the xattr changed from under them while doing that.
    >
    > From that then flows the requirement that GFP_FS could cause
    > problems while holding i_rwsem, so I added GFP_NOFS.
    
    However, Dave Chinner states:
    > You can do GFP_KERNEL allocations holding the i_rwsem just fine.
    > All that it requires is the caller holds a reference to the
    > inode ...
    
    Since these code paths acquire a dentry, they do indeed hold a
    reference. It is therefore safe to use GFP_KERNEL for these memory
    allocations. In particular, that's what this code is already doing;
    but now the C source code looks sane too.
    
    At a later time we can revisit in order to remove the inode lock in
    favor of simply retrying if the estimated buffer size is too small.
    Reported-by: default avatarTetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
    Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
    22b620ec
vfs.c 59.2 KB