btrfs: Replace opencoded sizes with their symbolic constants
authorNikolay Borisov <nborisov@suse.com>
Mon, 16 Oct 2017 13:48:40 +0000 (16:48 +0300)
committerDavid Sterba <dsterba@suse.com>
Mon, 30 Oct 2017 11:28:01 +0000 (12:28 +0100)
Currently btrfs' code uses a mix of opencoded sizes and defines from sizes.h.
Let's unifiy the code base to always use the symbolic constants. No functional
changes

Signed-off-by: Nikolay Borisov <nborisov@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/ctree.h
fs/btrfs/disk-io.c
fs/btrfs/super.c
fs/btrfs/tests/inode-tests.c

index e2afe524e25ea4d377bf769746a946c3912852da..7bda8429e93fa8da8f5735d786c71e33fed530b6 100644 (file)
@@ -523,7 +523,7 @@ struct btrfs_caching_control {
 };
 
 /* Once caching_thread() finds this much free space, it will wake up waiters. */
-#define CACHING_CTL_WAKE_UP (1024 * 1024 * 2)
+#define CACHING_CTL_WAKE_UP SZ_2M
 
 struct btrfs_io_ctl {
        void *cur, *orig;
index 69ce738c00d0052ffa9a8632bdb3827e5e8a56cf..484cf8fc952c4300e0d2a8118bc2eaf82f622216 100644 (file)
@@ -2733,7 +2733,7 @@ int open_ctree(struct super_block *sb,
        sb->s_bdi->congested_fn = btrfs_congested_fn;
        sb->s_bdi->congested_data = fs_info;
        sb->s_bdi->capabilities |= BDI_CAP_CGROUP_WRITEBACK;
-       sb->s_bdi->ra_pages = VM_MAX_READAHEAD * 1024 / PAGE_SIZE;
+       sb->s_bdi->ra_pages = VM_MAX_READAHEAD * SZ_1K / PAGE_SIZE;
        sb->s_bdi->ra_pages *= btrfs_super_num_devices(disk_super);
        sb->s_bdi->ra_pages = max(sb->s_bdi->ra_pages, SZ_4M / PAGE_SIZE);
 
index 880ab4949f698b370121304fc8775c744511899c..4fb7eefb80aeca073b5bd15b8a4048eb796c8ee8 100644 (file)
@@ -2126,7 +2126,7 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
         * succeed even if the Avail is zero. But this is better than the other
         * way around.
         */
-       thresh = 4 * 1024 * 1024;
+       thresh = SZ_4M;
 
        if (!mixed && total_free_meta - thresh < block_rsv->size)
                buf->f_bavail = 0;
index 8c91d03cc82d8ad8e7af2facb39f82c10c4bca10..330815eb07b40f681c698c7bcce6f064622082ee 100644 (file)
@@ -770,7 +770,7 @@ static noinline int test_btrfs_get_extent(u32 sectorsize, u32 nodesize)
        offset = em->start + em->len;
        free_extent_map(em);
 
-       em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, offset, 4096 * 1024, 0);
+       em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, offset, SZ_4M, 0);
        if (IS_ERR(em)) {
                test_msg("Got an error when we shouldn't have\n");
                goto out;