diff options
author | Richard Henderson <rth@twiddle.net> | 2016-08-29 11:46:14 -0700 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-09-13 19:09:45 +0200 |
commit | a1febc4950f2c6232c002f401d7cd409f6fa6a88 (patch) | |
tree | 7ebdb3326826537aa8a343d2af3e345f7c84706f /migration/ram.c | |
parent | 8c70c1b0c79cdfe9cc6e58c793b2b4e41aabede8 (diff) | |
download | qemu-a1febc4950f2c6232c002f401d7cd409f6fa6a88.zip qemu-a1febc4950f2c6232c002f401d7cd409f6fa6a88.tar.gz qemu-a1febc4950f2c6232c002f401d7cd409f6fa6a88.tar.bz2 |
cutils: Export only buffer_is_zero
Since the two users don't make use of the returned offset,
beyond ensuring that the entire buffer is zero, consider the
can_use_buffer_find_nonzero_offset and buffer_find_nonzero_offset
functions internal.
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Message-Id: <1472496380-19706-4-git-send-email-rth@twiddle.net>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'migration/ram.c')
-rw-r--r-- | migration/ram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/ram.c b/migration/ram.c index a3d70c4..a6e1c63 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -73,7 +73,7 @@ static const uint8_t ZERO_TARGET_PAGE[TARGET_PAGE_SIZE]; static inline bool is_zero_range(uint8_t *p, uint64_t size) { - return buffer_find_nonzero_offset(p, size) == size; + return buffer_is_zero(p, size); } /* struct contains XBZRLE cache and a static page |