[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.LRH.2.00.1003151055060.26353@twin.jikos.cz>
Date: Mon, 15 Mar 2010 11:00:11 +0100 (CET)
From: Jiri Kosina <jkosina@...e.cz>
To: Wolfram Sang <w.sang@...gutronix.de>
Cc: linux-kernel@...r.kernel.org,
Grant Likely <grant.likely@...retlab.ca>,
kernel-janitors@...r.kernel.org,
"Eric W. Biederman" <ebiederm@...ssion.com>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Ralf Baechle <ralf@...ux-mips.org>,
Paul Gortmaker <p_gortmaker@...oo.com>,
Alessandro Zummo <a.zummo@...ertech.it>,
linux-mips@...ux-mips.org, rtc-linux@...glegroups.com
Subject: Re: [PATCH] init dynamic bin_attribute structures
On Mon, 15 Mar 2010, Wolfram Sang wrote:
> Commit 6992f5334995af474c2b58d010d08bc597f0f2fe introduced this requirement.
> First, at25 was fixed manually. Then, other occurences were found with
> coccinelle and the following semantic patch. Results were reviewed and fixed
> up:
>
> @ init @
> identifier struct_name, bin;
> @@
>
> struct struct_name {
> ...
> struct bin_attribute bin;
> ...
> };
>
> @ main extends init @
> expression E;
> statement S;
> identifier name, err;
> @@
>
> (
> struct struct_name *name;
> |
> - struct struct_name *name = NULL;
> + struct struct_name *name;
> )
> ...
> (
> sysfs_bin_attr_init(&name->bin);
> |
> + sysfs_bin_attr_init(&name->bin);
> if (sysfs_create_bin_file(E, &name->bin))
> S
> |
> + sysfs_bin_attr_init(&name->bin);
> err = sysfs_create_bin_file(E, &name->bin);
> )
>
> Signed-off-by: Wolfram Sang <w.sang@...gutronix.de>
> Cc: Eric W. Biederman <ebiederm@...ssion.com>
> Cc: Linus Torvalds <torvalds@...ux-foundation.org>
> ---
> arch/mips/txx9/generic/setup.c | 1 +
> drivers/misc/eeprom/at25.c | 1 +
> drivers/rtc/rtc-ds1742.c | 1 +
> 3 files changed, 3 insertions(+), 0 deletions(-)
I don't understand how cocinelle works, but the resulting patch seems to
be incomplete.
The fix is needed at least in firmware loader (for which Greg has already
queued patch), in ACPI thermal driver [1], etc).
[1] http://lkml.indiana.edu/hypermail/linux/kernel/1003.1/02680.html
--
Jiri Kosina
SUSE Labs, Novell Inc.
--
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