diff options
| -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 40c4b0d42fa8..c5af8e18f27a 100644 --- a/fs/gfs2/quota.c +++ b/fs/gfs2/quota.c | |||
| @@ -497,8 +497,11 @@ int gfs2_quota_hold(struct gfs2_inode *ip, u32 uid, u32 gid) | |||
| 497 | struct gfs2_quota_data **qd; | 497 | struct gfs2_quota_data **qd; |
| 498 | int error; | 498 | int error; |
| 499 | 499 | ||
| 500 | if (ip->i_res == NULL) | 500 | if (ip->i_res == NULL) { |
| 501 | gfs2_rs_alloc(ip); | 501 | error = gfs2_rs_alloc(ip); |
| 502 | if (error) | ||
| 503 | return error; | ||
| 504 | } | ||
| 502 | 505 | ||
| 503 | qd = ip->i_res->rs_qa_qd; | 506 | qd = ip->i_res->rs_qa_qd; |
| 504 | 507 | ||
