Revert "fix return check for KVM_GET_DIRTY_LOG ioctl"
commit50212d6346f33d6e19489e81b025b5c3bb8759be
authorMichael Tokarev <mjt@tls.msk.ru>
Mon, 14 Apr 2014 12:14:04 +0000 (14 16:14 +0400)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 14 Apr 2014 14:40:02 +0000 (14 15:40 +0100)
tree69bd1213c459f1bbde1f6fedfc421f1d2d0b534c
parentc2b9af1d6c2dda4c58a1c0ff389d09dcd9601b9e
Revert "fix return check for KVM_GET_DIRTY_LOG ioctl"

This reverts commit b533f658a98325d0e47b36113bd9f5bcc046fdae.

The original code was wrong, because effectively it ignored errors
from kernel, because kernel does not return -1 on error case but
returns -errno, and does not return -EPERM for this particular ioctl.
But in some cases kernel actually returned unsuccessful result,
namely, when the dirty bitmap in requested slot does not exist
it returns -ENOENT.  With new code this condition becomes an
error when it shouldn't be.

Revert that patch instead of fixing it properly this late in the
release process.  I disagree with this approach, but let's make
things move _somewhere_, instead of arguing endlessly whch of
the 2 proposed fixes is better.

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Message-id: 1397477644-902-1-git-send-email-mjt@msgid.tls.msk.ru
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
kvm-all.c