diff options
author | Paul Mackerras <paulus@samba.org> | 2006-08-31 01:45:48 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-08-31 01:45:48 -0400 |
commit | aa43f77939c97bf9d3580c6a5e71a5a40290e451 (patch) | |
tree | 095c0b8b3da4b6554a3f8ef4b39240a5d9216d4d /block/elevator.c | |
parent | 2818c5dec5e28d65d52afbb7695bbbafe6377ee5 (diff) | |
parent | 4c15343167b5febe7bb0ba96aad5bef42ae94d3b (diff) |
Merge branch 'merge'
Diffstat (limited to 'block/elevator.c')
-rw-r--r-- | block/elevator.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/block/elevator.c b/block/elevator.c index bc7baeec0d10..9b72dc7c8a5c 100644 --- a/block/elevator.c +++ b/block/elevator.c | |||
@@ -765,7 +765,8 @@ void elv_unregister(struct elevator_type *e) | |||
765 | read_lock(&tasklist_lock); | 765 | read_lock(&tasklist_lock); |
766 | do_each_thread(g, p) { | 766 | do_each_thread(g, p) { |
767 | task_lock(p); | 767 | task_lock(p); |
768 | e->ops.trim(p->io_context); | 768 | if (p->io_context) |
769 | e->ops.trim(p->io_context); | ||
769 | task_unlock(p); | 770 | task_unlock(p); |
770 | } while_each_thread(g, p); | 771 | } while_each_thread(g, p); |
771 | read_unlock(&tasklist_lock); | 772 | read_unlock(&tasklist_lock); |