diff options
author | Alex Williamson <alex.williamson@redhat.com> | 2012-12-06 14:44:59 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-03 18:27:06 -0600 |
commit | 180e38dc2e83a549821b942884efab22e807e752 (patch) | |
tree | c5e8dae96e0a3389abfbfaaa98ca6f0a254ac148 /virt | |
parent | 710c8f51c857395ea1bf708144768b305800789e (diff) |
kvm: Fix irqfd resampler list walk
commit 49f8a1a5394d8baee5e56fb71e5cf993c228689a upstream.
Typo for the next pointer means we're walking random data here.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'virt')
-rw-r--r-- | virt/kvm/eventfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c index 9718e98d6d2..62e7bd63ca3 100644 --- a/virt/kvm/eventfd.c +++ b/virt/kvm/eventfd.c @@ -332,7 +332,7 @@ kvm_irqfd_assign(struct kvm *kvm, struct kvm_irqfd *args) mutex_lock(&kvm->irqfds.resampler_lock); list_for_each_entry(resampler, - &kvm->irqfds.resampler_list, list) { + &kvm->irqfds.resampler_list, link) { if (resampler->notifier.gsi == irqfd->gsi) { irqfd->resampler = resampler; break; |