diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2017-11-14 10:53:12 -0500 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2018-01-18 16:18:53 -0500 |
commit | 235628c5c76040b0ec206ea9ab9e017771e0d78e (patch) | |
tree | ab8a3c322a8d59ab5814a14d61f9cf6050d0d0d7 /fs/gfs2/dir.c | |
parent | 9db115a0e3d3814e41eb703082b83a261d81736c (diff) |
gfs2: Add gfs2_max_stuffed_size
Add a small inline function for computing the maximum size of a stuffed
inode instead of open coding that in several places throughout the code.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Diffstat (limited to 'fs/gfs2/dir.c')
-rw-r--r-- | fs/gfs2/dir.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c index 06a0d1947c77..7c21aea0266b 100644 --- a/fs/gfs2/dir.c +++ b/fs/gfs2/dir.c | |||
@@ -170,8 +170,7 @@ static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf, | |||
170 | if (!size) | 170 | if (!size) |
171 | return 0; | 171 | return 0; |
172 | 172 | ||
173 | if (gfs2_is_stuffed(ip) && | 173 | if (gfs2_is_stuffed(ip) && offset + size <= gfs2_max_stuffed_size(ip)) |
174 | offset + size <= sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) | ||
175 | return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset, | 174 | return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset, |
176 | size); | 175 | size); |
177 | 176 | ||