staging: exfat: use integer constants
authorValentin Vidic <vvidic@valentin-vidic.from.hr>
Sun, 8 Sep 2019 15:26:16 +0000 (15:26 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 12 Sep 2019 09:25:05 +0000 (10:25 +0100)
Replace manually generated values with predefined constants.

Signed-off-by: Valentin Vidic <vvidic@valentin-vidic.from.hr>
Link: https://lore.kernel.org/r/20190908152616.25459-3-vvidic@valentin-vidic.from.hr
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/exfat/exfat_core.c
drivers/staging/exfat/exfat_super.c

index 8965e8453fcb5c440e8853c0c488a05d1a8a74ef..6eee2aa06bd7bef4223838ff319ed5db168a8a88 100644 (file)
@@ -204,7 +204,7 @@ s32 fat_alloc_cluster(struct super_block *sb, s32 num_alloc,
 
                        if ((--num_alloc) == 0) {
                                p_fs->clu_srch_ptr = new_clu;
-                               if (p_fs->used_clusters != (u32)~0)
+                               if (p_fs->used_clusters != UINT_MAX)
                                        p_fs->used_clusters += num_clusters;
 
                                return num_clusters;
@@ -215,7 +215,7 @@ s32 fat_alloc_cluster(struct super_block *sb, s32 num_alloc,
        }
 
        p_fs->clu_srch_ptr = new_clu;
-       if (p_fs->used_clusters != (u32)~0)
+       if (p_fs->used_clusters != UINT_MAX)
                p_fs->used_clusters += num_clusters;
 
        return num_clusters;
@@ -273,7 +273,7 @@ s32 exfat_alloc_cluster(struct super_block *sb, s32 num_alloc,
 
                if ((--num_alloc) == 0) {
                        p_fs->clu_srch_ptr = hint_clu;
-                       if (p_fs->used_clusters != (u32)~0)
+                       if (p_fs->used_clusters != UINT_MAX)
                                p_fs->used_clusters += num_clusters;
 
                        p_chain->size += num_clusters;
@@ -293,7 +293,7 @@ s32 exfat_alloc_cluster(struct super_block *sb, s32 num_alloc,
        }
 
        p_fs->clu_srch_ptr = hint_clu;
-       if (p_fs->used_clusters != (u32)~0)
+       if (p_fs->used_clusters != UINT_MAX)
                p_fs->used_clusters += num_clusters;
 
        p_chain->size += num_clusters;
@@ -337,7 +337,7 @@ void fat_free_cluster(struct super_block *sb, struct chain_t *p_chain,
 
        } while (clu != CLUSTER_32(~0));
 
-       if (p_fs->used_clusters != (u32)~0)
+       if (p_fs->used_clusters != UINT_MAX)
                p_fs->used_clusters -= num_clusters;
 }
 
@@ -396,7 +396,7 @@ void exfat_free_cluster(struct super_block *sb, struct chain_t *p_chain,
                } while ((clu != CLUSTER_32(0)) && (clu != CLUSTER_32(~0)));
        }
 
-       if (p_fs->used_clusters != (u32)~0)
+       if (p_fs->used_clusters != UINT_MAX)
                p_fs->used_clusters -= num_clusters;
 }
 
@@ -3064,7 +3064,7 @@ s32 fat16_mount(struct super_block *sb, struct pbr_sector_t *p_pbr)
 
        p_fs->vol_flag = VOL_CLEAN;
        p_fs->clu_srch_ptr = 2;
-       p_fs->used_clusters = (u32)~0;
+       p_fs->used_clusters = UINT_MAX;
 
        p_fs->fs_func = &fat_fs_func;
 
@@ -3117,7 +3117,7 @@ s32 fat32_mount(struct super_block *sb, struct pbr_sector_t *p_pbr)
 
        p_fs->vol_flag = VOL_CLEAN;
        p_fs->clu_srch_ptr = 2;
-       p_fs->used_clusters = (u32)~0;
+       p_fs->used_clusters = UINT_MAX;
 
        p_fs->fs_func = &fat_fs_func;
 
@@ -3192,7 +3192,7 @@ s32 exfat_mount(struct super_block *sb, struct pbr_sector_t *p_pbr)
 
        p_fs->vol_flag = (u32)GET16(p_bpb->vol_flags);
        p_fs->clu_srch_ptr = 2;
-       p_fs->used_clusters = (u32)~0;
+       p_fs->used_clusters = UINT_MAX;
 
        p_fs->fs_func = &exfat_fs_func;
 
index 1cb0ec06c54e631e99094128a90a49ec6ca69c4a..610f2068361131666a828f4bfd8a106e650c0bad 100644 (file)
@@ -502,7 +502,7 @@ static int ffsGetVolInfo(struct super_block *sb, struct vol_info_t *info)
        /* acquire the lock for file system critical section */
        down(&p_fs->v_sem);
 
-       if (p_fs->used_clusters == (u32)~0)
+       if (p_fs->used_clusters == UINT_MAX)
                p_fs->used_clusters = p_fs->fs_func->count_used_clusters(sb);
 
        info->FatType = p_fs->vol_type;
@@ -3503,7 +3503,7 @@ static int exfat_statfs(struct dentry *dentry, struct kstatfs *buf)
        struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info);
        struct vol_info_t info;
 
-       if (p_fs->used_clusters == (u32)~0) {
+       if (p_fs->used_clusters == UINT_MAX) {
                if (ffsGetVolInfo(sb, &info) == FFS_MEDIAERR)
                        return -EIO;
 
@@ -3678,7 +3678,7 @@ static int parse_options(char *options, int silent, int *debug,
        opts->fs_uid = current_uid();
        opts->fs_gid = current_gid();
        opts->fs_fmask = opts->fs_dmask = current->fs->umask;
-       opts->allow_utime = (unsigned short)-1;
+       opts->allow_utime = U16_MAX;
        opts->codepage = exfat_default_codepage;
        opts->iocharset = exfat_default_iocharset;
        opts->casesensitive = 0;
@@ -3770,7 +3770,7 @@ static int parse_options(char *options, int silent, int *debug,
        }
 
 out:
-       if (opts->allow_utime == (unsigned short)-1)
+       if (opts->allow_utime == U16_MAX)
                opts->allow_utime = ~opts->fs_dmask & 0022;
 
        return 0;