linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] exfat: update file system parameter handling
@ 2020-02-04  3:24 Valdis Klētnieks
  2020-02-04  6:06 ` Christoph Hellwig
  0 siblings, 1 reply; 7+ messages in thread
From: Valdis Klētnieks @ 2020-02-04  3:24 UTC (permalink / raw)
  To: Namjae Jeon
  Cc: linux-fsdevel, linux-kernel, gregkh, hch, sj1557.seo, pali.rohar,
	arnd, namjae.jeon, viro

Al Viro recently reworked the way file system parameters are handled
Update super.c to work with it in linux-next 20200203.

Signed-off-by: Valdis Kletnieks <valdis.kletnieks@vt.edu>

--- fs/exfat/super.c.orig	2020-02-03 21:11:02.562305585 -0500
+++ fs/exfat/super.c	2020-02-03 22:17:21.699045311 -0500
@@ -214,7 +214,14 @@ enum {
 	Opt_time_offset,
 };
 
-static const struct fs_parameter_spec exfat_param_specs[] = {
+static const struct constant_table exfat_param_enums[] = {
+	{ "continue",		EXFAT_ERRORS_CONT },
+	{ "panic",		EXFAT_ERRORS_PANIC },
+	{ "remount-ro",		EXFAT_ERRORS_RO },
+	{}
+};
+
+static const struct fs_parameter_spec exfat_parameters[] = {
 	fsparam_u32("uid",			Opt_uid),
 	fsparam_u32("gid",			Opt_gid),
 	fsparam_u32oct("umask",			Opt_umask),
@@ -222,25 +229,12 @@ static const struct fs_parameter_spec ex
 	fsparam_u32oct("fmask",			Opt_fmask),
 	fsparam_u32oct("allow_utime",		Opt_allow_utime),
 	fsparam_string("iocharset",		Opt_charset),
-	fsparam_enum("errors",			Opt_errors),
+	fsparam_enum("errors",			Opt_errors, exfat_param_enums),
 	fsparam_flag("discard",			Opt_discard),
 	fsparam_s32("time_offset",		Opt_time_offset),
 	{}
 };
 
-static const struct fs_parameter_enum exfat_param_enums[] = {
-	{ Opt_errors,	"continue",		EXFAT_ERRORS_CONT },
-	{ Opt_errors,	"panic",		EXFAT_ERRORS_PANIC },
-	{ Opt_errors,	"remount-ro",		EXFAT_ERRORS_RO },
-	{}
-};
-
-static const struct fs_parameter_description exfat_parameters = {
-	.name		= "exfat",
-	.specs		= exfat_param_specs,
-	.enums		= exfat_param_enums,
-};
-
 static int exfat_parse_param(struct fs_context *fc, struct fs_parameter *param)
 {
 	struct exfat_sb_info *sbi = fc->s_fs_info;
@@ -248,7 +242,7 @@ static int exfat_parse_param(struct fs_c
 	struct fs_parse_result result;
 	int opt;
 
-	opt = fs_parse(fc, &exfat_parameters, param, &result);
+	opt = fs_parse(fc, exfat_parameters, param, &result);
 	if (opt < 0)
 		return opt;
 
@@ -665,7 +659,7 @@ static struct file_system_type exfat_fs_
 	.owner			= THIS_MODULE,
 	.name			= "exfat",
 	.init_fs_context	= exfat_init_fs_context,
-	.parameters		= &exfat_parameters,
+	.parameters		= exfat_parameters,
 	.kill_sb		= kill_block_super,
 	.fs_flags		= FS_REQUIRES_DEV,
 };


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

* Re: [PATCH] exfat: update file system parameter handling
  2020-02-04  3:24 [PATCH] exfat: update file system parameter handling Valdis Klētnieks
@ 2020-02-04  6:06 ` Christoph Hellwig
  2020-02-04  6:53   ` Namjae Jeon
  0 siblings, 1 reply; 7+ messages in thread
From: Christoph Hellwig @ 2020-02-04  6:06 UTC (permalink / raw)
  To: Valdis Klētnieks
  Cc: Namjae Jeon, linux-fsdevel, linux-kernel, gregkh, hch,
	sj1557.seo, pali.rohar, arnd, namjae.jeon, viro

On Mon, Feb 03, 2020 at 10:24:28PM -0500, Valdis Klētnieks wrote:
> Al Viro recently reworked the way file system parameters are handled
> Update super.c to work with it in linux-next 20200203.
> 
> Signed-off-by: Valdis Kletnieks <valdis.kletnieks@vt.edu>

Looks good:

Reviewed-by: Christoph Hellwig <hch@lst.de>

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

* RE: [PATCH] exfat: update file system parameter handling
  2020-02-04  6:06 ` Christoph Hellwig
@ 2020-02-04  6:53   ` Namjae Jeon
  2020-02-06  4:26     ` Valdis Klētnieks
  0 siblings, 1 reply; 7+ messages in thread
From: Namjae Jeon @ 2020-02-04  6:53 UTC (permalink / raw)
  To: 'Valdis Klētnieks'
  Cc: 'Namjae Jeon',
	linux-fsdevel, linux-kernel, gregkh, sj1557.seo, pali.rohar,
	arnd, viro, 'Christoph Hellwig'

> On Mon, Feb 03, 2020 at 10:24:28PM -0500, Valdis Klētnieks wrote:
> > Al Viro recently reworked the way file system parameters are handled
> > Update super.c to work with it in linux-next 20200203.
> >
> > Signed-off-by: Valdis Kletnieks <valdis.kletnieks@vt.edu>
> 
> Looks good:
> 
> Reviewed-by: Christoph Hellwig <hch@lst.de>
Acked-by: Namjae Jeon <namjae.jeon@samsung.com>

If I need to make v14 patch series for this, Let me know it.

Thanks!



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

* Re: [PATCH] exfat: update file system parameter handling
  2020-02-04  6:53   ` Namjae Jeon
@ 2020-02-06  4:26     ` Valdis Klētnieks
  2020-02-06  6:54       ` Al Viro
  0 siblings, 1 reply; 7+ messages in thread
From: Valdis Klētnieks @ 2020-02-06  4:26 UTC (permalink / raw)
  To: Namjae Jeon
  Cc: 'Namjae Jeon',
	linux-fsdevel, linux-kernel, gregkh, sj1557.seo, pali.rohar,
	arnd, viro, 'Christoph Hellwig'

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

On Tue, 04 Feb 2020 15:53:38 +0900, "Namjae Jeon" said:
> > > Al Viro recently reworked the way file system parameters are handled
> > > Update super.c to work with it in linux-next 20200203.

> Acked-by: Namjae Jeon <namjae.jeon@samsung.com>
>
> If I need to make v14 patch series for this, Let me know it.

Hmm... That's a process/git question that somebody else (probably Al Viro) will
have to answer.

fs/exfat/super.c won't compile on next-20200203 or later without the patch, and
as a practical matter the version that finally goes into the main tree will need the patch.

On the one hand, the proper way to track the history of that patch would be to
cherry-pick it into the proper spot in your patch series, right after the
commit that adds super.c.  Then the git history reflects what code came from
where.

On the other hand, it leaves a really small window where a git bisect can land
exactly on the commit that adds the unpatched version of super.c and fail to
buiild.  If all the Signed-off-by's were from one person, the obvious answer is
to fold the fix into the commit that adds super.c - but that loses the git
history.

So I'm going to dodge the question by saying "What would Al Viro do?" :)





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

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

* Re: [PATCH] exfat: update file system parameter handling
  2020-02-06  4:26     ` Valdis Klētnieks
@ 2020-02-06  6:54       ` Al Viro
  2020-02-08  2:02         ` Linus Torvalds
  0 siblings, 1 reply; 7+ messages in thread
From: Al Viro @ 2020-02-06  6:54 UTC (permalink / raw)
  To: Valdis Klētnieks
  Cc: Namjae Jeon, 'Namjae Jeon',
	linux-fsdevel, linux-kernel, gregkh, sj1557.seo, pali.rohar,
	arnd, 'Christoph Hellwig',
	Linus Torvalds

On Wed, Feb 05, 2020 at 11:26:42PM -0500, Valdis Klētnieks wrote:
> On Tue, 04 Feb 2020 15:53:38 +0900, "Namjae Jeon" said:
> > > > Al Viro recently reworked the way file system parameters are handled
> > > > Update super.c to work with it in linux-next 20200203.
> 
> > Acked-by: Namjae Jeon <namjae.jeon@samsung.com>
> >
> > If I need to make v14 patch series for this, Let me know it.
> 
> Hmm... That's a process/git question that somebody else (probably Al Viro) will
> have to answer.
> 
> fs/exfat/super.c won't compile on next-20200203 or later without the patch, and
> as a practical matter the version that finally goes into the main tree will need the patch.
> 
> On the one hand, the proper way to track the history of that patch would be to
> cherry-pick it into the proper spot in your patch series, right after the
> commit that adds super.c.  Then the git history reflects what code came from
> where.
> 
> On the other hand, it leaves a really small window where a git bisect can land
> exactly on the commit that adds the unpatched version of super.c and fail to
> buiild.  If all the Signed-off-by's were from one person, the obvious answer is
> to fold the fix into the commit that adds super.c - but that loses the git
> history.
> 
> So I'm going to dodge the question by saying "What would Al Viro do?" :)

	The situation with #work.fs_parse is simple: I'm waiting for NFS series
to get in (git://git.linux-nfs.org/projects/anna/linux-nfs.git, that is).
 As soon as it happens, I'm sending #work.fs_parse + merge with nfs stuff +
fixups for said nfs stuff (as in
https://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git/commit/?id=c354ed1)
to Linus.  In case Anna decides to skip this cycle (and I've seen nothing that
might indicates that), I will just send #work.fs_parse as-is.

	I *can* rebase #work.fs_parse on top of NFS series (and vboxsf, and
exfat, etc.) and send it to Linus right before -rc1, with obviously identical
final state.  That would avoid all issues with bisect hazards, but Linus is
usually unhappy about rebases.  And bisect hazard window is narrow...

	Again, I've no problem with such rebase (hell, with additional
branch ending in the same tree as #merge.nfs-fs_parse, verifiable by
simple git diff - compare vfs.git merge.nfs-fs_parse.0 and
merge.nfs-fs_parse.1, the latter being a rebase on top of #nfs-next).
Linus, up to you...

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

* Re: [PATCH] exfat: update file system parameter handling
  2020-02-06  6:54       ` Al Viro
@ 2020-02-08  2:02         ` Linus Torvalds
  2020-02-08  3:42           ` Al Viro
  0 siblings, 1 reply; 7+ messages in thread
From: Linus Torvalds @ 2020-02-08  2:02 UTC (permalink / raw)
  To: Al Viro
  Cc: Valdis Klētnieks, Namjae Jeon, Namjae Jeon, linux-fsdevel,
	Linux Kernel Mailing List, Greg Kroah-Hartman, sj1557.seo,
	Pali Rohár, Arnd Bergmann, Christoph Hellwig

On Wed, Feb 5, 2020 at 10:54 PM Al Viro <viro@zeniv.linux.org.uk> wrote:
>
>         The situation with #work.fs_parse is simple: I'm waiting for NFS series
> to get in (git://git.linux-nfs.org/projects/anna/linux-nfs.git, that is).
>  As soon as it happens, I'm sending #work.fs_parse + merge with nfs stuff +
> fixups for said nfs stuff to Linus.

I've got the nfs pull request and it's merged now.

               Linus

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

* Re: [PATCH] exfat: update file system parameter handling
  2020-02-08  2:02         ` Linus Torvalds
@ 2020-02-08  3:42           ` Al Viro
  0 siblings, 0 replies; 7+ messages in thread
From: Al Viro @ 2020-02-08  3:42 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Valdis Klētnieks, Namjae Jeon, Namjae Jeon, linux-fsdevel,
	Linux Kernel Mailing List, Greg Kroah-Hartman, sj1557.seo,
	Pali Rohár, Arnd Bergmann, Christoph Hellwig

On Fri, Feb 07, 2020 at 06:02:19PM -0800, Linus Torvalds wrote:
> On Wed, Feb 5, 2020 at 10:54 PM Al Viro <viro@zeniv.linux.org.uk> wrote:
> >
> >         The situation with #work.fs_parse is simple: I'm waiting for NFS series
> > to get in (git://git.linux-nfs.org/projects/anna/linux-nfs.git, that is).
> >  As soon as it happens, I'm sending #work.fs_parse + merge with nfs stuff +
> > fixups for said nfs stuff to Linus.
> 
> I've got the nfs pull request and it's merged now.

OK...  Here's what I have:

#work.fs_parse + merge of it with nfs branch + fixups needed for NFS.
The merge is free of textual conflicts, but there are semantical ones,
thus the need of fixups.  That's in #merge.nfs-fs_parse.0, and that's
what had been in -next.

I'm not sure what would be the best course here

1) you could pull #work.fs_parse and fold the fixups (c354ed1dd8f4) into
the merge commit, but... that'll hide them from things like git log -p;
every time I run into somebody doing that I end up very unhappy with
whoever has pulled that crap - usually after an hour of trying to find
out when the hell has that change been done.

2) Another variant is to pull #merge.nfs-fs_parse.0 as-is; no fishiness
in merge commits, but there would be bisect hazard left inside that thing.

3) #merge.nfs-fs_parse.1 - same thing rebased on top of nfs branch; "same"
as in
al@duke:~/linux/trees/vfs$ git cat-file -p merge.nfs-fs_parse.0|grep tree
tree d16f842764297172e6bc3e636109044f59b17b1e
al@duke:~/linux/trees/vfs$ git cat-file -p merge.nfs-fs_parse.1|grep tree
tree d16f842764297172e6bc3e636109044f59b17b1e

That gives no backmerges and no bisect hazards - the fixups are spread
into the series.  A couple of fixes in the end of #work.fs_parse are
also folded in.

My preference would be (3), but if you would rather go for (1) or (2),
it's up to you.  My apologies about the messy branch topology ;-/

Anyway, pull requests would be:
============================================================================
For variant 3:

Saner fs_parser.c guts and data structures; the system-wide registry of
syntax types (string/enum/int32/oct32/.../etc.) is gone and so is the
horror switch() in fs_parse() that would have to grow another case every
time something got added to that system-wide registry.  New syntax
types can be added by filesystems easily now, and their namespace is
that of functions - not of system-wide enum members.  IOW, they can be
shared or kept private and if some turn out to be widely useful, we can
make them common library helpers, etc., without having to do anything
whatsoever to fs_parse() itself.

And we already get that kind of requests - the thing that finally pushed
me into doing that was "oh, and let's add one for timeouts - things like
15s or 2h".  If some filesystem really wants that, let them do it.
Without somebody having to play gatekeeper for the variants blessed by
direct support in fs_parse(), TYVM.

Quite a bit of boilerplate is gone.  And IMO the data structures make
a lot more sense now.  -200LoC, while we are at it.

The following changes since commit 7dc2993a9e51dd2eee955944efec65bef90265b7:

  NFSv4.0: nfs4_do_fsinfo() should not do implicit lease renewals (2020-02-04 12:27:55 -0500)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git merge.nfs-fs_parse.1

for you to fetch changes up to f35aa2bc809eacc44c3cee41b52cef1c451d4a89:

  tmpfs: switch to use of invalfc() (2020-02-07 14:48:44 -0500)

----------------------------------------------------------------
Al Viro (24):
      Pass consistent param->type to fs_parse()
      fs_parse: get rid of ->enums
      fold struct fs_parameter_enum into struct constant_table
      don't bother with explicit length argument for __lookup_constant()
      get rid of fs_value_is_filename_empty
      get rid of cg_invalf()
      teach logfc() to handle prefices, give it saner calling conventions
      struct p_log, variants of warnf() et.al. taking that one instead
      switch rbd and libceph to p_log-based primitives
      new primitive: __fs_parse()
      ceph_parse_param(), ceph_parse_mon_ips(): switch to passing fc_log
      add prefix to fs_context->log
      fs_parse: fold fs_parameter_desc/fs_parameter_spec
      fs_parse: handle optional arguments sanely
      turn fs_param_is_... into functions
      prefix-handling analogues of errorf() and friends
      ceph: use errorfc() and friends instead of spelling the prefix out
      fuse: switch to use errorfc() et.al.
      gfs2: switch to use of errorfc() et.al.
      cramfs: switch to use of errofc() et.al.
      hugetlbfs: switch to use of invalfc()
      procfs: switch to use of invalfc()
      cgroup1: switch to use of errorfc() et.al.
      tmpfs: switch to use of invalfc()

Eric Sandeen (1):
      fs_parser: remove fs_parameter_description name field

 Documentation/filesystems/mount_api.txt   |  12 +-
 arch/powerpc/platforms/cell/spufs/inode.c |  11 +-
 arch/s390/hypfs/inode.c                   |  11 +-
 arch/x86/kernel/cpu/resctrl/rdtgroup.c    |  11 +-
 drivers/base/devtmpfs.c                   |   4 +-
 drivers/block/rbd.c                       |  31 +--
 drivers/usb/gadget/function/f_fs.c        |  11 +-
 fs/afs/super.c                            |  32 +--
 fs/ceph/cache.c                           |   4 +-
 fs/ceph/super.c                           |  40 ++-
 fs/cramfs/inode.c                         |  14 +-
 fs/filesystems.c                          |   3 +-
 fs/fs_context.c                           |  79 ++----
 fs/fs_parser.c                            | 447 +++++++++++++-----------------
 fs/fsopen.c                               |  26 +-
 fs/fuse/inode.c                           |  25 +-
 fs/gfs2/ops_fstype.c                      | 103 +++----
 fs/hugetlbfs/inode.c                      |  13 +-
 fs/jffs2/super.c                          |  26 +-
 fs/nfs/fs_context.c                       |  93 ++++---
 fs/proc/root.c                            |  13 +-
 fs/ramfs/inode.c                          |  11 +-
 fs/xfs/xfs_super.c                        |  11 +-
 include/linux/ceph/libceph.h              |   5 +-
 include/linux/fs.h                        |   4 +-
 include/linux/fs_context.h                |  32 ++-
 include/linux/fs_parser.h                 | 101 +++----
 include/linux/ramfs.h                     |   4 +-
 include/linux/shmem_fs.h                  |   3 +-
 kernel/bpf/inode.c                        |  11 +-
 kernel/cgroup/cgroup-internal.h           |   4 +-
 kernel/cgroup/cgroup-v1.c                 |  35 +--
 kernel/cgroup/cgroup.c                    |  13 +-
 mm/shmem.c                                |  40 ++-
 net/ceph/ceph_common.c                    |  41 ++-
 security/selinux/hooks.c                  |  11 +-
 security/smack/smack_lsm.c                |   9 +-
 37 files changed, 562 insertions(+), 782 deletions(-)

============================================================================
For variant 2:

Saner fs_parser.c guts and data structures; the system-wide registry of
syntax types (string/enum/int32/oct32/.../etc.) is gone and so is the
horror switch() in fs_parse() that would have to grow another case every
time something got added to that system-wide registry.  New syntax
types can be added by filesystems easily now, and their namespace is
that of functions - not of system-wide enum members.  IOW, they can be
shared or kept private and if some turn out to be widely useful, we can
make them common library helpers, etc., without having to do anything
whatsoever to fs_parse() itself.

And we already get that kind of requests - the thing that finally pushed
me into doing that was "oh, and let's add one for timeouts - things like
15s or 2h".  If some filesystem really wants that, let them do it.
Without somebody having to play gatekeeper for the variants blessed by
direct support in fs_parse(), TYVM.

Quite a bit of boilerplate is gone.  And IMO the data structures make
a lot more sense now.  -200LoC, while we are at it.

The following changes since commit 7dc2993a9e51dd2eee955944efec65bef90265b7:

  NFSv4.0: nfs4_do_fsinfo() should not do implicit lease renewals (2020-02-04 12:27:55 -0500)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git merge.nfs-fs_parse.0

for you to fetch changes up to c7c780db827b80a219718b662aeded3eb7c65006:

  Merge branch 'work.fs_parse' into merge.nfs-fs_parse.0 (2020-02-07 00:05:57 -0500)

----------------------------------------------------------------
Al Viro (29):
      Pass consistent param->type to fs_parse()
      fs_parse: get rid of ->enums
      fold struct fs_parameter_enum into struct constant_table
      don't bother with explicit length argument for __lookup_constant()
      get rid of fs_value_is_filename_empty
      get rid of cg_invalf()
      teach logfc() to handle prefices, give it saner calling conventions
      struct p_log, variants of warnf() et.al. taking that one instead
      switch rbd and libceph to p_log-based primitives
      new primitive: __fs_parse()
      ceph_parse_param(), ceph_parse_mon_ips(): switch to passing fc_log
      add prefix to fs_context->log
      fs_parse: fold fs_parameter_desc/fs_parameter_spec
      fs_parse: handle optional arguments sanely
      turn fs_param_is_... into functions
      prefix-handling analogues of errorf() and friends
      ceph: use errorfc() and friends instead of spelling the prefix out
      fuse: switch to use errorfc() et.al.
      gfs2: switch to use of errorfc() et.al.
      cramfs: switch to use of errofc() et.al.
      hugetlbfs: switch to use of invalfc()
      procfs: switch to use of invalfc()
      cgroup1: switch to use of errorfc() et.al.
      tmpfs: switch to use of invalfc()
      restore the lost export of lookup_constant()
      Merge branch 'work.fs_parse' into merge.nfs-fs_parse
      nfs: update for fs_parse.c changes
      do not accept empty strings for fsparam_string()
      Merge branch 'work.fs_parse' into merge.nfs-fs_parse.0

Eric Sandeen (1):
      fs_parser: remove fs_parameter_description name field

 Documentation/filesystems/mount_api.txt   |  12 +-
 arch/powerpc/platforms/cell/spufs/inode.c |  11 +-
 arch/s390/hypfs/inode.c                   |  11 +-
 arch/x86/kernel/cpu/resctrl/rdtgroup.c    |  11 +-
 drivers/base/devtmpfs.c                   |   4 +-
 drivers/block/rbd.c                       |  31 +--
 drivers/usb/gadget/function/f_fs.c        |  11 +-
 fs/afs/super.c                            |  32 +--
 fs/ceph/cache.c                           |   4 +-
 fs/ceph/super.c                           |  40 ++-
 fs/cramfs/inode.c                         |  14 +-
 fs/filesystems.c                          |   3 +-
 fs/fs_context.c                           |  79 ++----
 fs/fs_parser.c                            | 447 +++++++++++++-----------------
 fs/fsopen.c                               |  26 +-
 fs/fuse/inode.c                           |  25 +-
 fs/gfs2/ops_fstype.c                      | 103 +++----
 fs/hugetlbfs/inode.c                      |  13 +-
 fs/jffs2/super.c                          |  26 +-
 fs/nfs/fs_context.c                       |  93 ++++---
 fs/proc/root.c                            |  13 +-
 fs/ramfs/inode.c                          |  11 +-
 fs/xfs/xfs_super.c                        |  11 +-
 include/linux/ceph/libceph.h              |   5 +-
 include/linux/fs.h                        |   4 +-
 include/linux/fs_context.h                |  32 ++-
 include/linux/fs_parser.h                 | 101 +++----
 include/linux/ramfs.h                     |   4 +-
 include/linux/shmem_fs.h                  |   3 +-
 kernel/bpf/inode.c                        |  11 +-
 kernel/cgroup/cgroup-internal.h           |   4 +-
 kernel/cgroup/cgroup-v1.c                 |  35 +--
 kernel/cgroup/cgroup.c                    |  13 +-
 mm/shmem.c                                |  40 ++-
 net/ceph/ceph_common.c                    |  41 ++-
 security/selinux/hooks.c                  |  11 +-
 security/smack/smack_lsm.c                |   9 +-
 37 files changed, 562 insertions(+), 782 deletions(-)
============================================================================

... and variant (1) would be the same summary + the following pull
request, with "please fold the contents of commit c354ed1dd8f4 (nfs:
update for fs_parse.c changes) into your merge commit as (non-textual)
conflict resolution)" appended to it.

The following changes since commit e42617b825f8073569da76dc4510bfa019b1c35a:

  Linux 5.5-rc1 (2019-12-08 14:57:55 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git work.fs_parse

for you to fetch changes up to 296713d91a7df022b0edf20d55f83554b4f95ba1:

  do not accept empty strings for fsparam_string() (2020-02-07 00:02:11 -0500)

----------------------------------------------------------------
Al Viro (26):
      Pass consistent param->type to fs_parse()
      fs_parse: get rid of ->enums
      fold struct fs_parameter_enum into struct constant_table
      don't bother with explicit length argument for __lookup_constant()
      get rid of fs_value_is_filename_empty
      get rid of cg_invalf()
      teach logfc() to handle prefices, give it saner calling conventions
      struct p_log, variants of warnf() et.al. taking that one instead
      switch rbd and libceph to p_log-based primitives
      new primitive: __fs_parse()
      ceph_parse_param(), ceph_parse_mon_ips(): switch to passing fc_log
      add prefix to fs_context->log
      fs_parse: fold fs_parameter_desc/fs_parameter_spec
      fs_parse: handle optional arguments sanely
      turn fs_param_is_... into functions
      prefix-handling analogues of errorf() and friends
      ceph: use errorfc() and friends instead of spelling the prefix out
      fuse: switch to use errorfc() et.al.
      gfs2: switch to use of errorfc() et.al.
      cramfs: switch to use of errofc() et.al.
      hugetlbfs: switch to use of invalfc()
      procfs: switch to use of invalfc()
      cgroup1: switch to use of errorfc() et.al.
      tmpfs: switch to use of invalfc()
      restore the lost export of lookup_constant()
      do not accept empty strings for fsparam_string()

Eric Sandeen (1):
      fs_parser: remove fs_parameter_description name field

 Documentation/filesystems/mount_api.txt   |  12 +-
 arch/powerpc/platforms/cell/spufs/inode.c |  11 +-
 arch/s390/hypfs/inode.c                   |  11 +-
 arch/x86/kernel/cpu/resctrl/rdtgroup.c    |  11 +-
 drivers/base/devtmpfs.c                   |   4 +-
 drivers/block/rbd.c                       |  31 +--
 drivers/usb/gadget/function/f_fs.c        |  11 +-
 fs/afs/super.c                            |  32 +--
 fs/ceph/cache.c                           |   4 +-
 fs/ceph/super.c                           |  40 ++-
 fs/cramfs/inode.c                         |  14 +-
 fs/filesystems.c                          |   3 +-
 fs/fs_context.c                           |  79 ++----
 fs/fs_parser.c                            | 447 +++++++++++++-----------------
 fs/fsopen.c                               |  26 +-
 fs/fuse/inode.c                           |  25 +-
 fs/gfs2/ops_fstype.c                      | 103 +++----
 fs/hugetlbfs/inode.c                      |  13 +-
 fs/jffs2/super.c                          |  26 +-
 fs/proc/root.c                            |  13 +-
 fs/ramfs/inode.c                          |  11 +-
 fs/xfs/xfs_super.c                        |  11 +-
 include/linux/ceph/libceph.h              |   5 +-
 include/linux/fs.h                        |   4 +-
 include/linux/fs_context.h                |  32 ++-
 include/linux/fs_parser.h                 | 101 +++----
 include/linux/ramfs.h                     |   4 +-
 include/linux/shmem_fs.h                  |   3 +-
 kernel/bpf/inode.c                        |  11 +-
 kernel/cgroup/cgroup-internal.h           |   4 +-
 kernel/cgroup/cgroup-v1.c                 |  35 +--
 kernel/cgroup/cgroup.c                    |  13 +-
 mm/shmem.c                                |  40 ++-
 net/ceph/ceph_common.c                    |  41 ++-
 security/selinux/hooks.c                  |  11 +-
 security/smack/smack_lsm.c                |   9 +-
 36 files changed, 514 insertions(+), 737 deletions(-)

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

end of thread, other threads:[~2020-02-08  3:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-04  3:24 [PATCH] exfat: update file system parameter handling Valdis Klētnieks
2020-02-04  6:06 ` Christoph Hellwig
2020-02-04  6:53   ` Namjae Jeon
2020-02-06  4:26     ` Valdis Klētnieks
2020-02-06  6:54       ` Al Viro
2020-02-08  2:02         ` Linus Torvalds
2020-02-08  3:42           ` Al Viro

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).