diff options
author | Ronnie Sahlberg <ronniesahlberg@gmail.com> | 2012-08-30 16:56:36 -0700 |
---|---|---|
committer | Michael Roth <mdroth@linux.vnet.ibm.com> | 2012-10-11 21:44:19 -0500 |
commit | 60088e5b8332fc523919a137231824e222730636 (patch) | |
tree | b9b919b04a2be81620f7dcfa0a59e63abc78f7ec | |
parent | ae06193d73534719cd3631ca06f1420d40e2d5fc (diff) |
iSCSI: We dont need to explicitely call qemu_notify_event() any more
We no longer need to explicitely call qemu_notify_event() any more
since this is now done automatically any time the filehandles we listen
to change.
Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
(cherry picked from commit 40a13ca8d28c21062e35b10d9b80e76b92405bdf)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
-rw-r--r-- | block/iscsi.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/block/iscsi.c b/block/iscsi.c index ea1660948d..fb001b955c 100644 --- a/block/iscsi.c +++ b/block/iscsi.c @@ -167,12 +167,6 @@ iscsi_set_events(IscsiLun *iscsilun) } - /* If we just added an event, the callback might be delayed - * unless we call qemu_notify_event(). - */ - if (ev & ~iscsilun->events) { - qemu_notify_event(); - } iscsilun->events = ev; } |