]> Git Repo - qemu.git/commitdiff
block/blklogwrites: Change log_sector_size from int64_t to uint64_t
authorAri Sundholm <[email protected]>
Wed, 4 Jul 2018 14:59:34 +0000 (17:59 +0300)
committerKevin Wolf <[email protected]>
Thu, 5 Jul 2018 08:50:20 +0000 (10:50 +0200)
This was a simple oversight when working on intermediate versions
of the original patch which introduced blklogwrites.

Signed-off-by: Ari Sundholm <[email protected]>
Signed-off-by: Kevin Wolf <[email protected]>
block/blklogwrites.c

index 47093fadd6ccd6308d051796fb5abe5b0eeac277..272e11a0217295eb57b1625f9208ffe37e36f804 100644 (file)
@@ -79,7 +79,7 @@ static int blk_log_writes_open(BlockDriverState *bs, QDict *options, int flags,
     QemuOpts *opts;
     Error *local_err = NULL;
     int ret;
-    int64_t log_sector_size;
+    uint64_t log_sector_size;
 
     opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort);
     qemu_opts_absorb_qdict(opts, options, &local_err);
@@ -101,11 +101,9 @@ static int blk_log_writes_open(BlockDriverState *bs, QDict *options, int flags,
     log_sector_size = qemu_opt_get_size(opts, "log-sector-size",
                                         BDRV_SECTOR_SIZE);
 
-    if (log_sector_size < 0 || log_sector_size > (1ull << 23) ||
-        !is_power_of_2(log_sector_size))
-    {
+    if (log_sector_size > (1ull << 23) || !is_power_of_2(log_sector_size)) {
         ret = -EINVAL;
-        error_setg(errp, "Invalid log sector size %"PRId64, log_sector_size);
+        error_setg(errp, "Invalid log sector size %"PRIu64, log_sector_size);
         goto fail;
     }
 
This page took 0.026444 seconds and 4 git commands to generate.