[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <4947.7670-30939-1615027563-1209917916@seznam.cz>
Date: Sun, 04 May 2008 18:18:36 +0200 (CEST)
From: Michal Simek <Monstr@...nam.cz>
To: Jiri Slaby <jirislaby@...il.com>
Cc: Joe Perches <joe@...ches.com>, paulus@...ba.org,
arnd@...db.de, linux-kernel@...r.kernel.org,
linux-arch@...r.kernel.org
Subject: Re: [PATCH 1/2] OF: clean coding style - prom_parse.c
Hi Jiri,
you are right. But the bugs comes from this patch http://lkml.org/lkml/2008/5/3/110.
For Paulus: Can you move these files?
As wrote Joe. The best way will be to fix these files after moving.
Thanks,
Michal
> Hi All,
>
> I fixed only part of coding style violation. Not all of them.
Actually, you introduced a bug. See:
http://lkml.org/lkml/2008/5/3/141
You should have used KERN_CONT, or even better sprintf and friends to be atomic
in logs.
> But you are right KERN_<level> is necessary.
>
> For me is especially important to move these files from arch/powerpc to
drivers/of.
>
> M
>
>>> /* Debug utility */
>>> #ifdef DEBUG
>>> static void of_dump_addr(const char *s, const u32 *addr, int na)
>>> {
>>> - printk("%s", s);
>>> - while(na--)
>>> - printk(" %08x", *(addr++));
>>> - printk("\n");
>>> + printk(KERN_INFO "%s", s);
>>> + while (na--)
>>> + printk(KERN_INFO " %08x", *(addr++));
>>> + printk(KERN_INFO "\n");
>>> }
>> You've prefixed KERN_INFO before every address block.
>>
>> How about:
>>
>> print_hex_dump(KERN_<level>, s, DUMP_PREFIX_NONE, 4, addr, na, false);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists