summaryrefslogtreecommitdiffstats
path: root/results/classifier/deepseek-2-tmp/output/device/1460
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
commitd0c85e36e4de67af628d54e9ab577cc3fad7796a (patch)
treef8f784b0f04343b90516a338d6df81df3a85dfa2 /results/classifier/deepseek-2-tmp/output/device/1460
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloademulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
emulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/deepseek-2-tmp/output/device/1460')
-rw-r--r--results/classifier/deepseek-2-tmp/output/device/14606
1 files changed, 0 insertions, 6 deletions
diff --git a/results/classifier/deepseek-2-tmp/output/device/1460 b/results/classifier/deepseek-2-tmp/output/device/1460
deleted file mode 100644
index dcf6aea3..00000000
--- a/results/classifier/deepseek-2-tmp/output/device/1460
+++ /dev/null
@@ -1,6 +0,0 @@
-
-block_load fails if last block is included in snapshot and block device isn't multiple of BLK_MIG_BLOCK_SIZE
-Description of problem:
-The `block_load` function in `migration/block.c` has a bug where `blk_pwrite` or `blk_pwrite_zeroes` always write `cluster_size` bytes. If the underlying device is not a multiple of `BLK_MIG_BLOCK_SIZE`, the write will fail with -EIO when trying to write past the end of the device, as `blk_check_byte_request` checks the length of the device.
-
-This can be fixed by ensuring that `cur_addr` + write length passed to `blk_pwrite`/`blk_pwrite_zeroes` never exceeds the total length of the block device.