]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drbd: remove useless kobject_uevent from drbd_adm_connect
authorLars Ellenberg <lars.ellenberg@linbit.com>
Tue, 26 Apr 2011 14:22:25 +0000 (16:22 +0200)
committerPhilipp Reisner <philipp.reisner@linbit.com>
Thu, 8 Nov 2012 15:49:07 +0000 (16:49 +0100)
Calling kobject_uevent, which may sleep, from within rcu_read_lock()
protected regions is not possible.
This particular kobject_uevent also is also wrong. It was supposed to
trigger a udev run, just in case something relevant to udev symlink
magic has changed, when adjusting runtime re-configurable settings while
we still had the "syncer conf".  It was improperly placed in connect
when we dropped the "syncer conf".  The right thing to do is probably to
call "udevadm trigger" directly in those cases where drbdadm thinks
there was a need to trigger extra udev runs.

Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
drivers/block/drbd/drbd_nl.c

index caaef71ec614b9e474dc9a100a9746e3ad4a094e..1a8fb7a0db59f5493adb88ccc8010e57f3be3f19 100644 (file)
@@ -2043,15 +2043,15 @@ int drbd_adm_connect(struct sk_buff *skb, struct genl_info *info)
 
        mutex_unlock(&tconn->net_conf_update);
 
-       retcode = conn_request_state(tconn, NS(conn, C_UNCONNECTED), CS_VERBOSE);
-
        rcu_read_lock();
        idr_for_each_entry(&tconn->volumes, mdev, i) {
                mdev->send_cnt = 0;
                mdev->recv_cnt = 0;
-               kobject_uevent(&disk_to_dev(mdev->vdisk)->kobj, KOBJ_CHANGE);
        }
        rcu_read_unlock();
+
+       retcode = conn_request_state(tconn, NS(conn, C_UNCONNECTED), CS_VERBOSE);
+
        conn_reconfig_done(tconn);
        drbd_adm_finish(info, retcode);
        return 0;