[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20080111030945.27954.qmail@cdy.org>
Date: Fri, 11 Jan 2008 04:09:45 +0100
From: Peter Stuge <stuge-linux-pcmcia@....org>
To: Roel Kluin <12o3l@...cali.nl>
Cc: Al Viro <viro@...IV.linux.org.uk>,
Mathieu Segaud <mathieu.segaud@...ala.cx>,
Richard Knutsson <ricknu-0@...dent.ltu.se>,
linux-pcmcia@...ts.infradead.org, linux-kernel@...r.kernel.org,
akpm@...ux-foundation.org, linux-ext4@...r.kernel.org
Subject: Re: [PATCH] [Coding Style]: fs/ext{3,4}/ext{3,4}_jbd{,2}.c
On Thu, Jan 10, 2008 at 10:03:58PM +0100, Roel Kluin wrote:
> -#define DEBUG(x,args...) printk(__FUNCTION__ ": " x,##args)
> +#define DEBUG(x, args...) printk("%s: ", __func__, x, ##args)
Can this really be expected to work when x contains conversions?
How about:
#define DEBUG(x, args...) printk("%s: " x, __func__, ##args)
//Peter
--
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