|
|
Log in / Subscribe / Register

Introduce and use device_create_groups

From:  Guenter Roeck <linux@roeck-us.net>
To:  Jean Delvare <khali@linux-fr.org>, Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject:  [RFC PATCH 0/5] Introduce and use device_create_groups
Date:  Sat, 6 Jul 2013 10:22:51 -0700
Message-ID:  <1373131376-13293-1-git-send-email-linux@roeck-us.net>
Cc:  lm-sensors@lm-sensors.org, linux-kernel@vger.kernel.org
Archive‑link:  Article

This patch series introduces the new driver core API function
device_create_groups().

device_create_groups() lets callers create devices as well as associated
sysfs attributes with a single call. This avoids potential race conditions
seen if sysfs attributes on new devices are created later.

The rationale for the new API is that sysfs attributes should be created
synchronously with device creation to avoid race conditions, as outlined in
http://www.linuxfoundation.org/news-media/blogs/browse/20....

Unfortunately, the only API function to create a device dynamically is
device_create, which does not support the notion of adding sysfs attributes
when creating a device. The new API call is similar but lets the caller provide
a list of sysfs attribute groups.

The first patch in the series introduces the new driver core API function.

The second patch introduces hwmon_device_register_groups(), which uses the new
API call.

The remaining patches convert some hwmon drivers to use the new API to show and
test its use.


Copyright © 2013, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds