diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-03 12:04:13 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-03 12:04:13 +0000 |
| commit | 256709d2eb3fd80d768a99964be5caa61effa2a0 (patch) | |
| tree | 05b2352fba70923126836a64b6a0de43902e976a /results/classifier/105/mistranslation/1036987 | |
| parent | 2ab14fa96a6c5484b5e4ba8337551bb8dcc79cc5 (diff) | |
| download | emulator-bug-study-256709d2eb3fd80d768a99964be5caa61effa2a0.tar.gz emulator-bug-study-256709d2eb3fd80d768a99964be5caa61effa2a0.zip | |
add new classifier result
Diffstat (limited to 'results/classifier/105/mistranslation/1036987')
| -rw-r--r-- | results/classifier/105/mistranslation/1036987 | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/results/classifier/105/mistranslation/1036987 b/results/classifier/105/mistranslation/1036987 new file mode 100644 index 00000000..50013dfd --- /dev/null +++ b/results/classifier/105/mistranslation/1036987 @@ -0,0 +1,62 @@ +mistranslation: 0.885 +graphic: 0.824 +other: 0.782 +network: 0.769 +instruction: 0.765 +socket: 0.751 +semantic: 0.712 +device: 0.692 +KVM: 0.646 +vnc: 0.618 +boot: 0.514 +assembly: 0.504 + +compilation error due to bug in savevm.c + +Since + +302dfbeb21fc5154c24ca50d296e865a3778c7da + +Add xbzrle_encode_buffer and xbzrle_decode_buffer functions + + For performance we are encoding long word at a time. + For nzrun we use long-word-at-a-time NULL-detection tricks from strcmp(): + using ((lword - 0x0101010101010101) & (~lword) & 0x8080808080808080) test + to find out if any byte in the long word is zero. + + Signed-off-by: Benoit Hudzia <email address hidden> + Signed-off-by: Petter Svard <email address hidden> + Signed-off-by: Aidan Shribman <email address hidden> + Signed-off-by: Orit Wasserman <email address hidden> + Signed-off-by: Eric Blake <email address hidden> + + Reviewed-by: Luiz Capitulino <email address hidden> + Reviewed-by: Eric Blake <email address hidden> + + commit arrived into master barnch, I can't compile qemu at all: + +savevm.c:2476:13: error: overflow in implicit constant conversion [-Werror=overflow] + +Patch is available at http://patchwork.ozlabs.org/patch/177217/ + +On 15 August 2012 08:44, Evgeny Voevodin <email address hidden> wrote: +> Since +> +> 302dfbeb21fc5154c24ca50d296e865a3778c7da +> +> Add xbzrle_encode_buffer and xbzrle_decode_buffer functions +> commit arrived into master barnch, I can't compile qemu at all: +> +> savevm.c:2476:13: error: overflow in implicit constant conversion +> [-Werror=overflow] + +Fixed by this patch by Alex yesterday: + http://patchwork.ozlabs.org/patch/177217/ + +(not yet in master) + +-- PMM + + +http://git.qemu.org/?p=qemu.git;a=commitdiff;h=a5b71725c7067f6805eb30 + |