From: Sun Feng <loyou85@gmail.com>
To: axboe@kernel.dk, linux-block@vger.kernel.org,
linux-kernel@vger.kernel.org
Cc: loyou85@gmail.com
Subject: [PATCH] block: fix attribute_group lost if set before add_disk
Date: Fri, 10 Jun 2022 15:16:29 +0800 [thread overview]
Message-ID: <1654845389-21741-1-git-send-email-loyou85@gmail.com> (raw)
after commit 52b85909f85d("block: fold register_disk into device_add_disk")
when set attribute_group with following code:
disk_to_dev(disk)->groups = attr_groups;
err = add_disk(disk);
disk_to_dev(disk)->groups will set to NULL in device_add_disk,
static inline int __must_check add_disk(struct gendisk *disk)
{
return device_add_disk(NULL, disk, NULL);
}
int __must_check device_add_disk(struct device *parent, ...
const struct attribute_group **groups)
{
…
ddev->groups = groups
and it will lose attribute group set.
Signed-off-by: Sun Feng <loyou85@gmail.com>
---
block/genhd.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/block/genhd.c b/block/genhd.c
index 27205ae..6b76f67 100644
--- a/block/genhd.c
+++ b/block/genhd.c
@@ -459,7 +459,10 @@ int __must_check device_add_disk(struct device *parent, struct gendisk *disk,
dev_set_uevent_suppress(ddev, 1);
ddev->parent = parent;
- ddev->groups = groups;
+ if (groups) {
+ WARN_ON(ddev->groups);
+ ddev->groups = groups;
+ }
dev_set_name(ddev, "%s", disk->disk_name);
if (!(disk->flags & GENHD_FL_HIDDEN))
ddev->devt = MKDEV(disk->major, disk->first_minor);
--
2.7.4
next reply other threads:[~2022-06-10 7:16 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-10 7:16 Sun Feng [this message]
2022-06-10 8:13 ` Christoph Hellwig
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=1654845389-21741-1-git-send-email-loyou85@gmail.com \
--to=loyou85@gmail.com \
--cc=axboe@kernel.dk \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.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®