mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Julian Wiedmann <jwi@linux.ibm.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Tejun Heo <tj@kernel.org>, Lai Jiangshan <jiangshanlai@gmail.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH wq/for-next 2/2] workqueue: let device core create the WQ_UNBOUND attributes
Date: Mon, 7 Jun 2021 13:34:49 +0300	[thread overview]
Message-ID: <7b9366c0-13d9-a5ef-1a29-dd3510a831c0@linux.ibm.com> (raw)
In-Reply-To: <YL30jJsS+xWMjGVa@kroah.com>

On 07.06.21 13:27, Greg Kroah-Hartman wrote:
> On Mon, Jun 07, 2021 at 11:44:20AM +0200, Julian Wiedmann wrote:
>> Wrap the attributes for a WQ_UNBOUND workqueue in ATTRIBUTE_GROUPS(),
>> and wire them up in dev->groups so that the device core can manage them
>> for us.
>>
>> As device_add() will add such attributes _prior_ to raising the KOBJ_ADD
>> uevent, this also makes the initial uevent suppression unnecessary.
>>
>> Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
>> ---
>>  kernel/workqueue.c | 51 ++++++++++++++++++++--------------------------
>>  1 file changed, 22 insertions(+), 29 deletions(-)
>>
>> diff --git a/kernel/workqueue.c b/kernel/workqueue.c
>> index 817dc2d7438a..629859ac5262 100644
>> --- a/kernel/workqueue.c
>> +++ b/kernel/workqueue.c
>> @@ -5449,6 +5449,9 @@ static ssize_t wq_pool_ids_show(struct device *dev,
>>  	return written;
>>  }
>>  
>> +static struct device_attribute wq_sysfs_unbound_attr_pool_ids =
>> +	__ATTR(pool_ids, 0444, wq_pool_ids_show, NULL);
> 
> __ATTR_RO() please.
> 

I did consider using DEVICE_ATTR_*(), yes. But renaming all the _show and _store
functions added too much unrelated churn for my taste. So let's maybe do this
as a follow-on?

>> +
>>  static ssize_t wq_nice_show(struct device *dev, struct device_attribute *attr,
>>  			    char *buf)
>>  {
>> @@ -5502,6 +5505,9 @@ static ssize_t wq_nice_store(struct device *dev, struct device_attribute *attr,
>>  	return ret ?: count;
>>  }
>>  
>> +static struct device_attribute wq_sysfs_unbound_attr_nice =
>> +	__ATTR(nice, 0644, wq_nice_show, wq_nice_store);
> 
> __ATTR_RW()
> 
>> +
>>  static ssize_t wq_cpumask_show(struct device *dev,
>>  			       struct device_attribute *attr, char *buf)
>>  {
>> @@ -5539,6 +5545,9 @@ static ssize_t wq_cpumask_store(struct device *dev,
>>  	return ret ?: count;
>>  }
>>  
>> +static struct device_attribute wq_sysfs_unbound_attr_cpumask =
>> +	__ATTR(cpumask, 0644, wq_cpumask_show, wq_cpumask_store);
> 
> __ATTR_RW()
> 
> thanks,
> 
> greg k-h
> 


  reply	other threads:[~2021-06-07 10:35 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-07  9:44 [PATCH wq/for-next 1/2] workqueue: let subsystem core create the cpumask attribute Julian Wiedmann
2021-06-07  9:44 ` [PATCH wq/for-next 2/2] workqueue: let device core create the WQ_UNBOUND attributes Julian Wiedmann
2021-06-07 10:27   ` Greg Kroah-Hartman
2021-06-07 10:34     ` Julian Wiedmann [this message]
2021-06-07 10:41       ` Greg Kroah-Hartman

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=7b9366c0-13d9-a5ef-1a29-dd3510a831c0@linux.ibm.com \
    --to=jwi@linux.ibm.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jiangshanlai@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=tj@kernel.org \
    /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

all inboxes | Powered by JetHome®