[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1403534135-29241-1-git-send-email-mbizon@freebox.fr>
Date: Mon, 23 Jun 2014 16:35:35 +0200
From: Maxime Bizon <mbizon@...ebox.fr>
To: Tejun Heo <tj@...nel.org>
Cc: linux-kernel@...r.kernel.org, Maxime Bizon <mbizon@...ebox.fr>
Subject: [PATCH] workqueue: fix dev_set_uevent_suppress imbalance.
Uevents are suppressed during attributes registration, but never
restored, so kobject_uevent() does nothing.
Signed-off-by: Maxime Bizon <mbizon@...ebox.fr>
---
kernel/workqueue.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 6203d29..6f5f9c7 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -3284,6 +3284,7 @@ int workqueue_sysfs_register(struct workqueue_struct *wq)
}
}
+ dev_set_uevent_suppress(&wq_dev->dev, false);
kobject_uevent(&wq_dev->dev.kobj, KOBJ_ADD);
return 0;
}
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists