Re: [PATCH 1/2 v3] udf : enable error print in udf_read_tagged().

From: NamJae Jeon
Date: Sun Oct 09 2011 - 02:25:58 EST


2011/10/9 Joe Perches <joe@xxxxxxxxxxx>:
> On Sun, 2011-10-09 at 13:44 +0900, NamJae Jeon wrote:
>> 2011/10/9 Joe Perches <joe@xxxxxxxxxxx>:
>> > Not a good patch I think.
>> > You've broken format strings when they should be coalesced
>> > and the alignment looks odd.
>> Would you explain more ? I didn't understand your meaning yet.
>
> Format strings are allowed to exceed 80 columns.
> Arguments should be aligned to the open parenthesis
>
> For example:
> Â Â Â Âpr_err("some really long format string longer than "
> Â Â Â Â Â Â Â Â"80 columns and not broken into pieces, Count: %d\n",
> Â Â Â Â Â Â Â Âcount);
> is better as:
> Â Â Â Âpr_err("some really long format string longer than 80 columns and not broken into pieces, Count: %d\n",
> Â Â Â Â Â Â Â count);
>
> Coalesced format strings makes dmesg output easier to grep.
> count is not indented by 2 tabs, but 1 tab and 7 spaces.
>
> There's no hard and fast rule on the indentation.
>
> The patch I sent coalesced all format strings and
> used that alignment style.
Clear~ I will do it as your guide.
Thanks very much. joe~
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/