linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Namjae Jeon" <namjae.jeon@samsung.com>
To: "'Markus Elfring'" <Markus.Elfring@web.de>
Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org,
	"'Christoph Hellwig'" <hch@lst.de>,
	"'Greg Kroah-Hartman'" <gregkh@linuxfoundation.org>,
	"'Sungjong Seo'" <sj1557.seo@samsung.com>,
	"'Valdis Klētnieks'" <valdis.kletnieks@vt.edu>,
	linkinjeon@gmail.com, linux-fsdevel@vger.kernel.org
Subject: RE: [PATCH 01/13] exfat: add in-memory and on-disk structures and headers
Date: Mon, 18 Nov 2019 13:59:40 +0900	[thread overview]
Message-ID: <00ba01d59dcc$fc17e010$f447a030$@samsung.com> (raw)
In-Reply-To: <a4bd8e3e-fcdc-9739-5407-5345743fb0b9@web.de>

> …
> > +++ b/fs/exfat/exfat_fs.h
> > @@ -0,0 +1,533 @@
> …
> > +/* time modes */
> > +#define TM_CREATE		0
> > +#define TM_MODIFY		1
> …
> 
> Will it be helpful to work with more enumerations (besides
> “exfat_error_mode”)
> at such places?
Yep, Will fix it on V2.
Thanks for your review!
> 
> Regards,
> Markus



  reply	other threads:[~2019-11-18  4:59 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20191113082216epcas1p2e712c23c9524e04be624ccc822b59bf0@epcas1p2.samsung.com>
2019-11-13  8:17 ` [PATCH 00/13] add the latest exfat driver Namjae Jeon
     [not found]   ` <CGME20191113082217epcas1p29bd7fee47639305d21c39b25279e395e@epcas1p2.samsung.com>
2019-11-13  8:17     ` [PATCH 01/13] exfat: add in-memory and on-disk structures and headers Namjae Jeon
2019-11-17 12:25       ` Markus Elfring
2019-11-18  4:59         ` Namjae Jeon [this message]
     [not found]   ` <CGME20191113082217epcas1p3c3b7f8e686f04b61f2a9a2f623e2fe75@epcas1p3.samsung.com>
2019-11-13  8:17     ` [PATCH 02/13] exfat: add super block operations Namjae Jeon
2019-11-17 13:30       ` Markus Elfring
2019-11-18  5:01         ` Namjae Jeon
     [not found]   ` <CGME20191113082218epcas1p3f8c53e88210f97ba251c34a096fce63a@epcas1p3.samsung.com>
2019-11-13  8:17     ` [PATCH 03/13] exfat: add inode operations Namjae Jeon
2019-11-17 14:15       ` Markus Elfring
2019-11-18  5:04         ` Namjae Jeon
     [not found]   ` <CGME20191113082219epcas1p10d00012ae29f0e9d5074594717f8e03f@epcas1p1.samsung.com>
2019-11-13  8:17     ` [PATCH 04/13] exfat: add directory operations Namjae Jeon
     [not found]   ` <CGME20191113082219epcas1p24fee8776e94f45327444b0cd49690446@epcas1p2.samsung.com>
2019-11-13  8:17     ` [PATCH 05/13] exfat: add file operations Namjae Jeon
     [not found]   ` <CGME20191113082220epcas1p1233a27705b2ab2cd4fd3d2ba9c505dff@epcas1p1.samsung.com>
2019-11-13  8:17     ` [PATCH 06/13] exfat: add exfat entry operations Namjae Jeon
     [not found]   ` <CGME20191113082221epcas1p3dba436231d4d6893e2bda4b0aaeda575@epcas1p3.samsung.com>
2019-11-13  8:17     ` [PATCH 07/13] exfat: add bitmap operations Namjae Jeon
2019-11-17 15:01       ` Markus Elfring
2019-11-18  5:05         ` Namjae Jeon
     [not found]   ` <CGME20191113082221epcas1p3ed36f46c328a3b595f401c0d4d1f1265@epcas1p3.samsung.com>
2019-11-13  8:17     ` [PATCH 08/13] exfat: add exfat cache Namjae Jeon
     [not found]   ` <CGME20191113082222epcas1p17c34378124600f41b2659e068b8609f9@epcas1p1.samsung.com>
2019-11-13  8:17     ` [PATCH 09/13] exfat: add misc operations Namjae Jeon
     [not found]   ` <CGME20191113082223epcas1p2c752a4cbfb4a7e7096838aa8486c7372@epcas1p2.samsung.com>
2019-11-13  8:17     ` [PATCH 10/13] exfat: add nls operations Namjae Jeon
     [not found]   ` <CGME20191113082223epcas1p3fae6dbb20c196884a9f57b3918ca186d@epcas1p3.samsung.com>
2019-11-13  8:17     ` [PATCH 11/13] exfat: add Kconfig and Makefile Namjae Jeon
     [not found]   ` <CGME20191113082224epcas1p34767ff06541d67b9b8b124288c31ce70@epcas1p3.samsung.com>
2019-11-13  8:17     ` [PATCH 12/13] exfat: add exfat in fs/Kconfig and fs/Makefile Namjae Jeon
     [not found]   ` <CGME20191113082224epcas1p44018da1790279ac6d2fbb51105c121ba@epcas1p4.samsung.com>
2019-11-13  8:18     ` [PATCH 13/13] MAINTAINERS: add exfat filesystem Namjae Jeon
2019-11-13 18:48   ` [PATCH 00/13] add the latest exfat driver Valdis Klētnieks
2019-11-13 21:00   ` Eric Sandeen
2019-11-13 21:55     ` Valdis Klētnieks
2019-11-13 21:57       ` Eric Sandeen
2019-11-14  0:41         ` Namjae Jeon

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='00ba01d59dcc$fc17e010$f447a030$@samsung.com' \
    --to=namjae.jeon@samsung.com \
    --cc=Markus.Elfring@web.de \
    --cc=gregkh@linuxfoundation.org \
    --cc=hch@lst.de \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linkinjeon@gmail.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sj1557.seo@samsung.com \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).