[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200127101343.20415-13-pragat.pandya@gmail.com>
Date: Mon, 27 Jan 2020 15:43:33 +0530
From: Pragat Pandya <pragat.pandya@...il.com>
To: valdis.kletnieks@...edu, gregkh@...uxfoundation.org
Cc: linux-fsdevel@...r.kernel.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org,
linux-kernel-mentees@...ts.linuxfoundation.org,
skhan@...uxfoundation.org, Pragat Pandya <pragat.pandya@...il.com>
Subject: [PATCH 12/22] staging: exfat: Rename variable "ClusterSize" to "cluster_size"
Change all the occurrences of "ClusterSize" to "cluster_size" in exfat.
Signed-off-by: Pragat Pandya <pragat.pandya@...il.com>
---
drivers/staging/exfat/exfat.h | 2 +-
drivers/staging/exfat/exfat_super.c | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/exfat/exfat.h b/drivers/staging/exfat/exfat.h
index 8a4668d301fc..8787cb3203ba 100644
--- a/drivers/staging/exfat/exfat.h
+++ b/drivers/staging/exfat/exfat.h
@@ -243,7 +243,7 @@ struct dev_info_t {
struct vol_info_t {
u32 fat_type;
- u32 ClusterSize;
+ u32 cluster_size;
u32 NumClusters;
u32 FreeClusters;
u32 UsedClusters;
diff --git a/drivers/staging/exfat/exfat_super.c b/drivers/staging/exfat/exfat_super.c
index 695c8793fe5f..b9445bef0e6d 100644
--- a/drivers/staging/exfat/exfat_super.c
+++ b/drivers/staging/exfat/exfat_super.c
@@ -495,7 +495,7 @@ static int ffsGetVolInfo(struct super_block *sb, struct vol_info_t *info)
p_fs->used_clusters = p_fs->fs_func->count_used_clusters(sb);
info->fat_type = p_fs->vol_type;
- info->ClusterSize = p_fs->cluster_size;
+ info->cluster_size = p_fs->cluster_size;
info->NumClusters = p_fs->num_clusters - 2; /* clu 0 & 1 */
info->UsedClusters = p_fs->used_clusters;
info->FreeClusters = info->NumClusters - info->UsedClusters;
@@ -3349,7 +3349,7 @@ static int exfat_statfs(struct dentry *dentry, struct kstatfs *buf)
} else {
info.fat_type = p_fs->vol_type;
- info.ClusterSize = p_fs->cluster_size;
+ info.cluster_size = p_fs->cluster_size;
info.NumClusters = p_fs->num_clusters - 2;
info.UsedClusters = p_fs->used_clusters;
info.FreeClusters = info.NumClusters - info.UsedClusters;
@@ -3359,7 +3359,7 @@ static int exfat_statfs(struct dentry *dentry, struct kstatfs *buf)
}
buf->f_type = sb->s_magic;
- buf->f_bsize = info.ClusterSize;
+ buf->f_bsize = info.cluster_size;
buf->f_blocks = info.NumClusters;
buf->f_bfree = info.FreeClusters;
buf->f_bavail = info.FreeClusters;
--
2.17.1
Powered by blists - more mailing lists