Skip to content

Commit

Permalink
md: remove unnecesary md_new_event_inintr
Browse files Browse the repository at this point in the history
md_new_event had removed sysfs_notify since 'commit 72a23c2
("Make sure all changes to md/sync_action are notified.")', so we
can use md_new_event and delete md_new_event_inintr.

Signed-off-by: Guoqing Jiang <gqjiang@suse.com>
Signed-off-by: NeilBrown <neilb@suse.com>
  • Loading branch information
Guoqing Jiang authored and NeilBrown committed Jan 7, 2016
1 parent 5036c39 commit bb9ef71
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions drivers/md/md.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,15 +205,6 @@ void md_new_event(struct mddev *mddev)
}
EXPORT_SYMBOL_GPL(md_new_event);

/* Alternate version that can be called from interrupts
* when calling sysfs_notify isn't needed.
*/
static void md_new_event_inintr(struct mddev *mddev)
{
atomic_inc(&md_event_count);
wake_up(&md_event_waiters);
}

/*
* Enables to iterate over all existing md arrays
* all_mddevs_lock protects this list.
Expand Down Expand Up @@ -7209,7 +7200,7 @@ void md_error(struct mddev *mddev, struct md_rdev *rdev)
md_wakeup_thread(mddev->thread);
if (mddev->event_work.func)
queue_work(md_misc_wq, &mddev->event_work);
md_new_event_inintr(mddev);
md_new_event(mddev);
}
EXPORT_SYMBOL(md_error);

Expand Down

0 comments on commit bb9ef71

Please sign in to comment.