diff options
author | Alasdair G Kergon <agk@redhat.com> | 2007-12-13 14:15:57 +0000 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2007-12-20 17:32:11 +0000 |
commit | 69267a30bed1fabec658058c63845528a8b813d4 (patch) | |
tree | d6c527bc0d456089f1eaf0998fe39ef899b8c1fc /drivers/md/dm-ioctl.c | |
parent | adfe47702c4726b3e045f9f83178def02833be4c (diff) | |
download | linux-3.10-69267a30bed1fabec658058c63845528a8b813d4.tar.gz linux-3.10-69267a30bed1fabec658058c63845528a8b813d4.tar.bz2 linux-3.10-69267a30bed1fabec658058c63845528a8b813d4.zip |
dm: trigger change uevent on rename
Insert a missing KOBJ_CHANGE notification when a device is renamed.
Cc: Scott James Remnant <scott@ubuntu.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md/dm-ioctl.c')
-rw-r--r-- | drivers/md/dm-ioctl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/md/dm-ioctl.c b/drivers/md/dm-ioctl.c index be730fdd483..9627fa0f947 100644 --- a/drivers/md/dm-ioctl.c +++ b/drivers/md/dm-ioctl.c @@ -332,6 +332,8 @@ static int dm_hash_rename(const char *old, const char *new) dm_table_put(table); } + dm_kobject_uevent(hc->md); + dm_put(hc->md); up_write(&_hash_lock); kfree(old_name); |