mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Chao Yu <yuchao0@huawei.com>
To: Sahitya Tummala <stummala@codeaurora.org>
Cc: Jaegeuk Kim <jaegeuk@kernel.org>,
	<linux-f2fs-devel@lists.sourceforge.net>,
	<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2] f2fs: ratelimit recovery messages
Date: Tue, 28 May 2019 11:17:59 +0800	[thread overview]
Message-ID: <2575bd54-d67c-6b26-ebf7-d6adb2e193a7@huawei.com> (raw)
In-Reply-To: <20190528030509.GE10043@codeaurora.org>

Hi Sahitya,

On 2019/5/28 11:05, Sahitya Tummala wrote:
> Hi Chao,
> 
> On Tue, May 28, 2019 at 09:23:15AM +0800, Chao Yu wrote:
>> Hi Sahitya,
>>
>> On 2019/5/27 21:10, Sahitya Tummala wrote:
>>> Ratelimit the recovery logs, which are expected in case
>>> of sudden power down and which could result into too
>>> many prints.
>>
>> FYI
>>
>> https://lore.kernel.org/patchwork/patch/973837/
>>
>> IMO, we need those logs to provide evidence during trouble-shooting of file data
>> corruption or file missing problem...
>>
> In one of the logs, I have noticed there were ~400 recovery prints in the

I think its order of magnitudes is not such bad, if there is redundant logs such
as the one in do_recover_data(), we can improve it.

> kernel bootup. I noticed your patch above and with that now we can always get
> the error returned by f2fs_recover_fsync_data(), which should be good enough
> for knowing the status of recovered files I thought. Do you think we need
> individually each file status as well?

Yes, I think so, we need them for the detailed info. :)

Thanks,

> 
> Thanks,
> 
>> So I suggest we can keep log as it is in recover_dentry/recover_inode, and for
>> the log in do_recover_data, we can record recovery info [isize_kept,
>> recovered_count, err ...] into struct fsync_inode_entry, and print them in
>> batch, how do you think?
>>
>> Thanks,
>>
>>>
>>> Signed-off-by: Sahitya Tummala <stummala@codeaurora.org>
>>> ---
>>> v2:
>>>  - fix minor formatting and add new line for printk
>>>
>>>  fs/f2fs/recovery.c | 18 +++++++++---------
>>>  1 file changed, 9 insertions(+), 9 deletions(-)
>>>
>>> diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
>>> index e04f82b..60d7652 100644
>>> --- a/fs/f2fs/recovery.c
>>> +++ b/fs/f2fs/recovery.c
>>> @@ -188,8 +188,8 @@ static int recover_dentry(struct inode *inode, struct page *ipage,
>>>  		name = "<encrypted>";
>>>  	else
>>>  		name = raw_inode->i_name;
>>> -	f2fs_msg(inode->i_sb, KERN_NOTICE,
>>> -			"%s: ino = %x, name = %s, dir = %lx, err = %d",
>>> +	printk_ratelimited(KERN_NOTICE
>>> +			"%s: ino = %x, name = %s, dir = %lx, err = %d\n",
>>>  			__func__, ino_of_node(ipage), name,
>>>  			IS_ERR(dir) ? 0 : dir->i_ino, err);
>>>  	return err;
>>> @@ -292,8 +292,8 @@ static int recover_inode(struct inode *inode, struct page *page)
>>>  	else
>>>  		name = F2FS_INODE(page)->i_name;
>>>  
>>> -	f2fs_msg(inode->i_sb, KERN_NOTICE,
>>> -		"recover_inode: ino = %x, name = %s, inline = %x",
>>> +	printk_ratelimited(KERN_NOTICE
>>> +			"recover_inode: ino = %x, name = %s, inline = %x\n",
>>>  			ino_of_node(page), name, raw->i_inline);
>>>  	return 0;
>>>  }
>>> @@ -642,11 +642,11 @@ static int do_recover_data(struct f2fs_sb_info *sbi, struct inode *inode,
>>>  err:
>>>  	f2fs_put_dnode(&dn);
>>>  out:
>>> -	f2fs_msg(sbi->sb, KERN_NOTICE,
>>> -		"recover_data: ino = %lx (i_size: %s) recovered = %d, err = %d",
>>> -		inode->i_ino,
>>> -		file_keep_isize(inode) ? "keep" : "recover",
>>> -		recovered, err);
>>> +	printk_ratelimited(KERN_NOTICE
>>> +			"recover_data: ino = %lx (i_size: %s) recovered = %d, err = %d\n",
>>> +			inode->i_ino,
>>> +			file_keep_isize(inode) ? "keep" : "recover",
>>> +			recovered, err);
>>>  	return err;
>>>  }
>>>  
>>>
> 

  reply	other threads:[~2019-05-28  3:18 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-27 13:10 Sahitya Tummala
2019-05-28  1:23 ` Chao Yu
2019-05-28  3:05   ` Sahitya Tummala
2019-05-28  3:17     ` Chao Yu [this message]
2019-05-28  3:24       ` Sahitya Tummala
2019-05-28  3:30       ` [f2fs-dev] " Gao Xiang
2019-05-28  7:37         ` Chao Yu
2019-05-28 11:05           ` Joe Perches
2019-05-28 12:16             ` Joe Perches
2019-05-29  2:03               ` Chao Yu

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=2575bd54-d67c-6b26-ebf7-d6adb2e193a7@huawei.com \
    --to=yuchao0@huawei.com \
    --cc=jaegeuk@kernel.org \
    --cc=linux-f2fs-devel@lists.sourceforge.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stummala@codeaurora.org \
    /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

all inboxes | Powered by JetHome®