linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Wolfram Sang <w.sang@pengutronix.de>
To: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Cc: Greg KH <gregkh@suse.de>,
	"Eric W. Biederman" <ebiederm@xmission.com>,
	linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org,
	Lin Ming <ming.m.lin@intel.com>, Len Brown <lenb@kernel.org>
Subject: Re: [PATCH] Fix key f70f4b50 not in .data in thermal_sys
Date: Mon, 22 Mar 2010 14:31:38 +0100	[thread overview]
Message-ID: <20100322133138.GA1076@pengutronix.de> (raw)
In-Reply-To: <20100322131508.GB3596@swordfish.minsk.epam.com>

[-- Attachment #1: Type: text/plain, Size: 1714 bytes --]

On Mon, Mar 22, 2010 at 03:15:08PM +0200, Sergey Senozhatsky wrote:
> Initialize sysfs attributes before device_create_file call.
> 
> Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
> ---
> 
> diff --git a/drivers/thermal/thermal_sys.c b/drivers/thermal/thermal_sys.c
> index 5066de5..a76a6ff 100644
> --- a/drivers/thermal/thermal_sys.c
> +++ b/drivers/thermal/thermal_sys.c
> @@ -492,6 +492,7 @@ thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
>  		goto free_mem;
>  	}
>  	dev_set_drvdata(hwmon->device, hwmon);
> +	sysfs_attr_init(&dev_attr_name.attr);
>  	result = device_create_file(hwmon->device, &dev_attr_name);

This one should not be needed? Is declared static in line 426.

>  	if (result)
>  		goto unregister_hwmon_device;
> @@ -505,6 +506,7 @@ thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
>  	tz->temp_input.attr.attr.name = tz->temp_input.name;
>  	tz->temp_input.attr.attr.mode = 0444;
>  	tz->temp_input.attr.show = temp_input_show;
> +	sysfs_attr_init(&tz->temp_input.attr.attr);
>  	result = device_create_file(hwmon->device, &tz->temp_input.attr);
>  	if (result)
>  		goto unregister_hwmon_device;
> @@ -517,6 +519,7 @@ thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
>  			tz->temp_crit.attr.attr.name = tz->temp_crit.name;
>  			tz->temp_crit.attr.attr.mode = 0444;
>  			tz->temp_crit.attr.show = temp_crit_show;
> +			sysfs_attr_init(&tz->temp_crit.attr.attr);

Those encapsuled attributes are trickier to find, sigh...

Regards,

   Wolfram


-- 
Pengutronix e.K.                           | Wolfram Sang                |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

  reply	other threads:[~2010-03-22 13:31 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-09 10:27 BUG: key f70f4b50 not in .data Sergey Senozhatsky
2010-03-09 14:18 ` Greg KH
2010-03-22 13:15   ` [PATCH] Fix key f70f4b50 not in .data in thermal_sys Sergey Senozhatsky
2010-03-22 13:31     ` Wolfram Sang [this message]
2010-03-22 13:54       ` Sergey Senozhatsky
2010-03-22 13:52   ` Sergey Senozhatsky
2010-03-22 14:07     ` Wolfram Sang
2010-03-22 14:45       ` [PATCH] Fix key f70f4b50 not in .data in thermal_sys V2 Sergey Senozhatsky
2010-04-05  0:17         ` Len Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100322133138.GA1076@pengutronix.de \
    --to=w.sang@pengutronix.de \
    --cc=ebiederm@xmission.com \
    --cc=gregkh@suse.de \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ming.m.lin@intel.com \
    --cc=sergey.senozhatsky@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).