All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Valdis Klētnieks" <valdis.kletnieks@vt.edu>
To: Eric Sandeen <sandeen@sandeen.net>
Cc: Namjae Jeon <namjae.jeon@samsung.com>,
	linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org,
	hch@lst.de, sj1557.seo@samsung.com, linkinjeon@gmail.com
Subject: Re: [PATCH 00/13] add the latest exfat driver
Date: Wed, 13 Nov 2019 16:55:34 -0500	[thread overview]
Message-ID: <367298.1573682134@turing-police> (raw)
In-Reply-To: <69d00c12-7b8a-1d47-0c18-58323f7ca60b@sandeen.net>

[-- Attachment #1: Type: text/plain, Size: 1313 bytes --]

On Wed, 13 Nov 2019 15:00:23 -0600, Eric Sandeen said:
> On 11/13/19 2:17 AM, Namjae Jeon wrote:
> > This adds the latest Samsung exfat driver to fs/exfat. This is an
> > implementation of the Microsoft exFAT specification. Previous versions
> > of this shipped with millions of Android phones, an a random previous
> > snaphot has been merged in drivers/staging/.
> >
> > Compared to the sdfat driver shipped on the phones the following changes
> > have been made:
> >
> >  - the support for vfat has been removed as that is already supported
> >    by fs/fat
> >  - driver has been renamed to exfat
> >  - the code has been refactored and clean up to fully integrate into
> >    the upstream Linux version and follow the Linux coding style
> >  - metadata operations like create, lookup and readdir have been further
> >    optimized
> >  - various major and minor bugs have been fixed
> >
> > We plan to treat this version as the future upstream for the code base
> > once merged, and all new features and bug fixes will go upstream first.
>
> Apologies if I should know this already, but where are the userspace tools
> for exfat located?

The upstream for that is https://github.com/relan/exfat

On Fedora, they're available in the rpmfusion RPM 'exfat-utils', not sure where
Ubuntu or other distros put it.

[-- Attachment #2: Type: application/pgp-signature, Size: 832 bytes --]

  reply	other threads:[~2019-11-13 21:55 UTC|newest]

Thread overview: 35+ 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
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-17 12:25       ` Markus Elfring
2019-11-18  4:59       ` Namjae Jeon
2019-11-18  4:59         ` Namjae Jeon
2019-11-13  8:17   ` [PATCH 02/13] exfat: add super block operations Namjae Jeon
2019-11-17 13:30     ` Markus Elfring
2019-11-17 13:30       ` Markus Elfring
2019-11-18  5:01       ` Namjae Jeon
2019-11-18  5:01         ` Namjae Jeon
2019-11-13  8:17   ` [PATCH 03/13] exfat: add inode operations Namjae Jeon
2019-11-17 14:15     ` Markus Elfring
2019-11-17 14:15       ` Markus Elfring
2019-11-18  5:04       ` Namjae Jeon
2019-11-18  5:04         ` Namjae Jeon
2019-11-13  8:17   ` [PATCH 04/13] exfat: add directory operations Namjae Jeon
2019-11-13  8:17   ` [PATCH 05/13] exfat: add file operations Namjae Jeon
2019-11-13  8:17   ` [PATCH 06/13] exfat: add exfat entry operations Namjae Jeon
2019-11-13  8:17   ` [PATCH 07/13] exfat: add bitmap operations Namjae Jeon
2019-11-17 15:01     ` Markus Elfring
2019-11-17 15:01       ` Markus Elfring
2019-11-18  5:05       ` Namjae Jeon
2019-11-18  5:05         ` Namjae Jeon
2019-11-13  8:17   ` [PATCH 08/13] exfat: add exfat cache Namjae Jeon
2019-11-13  8:17   ` [PATCH 09/13] exfat: add misc operations Namjae Jeon
2019-11-13  8:17   ` [PATCH 10/13] exfat: add nls operations Namjae Jeon
2019-11-13  8:17   ` [PATCH 11/13] exfat: add Kconfig and Makefile Namjae Jeon
2019-11-13  8:17   ` [PATCH 12/13] exfat: add exfat in fs/Kconfig and fs/Makefile Namjae Jeon
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 [this message]
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=367298.1573682134@turing-police \
    --to=valdis.kletnieks@vt.edu \
    --cc=gregkh@linuxfoundation.org \
    --cc=hch@lst.de \
    --cc=linkinjeon@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=namjae.jeon@samsung.com \
    --cc=sandeen@sandeen.net \
    --cc=sj1557.seo@samsung.com \
    /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.