From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it0-f68.google.com ([209.85.214.68]:51736 "EHLO mail-it0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754217AbeFRPZo (ORCPT ); Mon, 18 Jun 2018 11:25:44 -0400 Received: by mail-it0-f68.google.com with SMTP id n7-v6so12603705itn.1 for ; Mon, 18 Jun 2018 08:25:43 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20180615121922.13237-2-agruenba@redhat.com> References: <20180615121922.13237-1-agruenba@redhat.com> <20180615121922.13237-2-agruenba@redhat.com> From: Andreas Gruenbacher Date: Mon, 18 Jun 2018 17:25:42 +0200 Message-ID: Subject: Re: [PATCH v9 1/5] iomap: add private pointer to struct iomap To: Christoph Hellwig Cc: linux-fsdevel , cluster-devel Content-Type: text/plain; charset="UTF-8" Sender: linux-fsdevel-owner@vger.kernel.org List-ID: Hi Christoph, On 15 June 2018 at 14:19, Andreas Gruenbacher 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 > --- > 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Gruenbacher Date: Mon, 18 Jun 2018 17:25:42 +0200 Subject: [Cluster-devel] [PATCH v9 1/5] iomap: add private pointer to struct iomap In-Reply-To: <20180615121922.13237-2-agruenba@redhat.com> References: <20180615121922.13237-1-agruenba@redhat.com> <20180615121922.13237-2-agruenba@redhat.com> Message-ID: List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi Christoph, On 15 June 2018 at 14:19, Andreas Gruenbacher 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 > --- > 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