Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1434164 > unrolled thread

[PATCH v2 05/12] aoeblk: Generate uevent after attribute available

Started byFam Zheng <famz@redhat.com>
First post2016-06-30 04:10 +0200
Last post2016-07-01 03:30 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v2 05/12] aoeblk: Generate uevent after attribute available Fam Zheng <famz@redhat.com> - 2016-06-30 04:10 +0200
    Re: [PATCH v2 05/12] aoeblk: Generate uevent after attribute  available Ed Cashin <ed.cashin@acm.org> - 2016-07-01 03:30 +0200

#1434164 — [PATCH v2 05/12] aoeblk: Generate uevent after attribute available

FromFam Zheng <famz@redhat.com>
Date2016-06-30 04:10 +0200
Subject[PATCH v2 05/12] aoeblk: Generate uevent after attribute available
Message-ID<rPzAt-3BV-15@gated-at.bofh.it>
It is documented that KOBJ_ADD should be generated after the object's
attributes and children are ready.  We can achieve this with the new
disk_gen_uevents interface.

Signed-off-by: Fam Zheng <famz@redhat.com>
---
 drivers/block/aoe/aoeblk.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/block/aoe/aoeblk.c b/drivers/block/aoe/aoeblk.c
index e91c5f1..f0cf4d6 100644
--- a/drivers/block/aoe/aoeblk.c
+++ b/drivers/block/aoe/aoeblk.c
@@ -417,9 +417,10 @@ aoeblk_gdalloc(void *vp)
 
 	spin_unlock_irqrestore(&d->lock, flags);
 
-	add_disk(gd, true);
+	add_disk(gd, false);
 	aoedisk_add_sysfs(d);
 	aoedisk_add_debugfs(d);
+	disk_gen_uevents(gd);
 
 	spin_lock_irqsave(&d->lock, flags);
 	WARN_ON(!(d->flags & DEVFL_GD_NOW));
-- 
2.9.0

[toc] | [next] | [standalone]


#1434944 — Re: [PATCH v2 05/12] aoeblk: Generate uevent after attribute available

FromEd Cashin <ed.cashin@acm.org>
Date2016-07-01 03:30 +0200
SubjectRe: [PATCH v2 05/12] aoeblk: Generate uevent after attribute available
Message-ID<rPVrj-71-13@gated-at.bofh.it>
In reply to#1434164
On 06/29/2016 09:59 PM, Fam Zheng wrote:
> It is documented that KOBJ_ADD should be generated after the object's
> attributes and children are ready.  We can achieve this with the new
> disk_gen_uevents interface.

Looks like an improvement, thanks!

-- 
   Ed

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web