]> Git Repo - qemu.git/commitdiff
block: Use DIV_ROUND_UP
authorLaurent Vivier <[email protected]>
Tue, 31 May 2016 16:35:54 +0000 (18:35 +0200)
committerMichael Tokarev <[email protected]>
Tue, 7 Jun 2016 15:19:24 +0000 (18:19 +0300)
Replace (((n) + (d) - 1) /(d)) by DIV_ROUND_UP(n,d).

This patch is the result of coccinelle script
scripts/coccinelle/round.cocci

CC: [email protected]
Signed-off-by: Laurent Vivier <[email protected]>
Reviewed-by: Eric Blake <[email protected]>
Signed-off-by: Michael Tokarev <[email protected]>
block/vvfat.c
hw/block/tc58128.c

index a39dbe67e20f071296160714450eb3aaa60f5b61..6d2e21ce11ca1e46a4072d83b5085c25eabaab3d 100644 (file)
@@ -1960,8 +1960,7 @@ DLOG(fprintf(stderr, "check direntry %d:\n", i); print_direntry(direntries + i))
                /* check file size with FAT */
                cluster_count = get_cluster_count_for_direntry(s, direntries + i, path2);
                if (cluster_count !=
-                       (le32_to_cpu(direntries[i].size) + s->cluster_size
-                        - 1) / s->cluster_size) {
+            DIV_ROUND_UP(le32_to_cpu(direntries[i].size), s->cluster_size)) {
                    DLOG(fprintf(stderr, "Cluster count mismatch\n"));
                    goto fail;
                }
index 7909d5041ec149d9c78442940618ae0112978f3c..1d9f7ee000689d401a1058d11c5f7d6e8ca90c3f 100644 (file)
@@ -45,7 +45,7 @@ static void init_dev(tc58128_dev * dev, const char *filename)
             }
        } else {
            /* Build first block with number of blocks */
-           blocks = (ret + 528 * 32 - 1) / (528 * 32);
+            blocks = DIV_ROUND_UP(ret, 528 * 32);
            dev->flash_contents[0] = blocks & 0xff;
            dev->flash_contents[1] = (blocks >> 8) & 0xff;
            dev->flash_contents[2] = (blocks >> 16) & 0xff;
This page took 0.031613 seconds and 4 git commands to generate.