All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pragat Pandya <pragat.pandya@gmail.com>
To: valdis.kletnieks@vt.edu, gregkh@linuxfoundation.org
Cc: linux-fsdevel@vger.kernel.org, devel@driverdev.osuosl.org,
	linux-kernel@vger.kernel.org,
	linux-kernel-mentees@lists.linuxfoundation.org,
	skhan@linuxfoundation.org,
	Pragat Pandya <pragat.pandya@gmail.com>
Subject: [PATCH 13/22] staging: exfat: Rename variable "NumClusters" to "num_clusters"
Date: Mon, 27 Jan 2020 15:43:34 +0530	[thread overview]
Message-ID: <20200127101343.20415-14-pragat.pandya@gmail.com> (raw)
In-Reply-To: <20200127101343.20415-1-pragat.pandya@gmail.com>

Change all the occurreces of "NumClusters" to "num_clusters" in exfat.

Signed-off-by: Pragat Pandya <pragat.pandya@gmail.com>
---
 drivers/staging/exfat/exfat.h       |  2 +-
 drivers/staging/exfat/exfat_super.c | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/exfat/exfat.h b/drivers/staging/exfat/exfat.h
index 8787cb3203ba..36baa4c9a98a 100644
--- a/drivers/staging/exfat/exfat.h
+++ b/drivers/staging/exfat/exfat.h
@@ -244,7 +244,7 @@ struct dev_info_t {
 struct vol_info_t {
 	u32      fat_type;
 	u32      cluster_size;
-	u32      NumClusters;
+	u32      num_clusters;
 	u32      FreeClusters;
 	u32      UsedClusters;
 };
diff --git a/drivers/staging/exfat/exfat_super.c b/drivers/staging/exfat/exfat_super.c
index b9445bef0e6d..c5edf09f1123 100644
--- a/drivers/staging/exfat/exfat_super.c
+++ b/drivers/staging/exfat/exfat_super.c
@@ -496,9 +496,9 @@ static int ffsGetVolInfo(struct super_block *sb, struct vol_info_t *info)
 
 	info->fat_type = p_fs->vol_type;
 	info->cluster_size = p_fs->cluster_size;
-	info->NumClusters = p_fs->num_clusters - 2; /* clu 0 & 1 */
+	info->num_clusters = p_fs->num_clusters - 2; /* clu 0 & 1 */
 	info->UsedClusters = p_fs->used_clusters;
-	info->FreeClusters = info->NumClusters - info->UsedClusters;
+	info->FreeClusters = info->num_clusters - info->UsedClusters;
 
 	if (p_fs->dev_ejected)
 		err = -EIO;
@@ -3350,9 +3350,9 @@ static int exfat_statfs(struct dentry *dentry, struct kstatfs *buf)
 	} else {
 		info.fat_type = p_fs->vol_type;
 		info.cluster_size = p_fs->cluster_size;
-		info.NumClusters = p_fs->num_clusters - 2;
+		info.num_clusters = p_fs->num_clusters - 2;
 		info.UsedClusters = p_fs->used_clusters;
-		info.FreeClusters = info.NumClusters - info.UsedClusters;
+		info.FreeClusters = info.num_clusters - info.UsedClusters;
 
 		if (p_fs->dev_ejected)
 			pr_info("[EXFAT] statfs on device that is ejected\n");
@@ -3360,7 +3360,7 @@ static int exfat_statfs(struct dentry *dentry, struct kstatfs *buf)
 
 	buf->f_type = sb->s_magic;
 	buf->f_bsize = info.cluster_size;
-	buf->f_blocks = info.NumClusters;
+	buf->f_blocks = info.num_clusters;
 	buf->f_bfree = info.FreeClusters;
 	buf->f_bavail = info.FreeClusters;
 	buf->f_fsid.val[0] = (u32)id;
-- 
2.17.1


WARNING: multiple messages have this Message-ID (diff)
From: Pragat Pandya <pragat.pandya@gmail.com>
To: valdis.kletnieks@vt.edu, gregkh@linuxfoundation.org
Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org,
	skhan@linuxfoundation.org, linux-fsdevel@vger.kernel.org,
	linux-kernel-mentees@lists.linuxfoundation.org
Subject: [PATCH 13/22] staging: exfat: Rename variable "NumClusters" to "num_clusters"
Date: Mon, 27 Jan 2020 15:43:34 +0530	[thread overview]
Message-ID: <20200127101343.20415-14-pragat.pandya@gmail.com> (raw)
In-Reply-To: <20200127101343.20415-1-pragat.pandya@gmail.com>

Change all the occurreces of "NumClusters" to "num_clusters" in exfat.

Signed-off-by: Pragat Pandya <pragat.pandya@gmail.com>
---
 drivers/staging/exfat/exfat.h       |  2 +-
 drivers/staging/exfat/exfat_super.c | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/exfat/exfat.h b/drivers/staging/exfat/exfat.h
index 8787cb3203ba..36baa4c9a98a 100644
--- a/drivers/staging/exfat/exfat.h
+++ b/drivers/staging/exfat/exfat.h
@@ -244,7 +244,7 @@ struct dev_info_t {
 struct vol_info_t {
 	u32      fat_type;
 	u32      cluster_size;
-	u32      NumClusters;
+	u32      num_clusters;
 	u32      FreeClusters;
 	u32      UsedClusters;
 };
diff --git a/drivers/staging/exfat/exfat_super.c b/drivers/staging/exfat/exfat_super.c
index b9445bef0e6d..c5edf09f1123 100644
--- a/drivers/staging/exfat/exfat_super.c
+++ b/drivers/staging/exfat/exfat_super.c
@@ -496,9 +496,9 @@ static int ffsGetVolInfo(struct super_block *sb, struct vol_info_t *info)
 
 	info->fat_type = p_fs->vol_type;
 	info->cluster_size = p_fs->cluster_size;
-	info->NumClusters = p_fs->num_clusters - 2; /* clu 0 & 1 */
+	info->num_clusters = p_fs->num_clusters - 2; /* clu 0 & 1 */
 	info->UsedClusters = p_fs->used_clusters;
-	info->FreeClusters = info->NumClusters - info->UsedClusters;
+	info->FreeClusters = info->num_clusters - info->UsedClusters;
 
 	if (p_fs->dev_ejected)
 		err = -EIO;
@@ -3350,9 +3350,9 @@ static int exfat_statfs(struct dentry *dentry, struct kstatfs *buf)
 	} else {
 		info.fat_type = p_fs->vol_type;
 		info.cluster_size = p_fs->cluster_size;
-		info.NumClusters = p_fs->num_clusters - 2;
+		info.num_clusters = p_fs->num_clusters - 2;
 		info.UsedClusters = p_fs->used_clusters;
-		info.FreeClusters = info.NumClusters - info.UsedClusters;
+		info.FreeClusters = info.num_clusters - info.UsedClusters;
 
 		if (p_fs->dev_ejected)
 			pr_info("[EXFAT] statfs on device that is ejected\n");
@@ -3360,7 +3360,7 @@ static int exfat_statfs(struct dentry *dentry, struct kstatfs *buf)
 
 	buf->f_type = sb->s_magic;
 	buf->f_bsize = info.cluster_size;
-	buf->f_blocks = info.NumClusters;
+	buf->f_blocks = info.num_clusters;
 	buf->f_bfree = info.FreeClusters;
 	buf->f_bavail = info.FreeClusters;
 	buf->f_fsid.val[0] = (u32)id;
-- 
2.17.1

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

WARNING: multiple messages have this Message-ID (diff)
From: Pragat Pandya <pragat.pandya@gmail.com>
To: valdis.kletnieks@vt.edu, gregkh@linuxfoundation.org
Cc: devel@driverdev.osuosl.org,
	Pragat Pandya <pragat.pandya@gmail.com>,
	linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org,
	linux-kernel-mentees@lists.linuxfoundation.org
Subject: [Linux-kernel-mentees] [PATCH 13/22] staging: exfat: Rename variable "NumClusters" to "num_clusters"
Date: Mon, 27 Jan 2020 15:43:34 +0530	[thread overview]
Message-ID: <20200127101343.20415-14-pragat.pandya@gmail.com> (raw)
In-Reply-To: <20200127101343.20415-1-pragat.pandya@gmail.com>

Change all the occurreces of "NumClusters" to "num_clusters" in exfat.

Signed-off-by: Pragat Pandya <pragat.pandya@gmail.com>
---
 drivers/staging/exfat/exfat.h       |  2 +-
 drivers/staging/exfat/exfat_super.c | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/exfat/exfat.h b/drivers/staging/exfat/exfat.h
index 8787cb3203ba..36baa4c9a98a 100644
--- a/drivers/staging/exfat/exfat.h
+++ b/drivers/staging/exfat/exfat.h
@@ -244,7 +244,7 @@ struct dev_info_t {
 struct vol_info_t {
 	u32      fat_type;
 	u32      cluster_size;
-	u32      NumClusters;
+	u32      num_clusters;
 	u32      FreeClusters;
 	u32      UsedClusters;
 };
diff --git a/drivers/staging/exfat/exfat_super.c b/drivers/staging/exfat/exfat_super.c
index b9445bef0e6d..c5edf09f1123 100644
--- a/drivers/staging/exfat/exfat_super.c
+++ b/drivers/staging/exfat/exfat_super.c
@@ -496,9 +496,9 @@ static int ffsGetVolInfo(struct super_block *sb, struct vol_info_t *info)
 
 	info->fat_type = p_fs->vol_type;
 	info->cluster_size = p_fs->cluster_size;
-	info->NumClusters = p_fs->num_clusters - 2; /* clu 0 & 1 */
+	info->num_clusters = p_fs->num_clusters - 2; /* clu 0 & 1 */
 	info->UsedClusters = p_fs->used_clusters;
-	info->FreeClusters = info->NumClusters - info->UsedClusters;
+	info->FreeClusters = info->num_clusters - info->UsedClusters;
 
 	if (p_fs->dev_ejected)
 		err = -EIO;
@@ -3350,9 +3350,9 @@ static int exfat_statfs(struct dentry *dentry, struct kstatfs *buf)
 	} else {
 		info.fat_type = p_fs->vol_type;
 		info.cluster_size = p_fs->cluster_size;
-		info.NumClusters = p_fs->num_clusters - 2;
+		info.num_clusters = p_fs->num_clusters - 2;
 		info.UsedClusters = p_fs->used_clusters;
-		info.FreeClusters = info.NumClusters - info.UsedClusters;
+		info.FreeClusters = info.num_clusters - info.UsedClusters;
 
 		if (p_fs->dev_ejected)
 			pr_info("[EXFAT] statfs on device that is ejected\n");
@@ -3360,7 +3360,7 @@ static int exfat_statfs(struct dentry *dentry, struct kstatfs *buf)
 
 	buf->f_type = sb->s_magic;
 	buf->f_bsize = info.cluster_size;
-	buf->f_blocks = info.NumClusters;
+	buf->f_blocks = info.num_clusters;
 	buf->f_bfree = info.FreeClusters;
 	buf->f_bavail = info.FreeClusters;
 	buf->f_fsid.val[0] = (u32)id;
-- 
2.17.1

_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

  parent reply	other threads:[~2020-01-27 10:15 UTC|newest]

Thread overview: 162+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-27 10:13 [PATCH 00/22] staging: exfat: Fix checkpatch warning: Avoid Pragat Pandya
2020-01-27 10:13 ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13 ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 01/22] staging: exfat: Rename variable "Year" to "year" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 02/22] staging: exfat: Rename variable "Month" to "mont"h Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-02-07  9:46   ` Greg KH
2020-02-07  9:46     ` [Linux-kernel-mentees] " Greg KH
2020-02-07  9:46     ` Greg KH
2020-02-10 18:35     ` [PATCH v2 00/19] Renaming some identifiers Pragat Pandya
2020-02-10 18:35       ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35       ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 01/19] staging: exfat: Rename variable 'Year' to 'year' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 02/19] staging: exfat: Rename variable 'Month' to 'month' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 03/19] staging: exfat: Rename variable 'Day' to 'day' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 04/19] staging: exfat: Rename variable 'Hour' to 'hour' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 05/19] staging: exfat: Rename variable 'Minute' to 'minute' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 06/19] staging: exfat: Rename variable 'Second' to 'second' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 07/19] staging: exfat: Rename variable 'MilliSecond' to 'millisecond' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 08/19] staging: exfat: Rename variable 'FatType' to 'fat_type' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 09/19] staging: exfat: Rename variable 'ClusterSize' to 'cluster_size' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 10/19] staging: exfat: Rename variable 'NumClusters' to 'num_clusters' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 11/19] staging: exfat: Rename variable 'FreeClusters' to 'free_clusters' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 12/19] staging: exfat: Rename variable 'UsedClusters' to 'used_clusters' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 13/19] staging: exfat: Rename variable 'Name' to 'name' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 14/19] staging: exfat: Rename variable 'ShortName' to 'short_name' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 15/19] staging: exfat: Rename variable 'Attr' to 'attr' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 16/19] staging: exfat: Rename variable 'NumSubdirs' to 'num_subdirs' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 17/19] staging: exfat: Rename variable 'CreateTimestamp' to 'create_timestamp' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 18/19] staging: exfat: Rename variable 'ModifyTimestamp' to 'modify_timestamp' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-10 18:35       ` [PATCH v2 19/19] staging: exfat: Rename variable 'AccessTimestamp' to 'access_timestamp' Pragat Pandya
2020-02-10 18:35         ` [Linux-kernel-mentees] " Pragat Pandya
2020-02-10 18:35         ` Pragat Pandya
2020-02-11 19:26       ` [PATCH v2 00/19] Renaming some identifiers Greg KH
2020-02-11 19:26         ` [Linux-kernel-mentees] " Greg KH
2020-02-11 19:26         ` Greg KH
2020-01-27 10:13 ` [PATCH 03/22] staging: exfat: Rename variable "Day" to "day" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 04/22] staging: exfat: Rename variable "Hour" to "hour" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 05/22] staging: exfat: Rename variable "Minute" to "minute" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 06/22] staging: exfat: Rename variable "Second" to "second" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 07/22] staging: exfat: Rename variable "MilliSecond" to "milli_second" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 11:55   ` Dan Carpenter
2020-01-27 11:55     ` [Linux-kernel-mentees] " Dan Carpenter
2020-01-27 11:55     ` Dan Carpenter
2020-01-27 13:22     ` Greg KH
2020-01-27 13:22       ` [Linux-kernel-mentees] " Greg KH
2020-01-27 13:22       ` Greg KH
2020-02-11 21:44     ` Joe Perches
2020-02-11 21:44       ` [Linux-kernel-mentees] " Joe Perches
2020-02-11 21:44       ` Joe Perches
2020-01-27 10:13 ` [PATCH 08/22] staging: exfat: Rename variable "Offset" to "offset" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 09/22] staging: exfat: Rename variable "Size" to "size" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 11:57   ` Dan Carpenter
2020-01-27 11:57     ` [Linux-kernel-mentees] " Dan Carpenter
2020-01-27 11:57     ` Dan Carpenter
2020-01-29 10:40     ` Pragat Pandya
2020-01-29 10:40       ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-29 10:40       ` Pragat Pandya
2020-01-29 10:50       ` Greg KH
2020-01-29 10:50         ` [Linux-kernel-mentees] " Greg KH
2020-01-29 10:50         ` Greg KH
2020-01-29 10:58         ` Pragat Pandya
2020-01-29 10:58           ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-29 10:58           ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 10/22] staging: exfat: Rename variable "SecSize" to "sec_size" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 11:59   ` Dan Carpenter
2020-01-27 11:59     ` [Linux-kernel-mentees] " Dan Carpenter
2020-01-27 11:59     ` Dan Carpenter
2020-01-27 13:22   ` Greg KH
2020-01-27 13:22     ` [Linux-kernel-mentees] " Greg KH
2020-01-27 13:22     ` Greg KH
2020-01-27 10:13 ` [PATCH 11/22] staging: exfat: Rename variable "FatType" to "fat_type" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 12/22] staging: exfat: Rename variable "ClusterSize" to "cluster_size" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` Pragat Pandya [this message]
2020-01-27 10:13   ` [Linux-kernel-mentees] [PATCH 13/22] staging: exfat: Rename variable "NumClusters" to "num_clusters" Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 14/22] staging: exfat: Rename variable "FreeClusters" to "free_clusters" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 15/22] staging: exfat: Rename variable "UsedClusters" to "used_clusters" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 16/22] staging: exfat: Rename variable "Name" to "name" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 17/22] staging: exfat: Rename variable "ShortName" to "short_name" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 18/22] staging: exfat: Rename variable "Attr" to "attr" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 19/22] staging: exfat: Rename variabel "NumSubdirs" to "num_subdirs" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 20/22] staging: exfat: Rename variabel "CreateTimestamp" to "create_timestamp" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 21/22] staging: exfat: Rename variable "ModifyTimestamp" to "modify_timestamp" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya
2020-01-27 10:13 ` [PATCH 22/22] staging: exfat: Rename variable "AccessTimestamp" to "access_timestamp" Pragat Pandya
2020-01-27 10:13   ` [Linux-kernel-mentees] " Pragat Pandya
2020-01-27 10:13   ` Pragat Pandya

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200127101343.20415-14-pragat.pandya@gmail.com \
    --to=pragat.pandya@gmail.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel-mentees@lists.linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=skhan@linuxfoundation.org \
    --cc=valdis.kletnieks@vt.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.