From: Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org>
To: Jeff Layton <jlayton-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Cc: Steve French <smfrench-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
linux-cifs <linux-cifs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH] cifs: trivial: cleanup fscache cFYI and cERROR messages
Date: Mon, 20 Jun 2011 12:03:55 +0530 [thread overview]
Message-ID: <4DFEE9D3.8090305@suse.de> (raw)
In-Reply-To: <20110615085841.633bb3c3-4QP7MXygkU+dMjc06nkz3ljfA9RmPOcC@public.gmane.org>
On 06/15/2011 06:28 PM, Jeff Layton wrote:
> On Wed, 15 Jun 2011 15:10:45 +0530
> Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org> wrote:
>
>> On 06/14/2011 09:30 PM, Jeff Layton wrote:
>>> On Tue, 14 Jun 2011 21:07:47 +0530
>>> Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org> wrote:
>>>
>>>> ... for uniformity and cleaner debug logs.
>>>>
>>>> Signed-off-by: Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org>
>>>> ---
>>>> fs/cifs/cache.c | 6 +++---
>>>> fs/cifs/fscache.c | 53 +++++++++++++++++++++++++----------------------------
>>>> 2 files changed, 28 insertions(+), 31 deletions(-)
>>>>
>>>> diff --git a/fs/cifs/cache.c b/fs/cifs/cache.c
>>>> index dd8584d..545509c 100644
>>>> --- a/fs/cifs/cache.c
>>>> +++ b/fs/cifs/cache.c
>>>> @@ -92,7 +92,7 @@ static uint16_t cifs_server_get_key(const void *cookie_netfs_data,
>>>> break;
>>>>
>>>> default:
>>>> - cERROR(1, "CIFS: Unknown network family '%d'", sa->sa_family);
>>>> + cERROR(1, "Unknown network family '%d'", sa->sa_family);
>>> ^^^^^^^^^
>>> Maybe this would be a good time to add in a new
>>> cFYI/cERROR "flag" for fscache and convert all of these
>>> to use it?
>>
>> Sounds like a good idea to flag fsc debug messages separately but
>> flagging errors separately would be useful?
>>
>
> Good point. Now that you mention it, I'm not sure what purpose the
> first argument to cERROR serves. Might be a good thing to do a global
> search and replace -- "s/cERROR(1, /cERROR(/" and fix up the macro.
>
>> Also, I don't understand the idea behing the "set" currently.
>>
>> we have
>>
>> #define cFYI(set, fmt, arg...) \
>> do { \
>> if (set) \
>> cifsfyi(fmt, ##arg); \
>> } while (0)
>>
>> and we call cFYI with always pass like this:
>> cFYI(1, "..");
>>
>>
>
> I think for cFYI, the idea was to have a bitmask that would allow you
> to selectively turn on certain classes of debug messages (similar to
> how NFS' dfprintk macro works). In practice though, it's rarely set to
> anything but "1". Maybe we should consider eliminating that argument as
> well?
>
Currently the separate debug flags CIFS_RC and CIFS_TIMER doesn't look
justified. It would be a good idea to have different classes of debug
messages based on the functionality. The ones that comes to my mind are
DFS, Kerberos/Spnego, FS-Cache and Xattr/ACL etc. Of course we need to
see how GetXid()/FreeXid() that spans across can be handled.
Would it be worth the exercise or we would be better of with a single
debug flag that is used always?
Ideas/Thoughts/Comments?
--
Suresh Jayaraman
prev parent reply other threads:[~2011-06-20 6:33 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-14 15:37 [PATCH] cifs: trivial: cleanup fscache cFYI and cERROR messages Suresh Jayaraman
[not found] ` <4DF7804B.8000502-l3A5Bk7waGM@public.gmane.org>
2011-06-14 16:00 ` Jeff Layton
[not found] ` <20110614120048.7c04567d-4QP7MXygkU+dMjc06nkz3ljfA9RmPOcC@public.gmane.org>
2011-06-15 9:40 ` Suresh Jayaraman
[not found] ` <4DF87E1D.70802-l3A5Bk7waGM@public.gmane.org>
2011-06-15 12:58 ` Jeff Layton
[not found] ` <20110615085841.633bb3c3-4QP7MXygkU+dMjc06nkz3ljfA9RmPOcC@public.gmane.org>
2011-06-15 13:08 ` Suresh Jayaraman
[not found] ` <4DF8AEC5.5030703-l3A5Bk7waGM@public.gmane.org>
2011-06-15 15:54 ` Steve French
[not found] ` <BANLkTim-T4PKGfsX-XQT5mP1EwLLkDMDwg@mail.gmail.com>
[not found] ` <BANLkTim-T4PKGfsX-XQT5mP1EwLLkDMDwg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-06-20 5:58 ` Suresh Jayaraman
[not found] ` <4DFEE17D.50000-l3A5Bk7waGM@public.gmane.org>
2011-06-20 16:31 ` Steve French
2011-06-20 6:33 ` Suresh Jayaraman [this message]
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=4DFEE9D3.8090305@suse.de \
--to=sjayaraman-l3a5bk7wagm@public.gmane.org \
--cc=jlayton-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=linux-cifs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=smfrench-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.