When we are appending writing quota file, we have to do a budgeting for the inode and write inode in ubifs_quota_write. Signed-off-by: Dongsheng Yang <yangds.fnst@xxxxxxxxxxxxxx> --- fs/ubifs/super.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 47b1f44..d3213a2 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -980,6 +980,10 @@ static ssize_t ubifs_quota_write(struct super_block *sb, int type, const char *data, size_t len, loff_t off) { struct inode *inode = sb_dqopt(sb)->files[type]; + struct ubifs_inode *ui = ubifs_inode(inode); + loff_t end_pos = off + len; + int appending = (end_pos > inode->i_size); + int ino_released = 0; unsigned long block = off >> UBIFS_BLOCK_SHIFT; struct ubifs_info *c = inode->i_sb->s_fs_info; int offset = off & (sb->s_blocksize - 1); @@ -988,6 +992,8 @@ static ssize_t ubifs_quota_write(struct super_block *sb, int type, size_t towrite = len; int ret, err = 0; struct ubifs_budget_req req = {}; + struct ubifs_budget_req ino_req = { .dirtied_ino = 1, + .dirtied_ino_d = ALIGN(ui->data_len, 8) }; struct ubifs_data_node *dn; char *block_buf; @@ -1014,6 +1020,12 @@ static ssize_t ubifs_quota_write(struct super_block *sb, int type, if (err) goto out; + if (appending) { + err = ubifs_budget_space(c, &ino_req); + if (err) + goto release_block; + } + dn = kmalloc(UBIFS_MAX_DATA_NODE_SZ, GFP_NOFS); if (!dn) { err = -ENOMEM; @@ -1050,11 +1062,23 @@ static ssize_t ubifs_quota_write(struct super_block *sb, int type, towrite -= tocopy; data += tocopy; } + if (appending) { + mutex_lock(&ui->ui_mutex); + i_size_write(inode, end_pos); + ui->ui_size = end_pos; + __mark_inode_dirty(inode, I_DIRTY_DATASYNC); + mutex_unlock(&ui->ui_mutex); + err = inode->i_sb->s_op->write_inode(inode, NULL); + ino_released = 1; + } free_buf: kfree(block_buf); free_dn: kfree(dn); release_budget: + if (appending && !ino_released) + ubifs_release_budget(c, &ino_req); +release_block: ubifs_release_budget(c, &req); out: if (!err) -- 1.8.4.2 -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html