| To: | Wolfram Sang <w.sang@pengutronix.de> |
|---|---|
| Subject: | Re: [PATCH] init dynamic bin_attribute structures |
| From: | Jiri Kosina <jkosina@suse.cz> |
| Date: | Mon, 15 Mar 2010 11:00:11 +0100 (CET) |
| Cc: | linux-kernel@vger.kernel.org, Grant Likely <grant.likely@secretlab.ca>, kernel-janitors@vger.kernel.org, "Eric W. Biederman" <ebiederm@xmission.com>, Linus Torvalds <torvalds@linux-foundation.org>, Ralf Baechle <ralf@linux-mips.org>, Paul Gortmaker <p_gortmaker@yahoo.com>, Alessandro Zummo <a.zummo@towertech.it>, linux-mips@linux-mips.org, rtc-linux@googlegroups.com |
| In-reply-to: | <1268612981-9009-1-git-send-email-w.sang@pengutronix.de> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <alpine.LFD.2.00.1003141054050.3719@i5.linux-foundation.org> <1268612981-9009-1-git-send-email-w.sang@pengutronix.de> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Alpine 2.00 (LRH 1167 2008-08-23) |
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@pengutronix.de>
> Cc: Eric W. Biederman <ebiederm@xmission.com>
> Cc: Linus Torvalds <torvalds@linux-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.
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH] init dynamic bin_attribute structures, Wolfram Sang |
|---|---|
| Next by Date: | Re: [rtc-linux] Re: [PATCH] init dynamic bin_attribute structures, Wolfram Sang |
| Previous by Thread: | [PATCH] init dynamic bin_attribute structures, Wolfram Sang |
| Next by Thread: | Re: [rtc-linux] Re: [PATCH] init dynamic bin_attribute structures, Wolfram Sang |
| Indexes: | [Date] [Thread] [Top] [All Lists] |