linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] fs/iomap: Fix buffered write page prefaulting
@ 2022-03-25 14:37 Andreas Gruenbacher
  2022-03-26  0:03 ` Darrick J. Wong
  2022-03-26 20:18 ` pr-tracker-bot
  0 siblings, 2 replies; 5+ messages in thread
From: Andreas Gruenbacher @ 2022-03-25 14:37 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Andreas Gruenbacher, cluster-devel, linux-kernel, linux-fsdevel,
	Catalin Marinas, Christoph Hellwig

Hello Linus,

please consider pulling the following fix, which I've forgotten to send
in the previous merge window.  I've only improved the patch description
since.

Thank you very much,
Andreas

The following changes since commit 42eb8fdac2fc5d62392dcfcf0253753e821a97b0:

  Merge tag 'gfs2-v5.16-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2 (2021-11-17 15:55:07 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git tags/write-page-prefaulting

for you to fetch changes up to 631f871f071746789e9242e514ab0f49067fa97a:

  fs/iomap: Fix buffered write page prefaulting (2022-03-25 15:14:03 +0100)

----------------------------------------------------------------
Fix buffered write page prefaulting

----------------------------------------------------------------
Andreas Gruenbacher (1):
      fs/iomap: Fix buffered write page prefaulting

 fs/iomap/buffered-io.c | 2 +-
 mm/filemap.c           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


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

* Re: [GIT PULL] fs/iomap: Fix buffered write page prefaulting
  2022-03-25 14:37 [GIT PULL] fs/iomap: Fix buffered write page prefaulting Andreas Gruenbacher
@ 2022-03-26  0:03 ` Darrick J. Wong
  2022-03-26  0:22   ` Andreas Gruenbacher
  2022-03-26 20:18 ` pr-tracker-bot
  1 sibling, 1 reply; 5+ messages in thread
From: Darrick J. Wong @ 2022-03-26  0:03 UTC (permalink / raw)
  To: Andreas Gruenbacher
  Cc: Linus Torvalds, cluster-devel, linux-kernel, linux-fsdevel,
	Catalin Marinas, Christoph Hellwig

On Fri, Mar 25, 2022 at 03:37:01PM +0100, Andreas Gruenbacher wrote:
> Hello Linus,
> 
> please consider pulling the following fix, which I've forgotten to send
> in the previous merge window.  I've only improved the patch description
> since.
> 
> Thank you very much,
> Andreas
> 
> The following changes since commit 42eb8fdac2fc5d62392dcfcf0253753e821a97b0:
> 
>   Merge tag 'gfs2-v5.16-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2 (2021-11-17 15:55:07 -0800)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git tags/write-page-prefaulting
> 
> for you to fetch changes up to 631f871f071746789e9242e514ab0f49067fa97a:
> 
>   fs/iomap: Fix buffered write page prefaulting (2022-03-25 15:14:03 +0100)

When was this sent to fsdevel for public consideration?  The last time I
saw any patches related to prefaulting in iomap was November.

--D

> 
> ----------------------------------------------------------------
> Fix buffered write page prefaulting
> 
> ----------------------------------------------------------------
> Andreas Gruenbacher (1):
>       fs/iomap: Fix buffered write page prefaulting
> 
>  fs/iomap/buffered-io.c | 2 +-
>  mm/filemap.c           | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 

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

* Re: [GIT PULL] fs/iomap: Fix buffered write page prefaulting
  2022-03-26  0:03 ` Darrick J. Wong
@ 2022-03-26  0:22   ` Andreas Gruenbacher
  2022-03-26  1:41     ` Darrick J. Wong
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Gruenbacher @ 2022-03-26  0:22 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: Linus Torvalds, cluster-devel, LKML, linux-fsdevel,
	Catalin Marinas, Christoph Hellwig

On Sat, Mar 26, 2022 at 1:03 AM Darrick J. Wong <djwong@kernel.org> wrote:
> On Fri, Mar 25, 2022 at 03:37:01PM +0100, Andreas Gruenbacher wrote:
> > Hello Linus,
> >
> > please consider pulling the following fix, which I've forgotten to send
> > in the previous merge window.  I've only improved the patch description
> > since.
> >
> > Thank you very much,
> > Andreas
> >
> > The following changes since commit 42eb8fdac2fc5d62392dcfcf0253753e821a97b0:
> >
> >   Merge tag 'gfs2-v5.16-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2 (2021-11-17 15:55:07 -0800)
> >
> > are available in the Git repository at:
> >
> >   https://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git tags/write-page-prefaulting
> >
> > for you to fetch changes up to 631f871f071746789e9242e514ab0f49067fa97a:
> >
> >   fs/iomap: Fix buffered write page prefaulting (2022-03-25 15:14:03 +0100)
>
> When was this sent to fsdevel for public consideration?  The last time I
> saw any patches related to prefaulting in iomap was November.

On November 23, exact same patch:

https://lore.kernel.org/linux-fsdevel/20211123151812.361624-1-agruenba@redhat.com/

Andreas


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

* Re: [GIT PULL] fs/iomap: Fix buffered write page prefaulting
  2022-03-26  0:22   ` Andreas Gruenbacher
@ 2022-03-26  1:41     ` Darrick J. Wong
  0 siblings, 0 replies; 5+ messages in thread
From: Darrick J. Wong @ 2022-03-26  1:41 UTC (permalink / raw)
  To: Andreas Gruenbacher
  Cc: Linus Torvalds, cluster-devel, LKML, linux-fsdevel,
	Catalin Marinas, Christoph Hellwig

On Sat, Mar 26, 2022 at 01:22:17AM +0100, Andreas Gruenbacher wrote:
> On Sat, Mar 26, 2022 at 1:03 AM Darrick J. Wong <djwong@kernel.org> wrote:
> > On Fri, Mar 25, 2022 at 03:37:01PM +0100, Andreas Gruenbacher wrote:
> > > Hello Linus,
> > >
> > > please consider pulling the following fix, which I've forgotten to send
> > > in the previous merge window.  I've only improved the patch description
> > > since.
> > >
> > > Thank you very much,
> > > Andreas
> > >
> > > The following changes since commit 42eb8fdac2fc5d62392dcfcf0253753e821a97b0:
> > >
> > >   Merge tag 'gfs2-v5.16-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2 (2021-11-17 15:55:07 -0800)
> > >
> > > are available in the Git repository at:
> > >
> > >   https://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git tags/write-page-prefaulting
> > >
> > > for you to fetch changes up to 631f871f071746789e9242e514ab0f49067fa97a:
> > >
> > >   fs/iomap: Fix buffered write page prefaulting (2022-03-25 15:14:03 +0100)
> >
> > When was this sent to fsdevel for public consideration?  The last time I
> > saw any patches related to prefaulting in iomap was November.
> 
> On November 23, exact same patch:
> 
> https://lore.kernel.org/linux-fsdevel/20211123151812.361624-1-agruenba@redhat.com/

Ah, ok, so I just missed it then.  Sorry about that, I seem to suck as
maintainer more and more by the day. :( :(

(Hey, at least you got the other maintainer to RVB it...)

--D

> Andreas
> 

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

* Re: [GIT PULL] fs/iomap: Fix buffered write page prefaulting
  2022-03-25 14:37 [GIT PULL] fs/iomap: Fix buffered write page prefaulting Andreas Gruenbacher
  2022-03-26  0:03 ` Darrick J. Wong
@ 2022-03-26 20:18 ` pr-tracker-bot
  1 sibling, 0 replies; 5+ messages in thread
From: pr-tracker-bot @ 2022-03-26 20:18 UTC (permalink / raw)
  To: Andreas Gruenbacher
  Cc: Linus Torvalds, Andreas Gruenbacher, cluster-devel, linux-kernel,
	linux-fsdevel, Catalin Marinas, Christoph Hellwig

The pull request you sent on Fri, 25 Mar 2022 15:37:01 +0100:

> https://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git tags/write-page-prefaulting

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/a060c9409e25d573c23fccb8e02f098aa33f812e

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2022-03-26 20:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-25 14:37 [GIT PULL] fs/iomap: Fix buffered write page prefaulting Andreas Gruenbacher
2022-03-26  0:03 ` Darrick J. Wong
2022-03-26  0:22   ` Andreas Gruenbacher
2022-03-26  1:41     ` Darrick J. Wong
2022-03-26 20:18 ` pr-tracker-bot

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