The inode_newsize_ok is better than only checking the maxbytes,
eg. the rlimit etc.

Signed-off-by: Kinglong Mee <[email protected]>
---
 fs/f2fs/file.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 88afe0f..08bfab3 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -1256,8 +1256,9 @@ static int f2fs_insert_range(struct inode *inode, loff_t 
offset, loff_t len)
        int ret = 0;
 
        new_size = i_size_read(inode) + len;
-       if (new_size > inode->i_sb->s_maxbytes)
-               return -EFBIG;
+       ret = inode_newsize_ok(inode, new_size);
+       if (ret)
+               return ret;
 
        if (offset >= i_size_read(inode))
                return -EINVAL;
-- 
2.9.3


------------------------------------------------------------------------------
Announcing the Oxford Dictionaries API! The API offers world-renowned
dictionary content that is easy and intuitive to access. Sign up for an
account today to start using our lexical data to power your apps and
projects. Get started today and enter our developer competition.
http://sdm.link/oxford
_______________________________________________
Linux-f2fs-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to