diff options
| author | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
|---|---|---|
| committer | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
| commit | c74a7469f97c0f40b46e82ee979f9fb1bb6e847c (patch) | |
| tree | f2690a1a916b73ef94657fbf0e0141ae57701825 /fs/gfs2/quota.c | |
| parent | 6f15a7de86c8cf2dc09fc9e6d07047efa40ef809 (diff) | |
| parent | 500775074f88d9cf5416bed2ca19592812d62c41 (diff) | |
Merge drm/drm-next into drm-intel-next-queued
We need a backmerge to get DP_DPCD_REV_14 before we push other
i915 changes to dinq that could break compilation.
Signed-off-by: Rodrigo Vivi <[email protected]>
Diffstat (limited to 'fs/gfs2/quota.c')
| -rw-r--r-- | fs/gfs2/quota.c | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c index 7a98abd340ee..0efae7a0ee80 100644 --- a/fs/gfs2/quota.c +++ b/fs/gfs2/quota.c @@ -735,7 +735,10 @@ static int gfs2_write_buf_to_page(struct gfs2_inode *ip, unsigned long index,  			if (!buffer_uptodate(bh))  				goto unlock_out;  		} -		gfs2_trans_add_data(ip->i_gl, bh); +		if (gfs2_is_jdata(ip)) +			gfs2_trans_add_data(ip->i_gl, bh); +		else +			gfs2_ordered_add_inode(ip);  		/* If we need to write to the next block as well */  		if (to_write > (bsize - boff)) { @@ -883,7 +886,7 @@ static int do_sync(unsigned int num_qd, struct gfs2_quota_data **qda)  	gfs2_write_calc_reserv(ip, sizeof(struct gfs2_quota),  			      &data_blocks, &ind_blocks); -	ghs = kmalloc(num_qd * sizeof(struct gfs2_holder), GFP_NOFS); +	ghs = kmalloc_array(num_qd, sizeof(struct gfs2_holder), GFP_NOFS);  	if (!ghs)  		return -ENOMEM; |