All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] mkfs.f2fs: make extensions list easier to read
@ 2019-04-16  6:43 Park Ju Hyung
  2019-04-16  6:43 ` [PATCH 2/2] mkfs.f2fs: make the default extensions list much more sensical Park Ju Hyung
  2019-04-17  9:33 ` [PATCH 1/2] mkfs.f2fs: make extensions list easier to read Chao Yu
  0 siblings, 2 replies; 13+ messages in thread
From: Park Ju Hyung @ 2019-04-16  6:43 UTC (permalink / raw)
  To: linux-f2fs-devel

Reorder the list and categorize.
No functional change introduced.

Signed-off-by: Park Ju Hyung <qkrwngud825@gmail.com>
---
 mkfs/f2fs_format.c | 32 +++++++++++++++++++++-----------
 1 file changed, 21 insertions(+), 11 deletions(-)

diff --git a/mkfs/f2fs_format.c b/mkfs/f2fs_format.c
index a2685cb..0ae0df3 100644
--- a/mkfs/f2fs_format.c
+++ b/mkfs/f2fs_format.c
@@ -38,19 +38,13 @@ struct f2fs_checkpoint *cp;
 static unsigned int quotatype_bits = 0;
 
 const char *media_ext_lists[] = {
-	"jpg",
-	"gif",
-	"png",
+	/* video */
 	"avi",
 	"divx",
-	"m4a",
 	"m4v",
 	"m4p",
 	"mp4",
-	"mp3",
-	"3gp",
 	"wmv",
-	"wma",
 	"mpeg",
 	"mkv",
 	"mov",
@@ -59,19 +53,35 @@ const char *media_ext_lists[] = {
 	"wmx",
 	"svi",
 	"wvx",
-	"wv",
 	"wm",
 	"mpg",
 	"mpe",
 	"rm",
+	"video",
+
+	/* audio */
+	"m4a",
+	"mp3",
+	"3gp",
+	"wma",
+	"wv",
 	"ogg",
 	"opus",
 	"flac",
+
+	/* image */
 	"jpeg",
-	"video",
-	"apk",	/* for android system */
-	"so",	/* for android system */
+	"jpg",
+	"gif",
+	"png",
+
+	/* other */
 	"exe",
+
+	/* android */
+	"apk",
+	"so",
+
 	NULL
 };
 
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2019-05-29  1:57 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-16  6:43 [PATCH 1/2] mkfs.f2fs: make extensions list easier to read Park Ju Hyung
2019-04-16  6:43 ` [PATCH 2/2] mkfs.f2fs: make the default extensions list much more sensical Park Ju Hyung
2019-04-16  6:49   ` Ju Hyung Park
2019-04-16 20:39     ` Jaegeuk Kim
2019-04-17  7:14       ` Ju Hyung Park
2019-04-17  9:41   ` Chao Yu
2019-04-17  9:54     ` Ju Hyung Park
2019-04-17 10:44       ` Chao Yu
2019-04-20  2:14   ` Chao Yu
2019-05-28 10:19   ` Chao Yu
2019-05-28 10:28     ` Ju Hyung Park
2019-05-29  1:57       ` Chao Yu
2019-04-17  9:33 ` [PATCH 1/2] mkfs.f2fs: make extensions list easier to read Chao Yu

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.