Re: [RFC PATCH 11/20] famfs: Add fs_context_operations

2024-02-28 Thread Christian Brauner
On Wed, Feb 28, 2024 at 11:07:20AM +0100, Christian Brauner wrote: > > I wasn't aware of the new fsconfig interface. Is there documentation or a > > file sytsem that already uses it that I should refer to? I didn't find an > > obvious candidate, but it might be me. If it should be obvious from the

Re: [RFC PATCH 11/20] famfs: Add fs_context_operations

2024-02-28 Thread Christian Brauner
> I wasn't aware of the new fsconfig interface. Is there documentation or a > file sytsem that already uses it that I should refer to? I didn't find an > obvious candidate, but it might be me. If it should be obvious from the > example above, tell me and I'll try harder. > > My famfs code above wa

Re: [RFC PATCH 11/20] famfs: Add fs_context_operations

2024-02-28 Thread Christian Brauner
> plus David's userspace man page addition for it: > https://lore.kernel.org/linux-fsdevel/159680897140.29015.15318866561972877762.st...@warthog.procyon.org.uk/ Up to date manpages are https://github.com/brauner/man-pages-md

Re: [RFC PATCH 11/20] famfs: Add fs_context_operations

2024-02-27 Thread Randy Dunlap
On 2/27/24 16:59, John Groves wrote: > On 24/02/27 02:41PM, Christian Brauner wrote: >> On Fri, Feb 23, 2024 at 11:41:55AM -0600, John Groves wrote: >>> This commit introduces the famfs fs_context_operations and >>> famfs_get_inode() which is used by the context operations. >>> >>> Signed-off-by

Re: [RFC PATCH 11/20] famfs: Add fs_context_operations

2024-02-27 Thread John Groves
On 24/02/27 02:41PM, Christian Brauner wrote: > On Fri, Feb 23, 2024 at 11:41:55AM -0600, John Groves wrote: > > This commit introduces the famfs fs_context_operations and > > famfs_get_inode() which is used by the context operations. > > > > Signed-off-by: John Groves > > --- > > fs/famfs/famfs

Re: [RFC PATCH 11/20] famfs: Add fs_context_operations

2024-02-27 Thread Christian Brauner
On Fri, Feb 23, 2024 at 11:41:55AM -0600, John Groves wrote: > This commit introduces the famfs fs_context_operations and > famfs_get_inode() which is used by the context operations. > > Signed-off-by: John Groves > --- > fs/famfs/famfs_inode.c | 178 + >

Re: [RFC PATCH 11/20] famfs: Add fs_context_operations

2024-02-26 Thread John Groves
On 24/02/26 01:20PM, Jonathan Cameron wrote: > On Fri, 23 Feb 2024 11:41:55 -0600 > John Groves wrote: > > > This commit introduces the famfs fs_context_operations and > > famfs_get_inode() which is used by the context operations. > > > > Signed-off-by: John Groves > Trivial comments inline. >

Re: [RFC PATCH 11/20] famfs: Add fs_context_operations

2024-02-26 Thread Jonathan Cameron
On Fri, 23 Feb 2024 11:41:55 -0600 John Groves wrote: > This commit introduces the famfs fs_context_operations and > famfs_get_inode() which is used by the context operations. > > Signed-off-by: John Groves Trivial comments inline. > --- > fs/famfs/famfs_inode.c | 178

[RFC PATCH 11/20] famfs: Add fs_context_operations

2024-02-23 Thread John Groves
This commit introduces the famfs fs_context_operations and famfs_get_inode() which is used by the context operations. Signed-off-by: John Groves --- fs/famfs/famfs_inode.c | 178 + 1 file changed, 178 insertions(+) diff --git a/fs/famfs/famfs_inode.c b/fs