Commit 40a13ca8 authored by Ronnie Sahlberg's avatar Ronnie Sahlberg Committed by Paolo Bonzini
Browse files

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: default avatarRonnie Sahlberg <ronniesahlberg@gmail.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent f1a12821
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -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;
}