All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH] iomap: take responsibility for the filesystem iomap code
@ 2018-12-20  5:36 Darrick J. Wong
  2018-12-20  7:08 ` Christoph Hellwig
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Darrick J. Wong @ 2018-12-20  5:36 UTC (permalink / raw)
  To: xfs, linux-fsdevel; +Cc: Christoph Hellwig, Dave Chinner, Eric Sandeen

From: Darrick J. Wong <darrick.wong@oracle.com>

XFS is the primary user of the filesystem iomap code, so we (the XFS
community, specifically) will explicitly take responsibility for its
maintenance.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
Just floating this as a test balloon.  Would like at acks from at least
Dave and Christoph since they wrote most of the fs iomap code.
---
 MAINTAINERS |   10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 8119141a926f..a36a88a72423 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -16518,6 +16518,16 @@ L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
 S:	Supported
 F:	sound/xen/*
 
+IOMAP FILESYSTEM LIBRARY
+M:	linux-xfs@vger.kernel.org
+M:	linux-fsdevel@vger.kernel.org
+L:	linux-xfs@vger.kernel.org
+L:	linux-fsdevel@vger.kernel.org
+T:	git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
+S:	Supported
+F:	fs/iomap.c
+F:	include/linux/iomap.h
+
 XFS FILESYSTEM
 M:	Darrick J. Wong <darrick.wong@oracle.com>
 M:	linux-xfs@vger.kernel.org

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

* Re: [RFC PATCH] iomap: take responsibility for the filesystem iomap code
  2018-12-20  5:36 [RFC PATCH] iomap: take responsibility for the filesystem iomap code Darrick J. Wong
@ 2018-12-20  7:08 ` Christoph Hellwig
  2018-12-20  7:27 ` Amir Goldstein
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Christoph Hellwig @ 2018-12-20  7:08 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: xfs, linux-fsdevel, Christoph Hellwig, Dave Chinner, Eric Sandeen

On Wed, Dec 19, 2018 at 09:36:22PM -0800, Darrick J. Wong wrote:
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 8119141a926f..a36a88a72423 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -16518,6 +16518,16 @@ L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
>  S:	Supported
>  F:	sound/xen/*
>  
> +IOMAP FILESYSTEM LIBRARY
> +M:	linux-xfs@vger.kernel.org
> +M:	linux-fsdevel@vger.kernel.org
> +L:	linux-xfs@vger.kernel.org
> +L:	linux-fsdevel@vger.kernel.org

Listing not one but two mailing lists as the maintainer entry seems odd.
not sure if we need a M: entry at all, but if we do I'll volunteer
(in combination with Dave if he wants to)

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

* Re: [RFC PATCH] iomap: take responsibility for the filesystem iomap code
  2018-12-20  5:36 [RFC PATCH] iomap: take responsibility for the filesystem iomap code Darrick J. Wong
  2018-12-20  7:08 ` Christoph Hellwig
@ 2018-12-20  7:27 ` Amir Goldstein
  2018-12-20 19:04 ` [PATCH v2] " Darrick J. Wong
  2018-12-24  0:37 ` [PATCH v3] " Darrick J. Wong
  3 siblings, 0 replies; 8+ messages in thread
From: Amir Goldstein @ 2018-12-20  7:27 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: linux-xfs, linux-fsdevel, Christoph Hellwig, Dave Chinner, Eric Sandeen

On Thu, Dec 20, 2018 at 8:47 AM Darrick J. Wong <darrick.wong@oracle.com> wrote:
>
> From: Darrick J. Wong <darrick.wong@oracle.com>
>
> XFS is the primary user of the filesystem iomap code, so we (the XFS
> community, specifically) will explicitly take responsibility for its
> maintenance.
>
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> ---
> Just floating this as a test balloon.  Would like at acks from at least
> Dave and Christoph since they wrote most of the fs iomap code.
> ---
>  MAINTAINERS |   10 ++++++++++
>  1 file changed, 10 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 8119141a926f..a36a88a72423 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -16518,6 +16518,16 @@ L:     alsa-devel@alsa-project.org (moderated for non-subscribers)
>  S:     Supported
>  F:     sound/xen/*
>
> +IOMAP FILESYSTEM LIBRARY

Sort alphabetically please.

Thanks,
Amir.

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

* [PATCH v2] iomap: take responsibility for the filesystem iomap code
  2018-12-20  5:36 [RFC PATCH] iomap: take responsibility for the filesystem iomap code Darrick J. Wong
  2018-12-20  7:08 ` Christoph Hellwig
  2018-12-20  7:27 ` Amir Goldstein
@ 2018-12-20 19:04 ` Darrick J. Wong
  2018-12-20 19:07   ` Al Viro
  2018-12-21 22:05   ` Dave Chinner
  2018-12-24  0:37 ` [PATCH v3] " Darrick J. Wong
  3 siblings, 2 replies; 8+ messages in thread
From: Darrick J. Wong @ 2018-12-20 19:04 UTC (permalink / raw)
  To: xfs, linux-fsdevel
  Cc: Christoph Hellwig, Dave Chinner, Eric Sandeen, Amir Goldstein

From: Darrick J. Wong <darrick.wong@oracle.com>

XFS is the primary user of the filesystem iomap code, so we (the XFS
community, specifically) will explicitly take responsibility for its
maintenance.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
v2: maintain alphabetization, add Christoph as a Real Person patch
mailing target.  Still looking for acks from Christoph & Dave...
---
 MAINTAINERS |   11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 3318f30903b2..a3ccbeebb377 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -7783,6 +7783,17 @@ L:	linux-serial@vger.kernel.org
 S:	Maintained
 F:	drivers/tty/serial/ioc3_serial.c
 
+IOMAP FILESYSTEM LIBRARY
+M:	Christoph Hellwig <hch@infradead.org>
+M:	linux-xfs@vger.kernel.org
+M:	linux-fsdevel@vger.kernel.org
+L:	linux-xfs@vger.kernel.org
+L:	linux-fsdevel@vger.kernel.org
+T:	git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
+S:	Supported
+F:	fs/iomap.c
+F:	include/linux/iomap.h
+
 IOMMU DRIVERS
 M:	Joerg Roedel <joro@8bytes.org>
 L:	iommu@lists.linux-foundation.org

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

* Re: [PATCH v2] iomap: take responsibility for the filesystem iomap code
  2018-12-20 19:04 ` [PATCH v2] " Darrick J. Wong
@ 2018-12-20 19:07   ` Al Viro
  2018-12-21 22:05   ` Dave Chinner
  1 sibling, 0 replies; 8+ messages in thread
From: Al Viro @ 2018-12-20 19:07 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: xfs, linux-fsdevel, Christoph Hellwig, Dave Chinner,
	Eric Sandeen, Amir Goldstein

On Thu, Dec 20, 2018 at 11:04:01AM -0800, Darrick J. Wong wrote:
> From: Darrick J. Wong <darrick.wong@oracle.com>
> 
> XFS is the primary user of the filesystem iomap code, so we (the XFS
> community, specifically) will explicitly take responsibility for its
> maintenance.
> 
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>

ACK from me, for what it's worth - you guys brought it in, you appear
to actively maintain it, so it's your headac^Wresponsibility.

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

* Re: [PATCH v2] iomap: take responsibility for the filesystem iomap code
  2018-12-20 19:04 ` [PATCH v2] " Darrick J. Wong
  2018-12-20 19:07   ` Al Viro
@ 2018-12-21 22:05   ` Dave Chinner
  1 sibling, 0 replies; 8+ messages in thread
From: Dave Chinner @ 2018-12-21 22:05 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: xfs, linux-fsdevel, Christoph Hellwig, Eric Sandeen, Amir Goldstein

On Thu, Dec 20, 2018 at 11:04:01AM -0800, Darrick J. Wong wrote:
> From: Darrick J. Wong <darrick.wong@oracle.com>
> 
> XFS is the primary user of the filesystem iomap code, so we (the XFS
> community, specifically) will explicitly take responsibility for its
> maintenance.
> 
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> ---
> v2: maintain alphabetization, add Christoph as a Real Person patch
> mailing target.  Still looking for acks from Christoph & Dave...

> ---
>  MAINTAINERS |   11 +++++++++++
>  1 file changed, 11 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 3318f30903b2..a3ccbeebb377 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -7783,6 +7783,17 @@ L:	linux-serial@vger.kernel.org
>  S:	Maintained
>  F:	drivers/tty/serial/ioc3_serial.c
>  
> +IOMAP FILESYSTEM LIBRARY
> +M:	Christoph Hellwig <hch@infradead.org>
> +M:	linux-xfs@vger.kernel.org
> +M:	linux-fsdevel@vger.kernel.org
> +L:	linux-xfs@vger.kernel.org
> +L:	linux-fsdevel@vger.kernel.org
> +T:	git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
> +S:	Supported
> +F:	fs/iomap.c
> +F:	include/linux/iomap.h

Reviewed-by: Dave Chinner <dchinner@redhat.com>

-- 
Dave Chinner
david@fromorbit.com

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

* [PATCH v3] iomap: take responsibility for the filesystem iomap code
  2018-12-20  5:36 [RFC PATCH] iomap: take responsibility for the filesystem iomap code Darrick J. Wong
                   ` (2 preceding siblings ...)
  2018-12-20 19:04 ` [PATCH v2] " Darrick J. Wong
@ 2018-12-24  0:37 ` Darrick J. Wong
  2018-12-27  8:08   ` Christoph Hellwig
  3 siblings, 1 reply; 8+ messages in thread
From: Darrick J. Wong @ 2018-12-24  0:37 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: xfs, linux-fsdevel, Dave Chinner, Eric Sandeen, Amir Goldstein

From: Darrick J. Wong <darrick.wong@oracle.com>

XFS is the primary user of the filesystem iomap code, so we (the XFS
community, specifically) will explicitly take responsibility for its
maintenance.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Acked-by: Al Viro <viro@zeniv.linux.org.uk>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
---
v3: I decided that perhaps I ought to be listed for iomap after all.
Still looking for an ack from Christoph...

v2: maintain alphabetization, add Christoph as a Real Person patch
mailing target.  Still looking for acks from Christoph & Dave...
---
 MAINTAINERS |   12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 3318f30903b2..d2c034aed4be 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -7783,6 +7783,18 @@ L:	linux-serial@vger.kernel.org
 S:	Maintained
 F:	drivers/tty/serial/ioc3_serial.c
 
+IOMAP FILESYSTEM LIBRARY
+M:	Christoph Hellwig <hch@infradead.org>
+M:	Darrick J. Wong <darrick.wong@oracle.com>
+M:	linux-xfs@vger.kernel.org
+M:	linux-fsdevel@vger.kernel.org
+L:	linux-xfs@vger.kernel.org
+L:	linux-fsdevel@vger.kernel.org
+T:	git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
+S:	Supported
+F:	fs/iomap.c
+F:	include/linux/iomap.h
+
 IOMMU DRIVERS
 M:	Joerg Roedel <joro@8bytes.org>
 L:	iommu@lists.linux-foundation.org

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

* Re: [PATCH v3] iomap: take responsibility for the filesystem iomap code
  2018-12-24  0:37 ` [PATCH v3] " Darrick J. Wong
@ 2018-12-27  8:08   ` Christoph Hellwig
  0 siblings, 0 replies; 8+ messages in thread
From: Christoph Hellwig @ 2018-12-27  8:08 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: Christoph Hellwig, xfs, linux-fsdevel, Dave Chinner,
	Eric Sandeen, Amir Goldstein

Looks good:

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

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

end of thread, other threads:[~2018-12-27  8:08 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-20  5:36 [RFC PATCH] iomap: take responsibility for the filesystem iomap code Darrick J. Wong
2018-12-20  7:08 ` Christoph Hellwig
2018-12-20  7:27 ` Amir Goldstein
2018-12-20 19:04 ` [PATCH v2] " Darrick J. Wong
2018-12-20 19:07   ` Al Viro
2018-12-21 22:05   ` Dave Chinner
2018-12-24  0:37 ` [PATCH v3] " Darrick J. Wong
2018-12-27  8:08   ` Christoph Hellwig

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.