From: Dongsheng Yang <yangds.fnst@cn.fujitsu.com>
To: Richard Weinberger <richard@nod.at>, <viro@ZenIV.linux.org.uk>,
<jack@suse.cz>, <dedekind1@gmail.com>,
<richard.weinberger@gmail.com>
Cc: <linux-mtd@lists.infradead.org>, <linux-fsdevel@vger.kernel.org>
Subject: Re: [PATCH v2 20/35] ubifs: implement IO functions for quota files
Date: Fri, 7 Aug 2015 11:24:50 +0800 [thread overview]
Message-ID: <55C42502.6000507@cn.fujitsu.com> (raw)
In-Reply-To: <55BFE142.1030008@nod.at>
On 08/04/2015 05:46 AM, Richard Weinberger wrote:
> Am 30.07.2015 um 07:48 schrieb Dongsheng Yang:
>> We have to implement 3 functions to support quota in ubifs:
>> ubifs_quota_read(), ubifs_quota_write() and ubifs_get_quotas()
>>
>> ubifs_quota_read():
>> callback to read quota file.
>> ubifs_quota_write():
>> callback to write data to quota file.
>> ubifs_get_quotas():
>> callback to get quota instance for inode.
>>
>> Signed-off-by: Dongsheng Yang <yangds.fnst@cn.fujitsu.com>
>> ---
>> fs/ubifs/super.c | 219 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 219 insertions(+)
>>
>> diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c
>> index bc57685..3609d7b 100644
>> --- a/fs/ubifs/super.c
>> +++ b/fs/ubifs/super.c
>> @@ -940,6 +940,220 @@ static int check_volume_empty(struct ubifs_info *c)
>> return 0;
>> }
>>
>> +#ifdef CONFIG_QUOTA
>> +static ssize_t ubifs_quota_read(struct super_block *sb, int type, char *data,
>> + size_t len, loff_t off)
>> +{
>> + struct inode *inode = sb_dqopt(sb)->files[type];
>> + unsigned long block = off >> UBIFS_BLOCK_SHIFT;
>> + int offset = off & (sb->s_blocksize - 1);
>> + int tocopy = 0;
>> + size_t toread;
>> + char *block_buf;
>> + struct ubifs_data_node *dn;
>> + int ret, err = 0;
>> +
>> + toread = len;
>
> Minor nit, please group same types together and also group assignments
> as other UBI/FS codes does.
Hm, okey. Good suggestion.
>
>> + dn = kmalloc(UBIFS_MAX_DATA_NODE_SZ, GFP_NOFS);
>> + if (!dn) {
>> + err = -ENOMEM;
>> + goto out;
>> + }
>> +
>> + block_buf = kmalloc(sb->s_blocksize, GFP_NOFS);
>> + if (!block_buf) {
>> + err = -ENOMEM;
>> + goto free_dn;
>> + }
>> +
>> + if (offset) {
>> + /* Read the un-aligned data in first block */
>> + tocopy = sb->s_blocksize - offset;
>> + if (toread < tocopy)
>> + tocopy = toread;
>
> min()?
okey, thanx
>
>> + ret = ubifs_read_block(inode, block_buf, block, dn);
>> + if (ret) {
>> + if (ret != -ENOENT) {
>
> if (ret && ret != -ENOENT)?
Yea, agree.
>
>> + err = ret;
>> + goto free_buf;
>> + }
>> + }
>> +
>> + memcpy(data, block_buf + offset, tocopy);
>> +
>> + block++;
>> + toread -= tocopy;
>> + data += tocopy;
>> + tocopy = 0;
>> + }
>> +
>> + while (toread > 0) {
>> + tocopy = sb->s_blocksize < toread ?
>> + sb->s_blocksize : toread;
>
> min()?
Yes, correct.
>
>> +
>> + /* Break to read the last block */
>> + if (tocopy < sb->s_blocksize)
>> + break;
>
> Hmm, can't you combine this check with the above condition?
Sure.
>
>> + ret = ubifs_read_block(inode, data, block, dn);
>> + if (ret) {
>> + if (ret != -ENOENT) {
>
> See above.
Thanx
>
>> + err = ret;
>> + goto free_buf;
>> + }
>> + }
>> + block++;;
>
> superfluous semicolon.
Oh, right you are.
>
>> + toread -= tocopy;
>> + data += tocopy;
>> + tocopy = 0;
>> + }
>> +
>> + if (tocopy) {
>> + /* Read the data in last block */
>> + ret = ubifs_read_block(inode, block_buf, block, dn);
>> + if (ret) {
>> + if (ret != -ENOENT) {
>
> See above. Maybe the -ENOENT stuff can be integrated into ubifs_read_block().
> All callers deal with it the same way...
Good point. Will try it.
>
>> + err = ret;
>> + goto free_buf;
>> + }
>> + }
>> +
>> + memcpy(data, block_buf, tocopy);
>> + }
>> +free_buf:
>> + kfree(block_buf);
>> +free_dn:
>> + kfree(dn);
>> +out:
>> + if (!err)
>> + return len;
>> + return err;
>> +}
>> +
>> +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];
>> + unsigned long block = off >> UBIFS_BLOCK_SHIFT;
>> + struct ubifs_info *c = inode->i_sb->s_fs_info;
>> + int offset = off & (sb->s_blocksize - 1);
>> + union ubifs_key key;
>> + int tocopy = 0;
>> + size_t towrite = len;
>> + int ret, err = 0;
>> + struct ubifs_budget_req req = {};
>> + int new_block = 0;
>> + struct ubifs_data_node *dn;
>> + char *block_buf;
>
> See above.
>
>> + /* There are dirtied blocks and new blockes, but we call them all
>> + * new blocks here, the budgeting is same for them.
>> + */
>> + new_block = DIV_ROUND_UP(len - (sb->s_blocksize - offset), sb->s_blocksize);
>> + if (offset)
>> + new_block += 1;
>> +
>> + req.new_block_num = new_block;
>> +
>> + err = ubifs_budget_space(c, &req);
>> + if (err)
>> + goto out;
>> +
>> + dn = kmalloc(UBIFS_MAX_DATA_NODE_SZ, GFP_NOFS);
>> + if (!dn) {
>> + err = -ENOMEM;
>> + goto release_budget;
>> + }
>> +
>> + block_buf = kmalloc(sb->s_blocksize, GFP_NOFS);
>> + if (!block_buf) {
>> + err = -ENOMEM;
>> + goto free_dn;
>> + }
>> +
>> + if (offset) {
>> + /* Write the un-aligned data in first block */
>> + tocopy = sb->s_blocksize - offset;
>> + if (towrite < tocopy)
>> + tocopy = towrite;
>
> See above.
>
>> + ret = ubifs_read_block(inode, block_buf, block, dn);
>> + if (ret) {
>> + if (ret != -ENOENT) {
>> + err = ret;
>> + goto free_buf;
>> + }
>> + memset(block_buf, 0, sb->s_blocksize);
>> + }
>> +
>> + memcpy(block_buf + offset, data, tocopy);
>> +
>> + data_key_init(c, &key, inode->i_ino, block);
>> + err = ubifs_jnl_write_data(c, inode, &key, block_buf, sb->s_blocksize);
>
> Hmm, I'm confused. You write the block containing the quota information to an inode's data?
> How can be determined whether data is real data and what is quota data?
Ha, so we need a special writing function for quota file,
xxxfs_quota_write().
This function would bypass the quota recording, so quota
data would not be contained in by itself.
> This clearly shows that I know not much about the quota subsystem. 8^)
>
>> + if (err) {
>> + goto free_buf;
>> + }
>> + block++;
>> + towrite -= tocopy;
>> + data += tocopy;
>> + tocopy = 0;
>> + }
>> +
>> + while (towrite > 0) {
>> + tocopy = sb->s_blocksize < towrite ?
>> + sb->s_blocksize : towrite;
>> +
>> + /* Break to read the last block */
>> + if (tocopy < sb->s_blocksize)
>> + break;
>
> See above. Maybe you can combine all this common code.
Agree, thanx
>
>> + data_key_init(c, &key, inode->i_ino, block);
>> + err = ubifs_jnl_write_data(c, inode, &key, data, sb->s_blocksize);
>> + if (err)
>> + goto free_buf;
>> + block++;;
>
> See above.
>
> I'll review your other patches these days.
> For now I'm too sleepy.
Thanx a lot Richard.
Your review is always helpful to me.
Yang
>
> Thanks,
> //richard
> .
>
next prev parent reply other threads:[~2015-08-07 3:30 UTC|newest]
Thread overview: 84+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-30 5:47 [PATCH v2 00/35] Add quota supporting in ubifs Dongsheng Yang
2015-07-30 5:47 ` [PATCH v2 01/35] fs: introduce a ->s_cdev field into struct super_block Dongsheng Yang
2015-07-30 5:47 ` [PATCH v2 02/35] fs: cleanup: remove the blank line before EXPORT_SYMBOL Dongsheng Yang
2015-07-30 5:47 ` [PATCH v2 03/35] fs: super: cleanup: make the comment of each function aligned Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 04/35] fs: super: consolidate the get_super class functions Dongsheng Yang
2015-08-03 19:50 ` Jan Kara
2015-07-30 5:48 ` [PATCH v2 05/35] fs: super: introduce a get_super_cdev to get super by a cdev reference Dongsheng Yang
2015-08-03 19:51 ` Jan Kara
2015-07-30 5:48 ` [PATCH v2 06/35] fs: super: introduce a get_super_cdev_thawed to get sb by " Dongsheng Yang
2015-08-03 19:56 ` Jan Kara
2015-07-30 5:48 ` [PATCH v2 07/35] fs: char_dev: introduce cd_acquire function to acquire cdev Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 08/35] fs: introduce a __lookup_dev for internal using Dongsheng Yang
2015-08-03 20:08 ` Jan Kara
2015-08-03 20:13 ` Jan Kara
2015-07-30 5:48 ` [PATCH v2 09/35] fs: char_dev: introduce lookup_cdev to get cdev by pathname Dongsheng Yang
2015-08-03 20:08 ` Jan Kara
2015-07-30 5:48 ` [PATCH v2 10/35] fs: dquot: skip invalidate_bdev if bdev is NULL Dongsheng Yang
2015-08-03 20:04 ` Jan Kara
2015-07-30 5:48 ` [PATCH v2 11/35] fs: quota: make quota support fs which is running on char dev Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 12/35] ubi: introduce a interface to get cdev in ubi_volume Dongsheng Yang
2015-08-03 20:56 ` Richard Weinberger
2015-07-30 5:48 ` [PATCH v2 13/35] ubifs: fix a typo in comment of ubifs_budget_req Dongsheng Yang
2015-08-03 20:56 ` Richard Weinberger
2015-08-10 8:21 ` Artem Bityutskiy
2015-07-30 5:48 ` [PATCH v2 14/35] ubifs: extend budget for blocks Dongsheng Yang
2015-08-03 20:56 ` Richard Weinberger
2015-08-21 5:59 ` Dongsheng Yang
2015-08-21 7:12 ` Richard Weinberger
2015-08-21 7:55 ` Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 15/35] ubifs: fill sb->s_cdev in ubifs_fill_super() Dongsheng Yang
2015-08-03 20:58 ` Richard Weinberger
2015-07-30 5:48 ` [PATCH v2 16/35] ubifs: fill ->s_dev in ubifs_fill_super Dongsheng Yang
2015-08-03 21:00 ` Richard Weinberger
2015-07-30 5:48 ` [PATCH v2 17/35] ubifs: export read_block() from file.c Dongsheng Yang
2015-08-03 21:13 ` Richard Weinberger
2015-08-03 21:29 ` Richard Weinberger
2015-08-07 3:15 ` Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 18/35] ubifs: introduce quota related mount options Dongsheng Yang
2015-08-03 21:13 ` Richard Weinberger
2015-08-07 3:17 ` Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 19/35] ubifs: budget for inode in ubifs_dirty_inode if necessary Dongsheng Yang
2015-08-03 21:13 ` Richard Weinberger
2015-08-07 3:18 ` Dongsheng Yang
2015-08-05 8:11 ` Artem Bityutskiy
2015-08-06 6:46 ` Dongsheng Yang
2015-08-06 7:26 ` Artem Bityutskiy
2015-08-06 7:30 ` Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 20/35] ubifs: implement IO functions for quota files Dongsheng Yang
2015-08-03 21:46 ` Richard Weinberger
2015-08-05 1:21 ` Dongsheng Yang
2015-08-07 3:24 ` Dongsheng Yang [this message]
2015-07-30 5:48 ` [PATCH v2 21/35] ubifs: disable quota in ubifs_put_super Dongsheng Yang
2015-08-08 21:08 ` Richard Weinberger
2015-08-10 2:03 ` Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 22/35] ubifs: write quota back in ubifs_sync Dongsheng Yang
2015-08-08 21:17 ` Richard Weinberger
2015-07-30 5:48 ` [PATCH v2 23/35] ubifs: set/clear MS_RDONLY properly in ubifs_remount Dongsheng Yang
2015-08-08 21:17 ` Richard Weinberger
2015-08-10 2:46 ` Dongsheng Yang
2015-08-24 1:29 ` Dongsheng Yang
2015-08-24 7:02 ` Artem Bityutskiy
2015-08-24 7:12 ` Dongsheng Yang
2015-08-24 7:26 ` Artem Bityutskiy
2015-08-27 2:52 ` Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 24/35] ubifs: suspend & resume quota " Dongsheng Yang
2015-08-08 21:24 ` Richard Weinberger
2015-08-10 2:04 ` Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 25/35] ubifs: record quota information about inode in ubifs_new_inode Dongsheng Yang
2015-08-08 21:43 ` Richard Weinberger
2015-08-10 2:13 ` Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 26/35] ubifs: free quota inode information in ubifs_evict_inode Dongsheng Yang
2015-08-08 21:51 ` Richard Weinberger
2015-08-10 3:09 ` Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 27/35] ubifs: alloc quota space in ubifs_write_begin Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 28/35] ubifs: free quota space in do_truncation Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 29/35] ubifs: free quota space when deleting a file Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 30/35] ubifs: adapt quota space informatin in do_setattr Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 31/35] ubifs: transfer quota information in changing owner or group Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 32/35] ubifs: write inode in ubifs_quota_write if we are appending Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 33/35] fs: introduce a get_qsize() to file_operations Dongsheng Yang
2015-08-03 20:15 ` Jan Kara
2015-08-07 3:30 ` Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 34/35] ubifs: implement ubifs_get_qsize to get quota size in ubifs Dongsheng Yang
2015-07-30 5:48 ` [PATCH v2 35/35] ubifs: make ubifs to support quota Dongsheng Yang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55C42502.6000507@cn.fujitsu.com \
--to=yangds.fnst@cn.fujitsu.com \
--cc=dedekind1@gmail.com \
--cc=jack@suse.cz \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=richard.weinberger@gmail.com \
--cc=richard@nod.at \
--cc=viro@ZenIV.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).