All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andreas Gruenbacher <agruenba@redhat.com>
To: Christoph Hellwig <hch@lst.de>
Cc: linux-fsdevel <linux-fsdevel@vger.kernel.org>,
	cluster-devel <cluster-devel@redhat.com>
Subject: Re: [PATCH v9 1/5] iomap: add private pointer to struct iomap
Date: Mon, 18 Jun 2018 17:25:42 +0200	[thread overview]
Message-ID: <CAHc6FU67rmmbA6m+CWmiq+tBRry4w1E+9P0c96vGy_y8Q27K=A@mail.gmail.com> (raw)
In-Reply-To: <20180615121922.13237-2-agruenba@redhat.com>

Hi Christoph,

On 15 June 2018 at 14:19, Andreas Gruenbacher <agruenba@redhat.com> wrote:
> Add a private pointer to struct iomap to allow filesystems to pass data
> from iomap_begin to iomap_end.  Will be used by gfs2 for passing on the
> on-disk inode buffer head.
>
> Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
> ---
>  include/linux/iomap.h | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/include/linux/iomap.h b/include/linux/iomap.h
> index 43cc9208599f..9962dcb836b9 100644
> --- a/include/linux/iomap.h
> +++ b/include/linux/iomap.h
> @@ -59,6 +59,7 @@ struct iomap {
>                 struct dax_device   *dax_dev;
>                 void                *inline_data;
>         };
> +       void                    *private; /* filesystem private */
>
>         /*
>          * Called when finished processing a page in the mapping returned in
> --
> 2.17.1

any objections? If not, could you please add this to the shared branch?

Thanks,
Andreas

WARNING: multiple messages have this Message-ID (diff)
From: Andreas Gruenbacher <agruenba@redhat.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] [PATCH v9 1/5] iomap: add private pointer to struct iomap
Date: Mon, 18 Jun 2018 17:25:42 +0200	[thread overview]
Message-ID: <CAHc6FU67rmmbA6m+CWmiq+tBRry4w1E+9P0c96vGy_y8Q27K=A@mail.gmail.com> (raw)
In-Reply-To: <20180615121922.13237-2-agruenba@redhat.com>

Hi Christoph,

On 15 June 2018 at 14:19, Andreas Gruenbacher <agruenba@redhat.com> wrote:
> Add a private pointer to struct iomap to allow filesystems to pass data
> from iomap_begin to iomap_end.  Will be used by gfs2 for passing on the
> on-disk inode buffer head.
>
> Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
> ---
>  include/linux/iomap.h | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/include/linux/iomap.h b/include/linux/iomap.h
> index 43cc9208599f..9962dcb836b9 100644
> --- a/include/linux/iomap.h
> +++ b/include/linux/iomap.h
> @@ -59,6 +59,7 @@ struct iomap {
>                 struct dax_device   *dax_dev;
>                 void                *inline_data;
>         };
> +       void                    *private; /* filesystem private */
>
>         /*
>          * Called when finished processing a page in the mapping returned in
> --
> 2.17.1

any objections? If not, could you please add this to the shared branch?

Thanks,
Andreas



  reply	other threads:[~2018-06-18 15:25 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-15 12:19 [PATCH v9 0/5] gfs2 iomap write support Andreas Gruenbacher
2018-06-15 12:19 ` [Cluster-devel] " Andreas Gruenbacher
2018-06-15 12:19 ` [PATCH v9 1/5] iomap: add private pointer to struct iomap Andreas Gruenbacher
2018-06-15 12:19   ` [Cluster-devel] " Andreas Gruenbacher
2018-06-18 15:25   ` Andreas Gruenbacher [this message]
2018-06-18 15:25     ` Andreas Gruenbacher
2018-06-19  6:29   ` Christoph Hellwig
2018-06-19  6:29     ` [Cluster-devel] " Christoph Hellwig
2018-06-15 12:19 ` [PATCH v9 2/5] gfs2: iomap buffered write support Andreas Gruenbacher
2018-06-15 12:19   ` [Cluster-devel] " Andreas Gruenbacher
2018-06-19  6:36   ` Christoph Hellwig
2018-06-19  6:36     ` [Cluster-devel] " Christoph Hellwig
2018-06-15 12:19 ` [PATCH v9 3/5] gfs2: gfs2_extent_length cleanup Andreas Gruenbacher
2018-06-15 12:19   ` [Cluster-devel] " Andreas Gruenbacher
2018-06-15 12:19 ` [PATCH v9 4/5] gfs2: iomap direct I/O support Andreas Gruenbacher
2018-06-15 12:19   ` [Cluster-devel] " Andreas Gruenbacher
2018-06-19  6:42   ` Christoph Hellwig
2018-06-19  6:42     ` [Cluster-devel] " Christoph Hellwig
2018-06-20 16:00     ` Andreas Gruenbacher
2018-06-20 16:00       ` [Cluster-devel] " Andreas Gruenbacher
2018-06-15 12:19 ` [PATCH v9 5/5] gfs2: Remove gfs2_write_{begin,end} Andreas Gruenbacher
2018-06-15 12:19   ` [Cluster-devel] [PATCH v9 5/5] gfs2: Remove gfs2_write_{begin, end} Andreas Gruenbacher

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='CAHc6FU67rmmbA6m+CWmiq+tBRry4w1E+9P0c96vGy_y8Q27K=A@mail.gmail.com' \
    --to=agruenba@redhat.com \
    --cc=cluster-devel@redhat.com \
    --cc=hch@lst.de \
    --cc=linux-fsdevel@vger.kernel.org \
    /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.