diff options
Diffstat (limited to 'fs/gfs2/xattr.c')
| -rw-r--r-- | fs/gfs2/xattr.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/fs/gfs2/xattr.c b/fs/gfs2/xattr.c index ecd37f30ab91..8c6a6f6bdba9 100644 --- a/fs/gfs2/xattr.c +++ b/fs/gfs2/xattr.c @@ -723,6 +723,7 @@ static int ea_alloc_skeleton(struct gfs2_inode *ip, struct gfs2_ea_request *er,  			     unsigned int blks,  			     ea_skeleton_call_t skeleton_call, void *private)  { +	struct gfs2_alloc_parms ap = { .target = blks };  	struct buffer_head *dibh;  	int error; @@ -734,7 +735,7 @@ static int ea_alloc_skeleton(struct gfs2_inode *ip, struct gfs2_ea_request *er,  	if (error)  		return error; -	error = gfs2_inplace_reserve(ip, blks, 0); +	error = gfs2_inplace_reserve(ip, &ap);  	if (error)  		goto out_gunlock_q; |