* [PATCH v2 6/8] padata: Replace padata_attr_type default_attrs field with groups
2019-04-02 2:51 ` [PATCH v2 0/8] kobject: Add default group support to kobj_type and replace subsystem uses Kimberly Brown
@ 2019-04-02 2:51 ` Kimberly Brown
2019-04-02 6:29 ` [PATCH v2 0/8] kobject: Add default group support to kobj_type and replace subsystem uses Greg Kroah-Hartman
2019-04-25 20:12 ` Greg Kroah-Hartman
2 siblings, 0 replies; 4+ messages in thread
From: Kimberly Brown @ 2019-04-02 2:51 UTC (permalink / raw)
To: Greg Kroah-Hartman, Rafael J. Wysocki
Cc: Steffen Klassert, linux-crypto, linux-kernel
The kobj_type default_attrs field is being replaced by the
default_groups field. Replace padata_attr_type's default_attrs field
with default_groups and use the ATTRIBUTE_GROUPS macro to create
padata_default_groups.
This patch was tested by loading the pcrypt module and verifying that
the sysfs files for the attributes in the default groups were created.
Signed-off-by: Kimberly Brown <kimbrownkd@gmail.com>
---
kernel/padata.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/kernel/padata.c b/kernel/padata.c
index 3e2633ae3bca..2d2fddbb7a4c 100644
--- a/kernel/padata.c
+++ b/kernel/padata.c
@@ -957,6 +957,7 @@ static struct attribute *padata_default_attrs[] = {
¶llel_cpumask_attr.attr,
NULL,
};
+ATTRIBUTE_GROUPS(padata_default);
static ssize_t padata_sysfs_show(struct kobject *kobj,
struct attribute *attr, char *buf)
@@ -995,7 +996,7 @@ static const struct sysfs_ops padata_sysfs_ops = {
static struct kobj_type padata_attr_type = {
.sysfs_ops = &padata_sysfs_ops,
- .default_attrs = padata_default_attrs,
+ .default_groups = padata_default_groups,
.release = padata_sysfs_release,
};
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v2 0/8] kobject: Add default group support to kobj_type and replace subsystem uses
2019-04-02 2:51 ` [PATCH v2 0/8] kobject: Add default group support to kobj_type and replace subsystem uses Kimberly Brown
2019-04-02 2:51 ` [PATCH v2 6/8] padata: Replace padata_attr_type default_attrs field with groups Kimberly Brown
@ 2019-04-02 6:29 ` Greg Kroah-Hartman
2019-04-25 20:12 ` Greg Kroah-Hartman
2 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2019-04-02 6:29 UTC (permalink / raw)
To: Kimberly Brown
Cc: Rafael J. Wysocki, Jens Axboe, linux-block, David S. Miller,
netdev, Thomas Gleixner, Steffen Klassert, linux-crypto,
Ingo Molnar, Peter Zijlstra, Josh Poimboeuf, Jiri Kosina,
Miroslav Benes, Petr Mladek, Joe Lawrence, live-patching,
linux-kernel
On Mon, Apr 01, 2019 at 10:51:10PM -0400, Kimberly Brown wrote:
> This patchset adds support for default attribute groups to kobj_type.
> Also, the uses of kobj_type's default_attrs field are replaced with
> default_groups in the following subsystems:
> - samples
> - block
> - net
> - irq
> - padata
> - cpufreq
> - livepatch
>
> The subsystem maintainers and lists will be copied on the subsystem
> patches.
>
> The uses of kobj_type's default_attrs field in the other subsystems will
> be replaced in future patchsets.
>
> Changes in v2:
> - Patch 1 is not changed.
> - Patches 2-8 are new.
Thanks so much for doing this.
As all of the different subsystems depend on the first patch, I'll be
glad to merge them all through my driver-core tree, or apply the first
one and wait a release cycle so that the others can go through the
individual subsystem's tree, depending on what the subsystem maintainer
is comfortable with.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 0/8] kobject: Add default group support to kobj_type and replace subsystem uses
2019-04-02 2:51 ` [PATCH v2 0/8] kobject: Add default group support to kobj_type and replace subsystem uses Kimberly Brown
2019-04-02 2:51 ` [PATCH v2 6/8] padata: Replace padata_attr_type default_attrs field with groups Kimberly Brown
2019-04-02 6:29 ` [PATCH v2 0/8] kobject: Add default group support to kobj_type and replace subsystem uses Greg Kroah-Hartman
@ 2019-04-25 20:12 ` Greg Kroah-Hartman
2 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2019-04-25 20:12 UTC (permalink / raw)
To: Kimberly Brown
Cc: Rafael J. Wysocki, Jens Axboe, linux-block, David S. Miller,
netdev, Thomas Gleixner, Steffen Klassert, linux-crypto,
Ingo Molnar, Peter Zijlstra, Josh Poimboeuf, Jiri Kosina,
Miroslav Benes, Petr Mladek, Joe Lawrence, live-patching,
linux-kernel
On Mon, Apr 01, 2019 at 10:51:10PM -0400, Kimberly Brown wrote:
> This patchset adds support for default attribute groups to kobj_type.
> Also, the uses of kobj_type's default_attrs field are replaced with
> default_groups in the following subsystems:
> - samples
> - block
> - net
> - irq
> - padata
> - cpufreq
> - livepatch
>
> The subsystem maintainers and lists will be copied on the subsystem
> patches.
>
> The uses of kobj_type's default_attrs field in the other subsystems will
> be replaced in future patchsets.
Thanks for all of these, now queued up. Patches to fix up the other
subsystems are always welcome :)
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread