public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] XFS update for 3.1-stable (again)
@ 2011-12-01 23:27 Ben Myers
  2011-12-01 23:27 ` [PATCH 1/6] xfs: don't serialise direct IO reads on page cache checks Ben Myers
                   ` (6 more replies)
  0 siblings, 7 replies; 13+ messages in thread
From: Ben Myers @ 2011-12-01 23:27 UTC (permalink / raw)
  To: stable, greg; +Cc: bpm, xfs

This is a series of XFS fixes from current mainline which is important for
3.1-stable.  Note that it is the same patch set that Christoph submitted for
3.0-stable, minus the first three patches which are already included in 3.1.

My QA came out ok with these six patches atop 3.1.y.  I've been having trouble
getting mail out to stable@vger, but it seems to be working now.  Apologies to
those who are getting this mail yet again.

Carlos Maiolino (1):
  xfs: Fix possible memory corruption in xfs_readlink

Christoph Hellwig (2):
  xfs: avoid direct I/O write vs buffered I/O race
  xfs: fix buffer flushing during unmount

Dave Chinner (1):
  xfs: don't serialise direct IO reads on page cache checks

Mitsuo Hayasaka (2):
  xfs: Return -EIO when xfs_vn_getattr() failed
  xfs: use doalloc flag in xfs_qm_dqattach_one()

 fs/xfs/xfs_buf.h      |    1 -
 fs/xfs/xfs_file.c     |   34 ++++++++++++++++++++++++++++------
 fs/xfs/xfs_iops.c     |    2 +-
 fs/xfs/xfs_mount.c    |   29 ++++++++++-------------------
 fs/xfs/xfs_qm.c       |    3 ++-
 fs/xfs/xfs_vnodeops.c |   14 ++++++++++----
 6 files changed, 51 insertions(+), 32 deletions(-)

-- 
1.7.8.rc4

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 13+ messages in thread
* Re: [PATCH 0/6] XFS update for 3.1-stable
@ 2011-11-28 21:40 Greg KH
  2011-11-30 18:10 ` XFS update for 3.1-stable (resent) Ben Myers
  0 siblings, 1 reply; 13+ messages in thread
From: Greg KH @ 2011-11-28 21:40 UTC (permalink / raw)
  To: Ben Myers; +Cc: Christoph Hellwig, stable, xfs

On Mon, Nov 28, 2011 at 10:54:18AM -0600, Ben Myers wrote:
> Hey Greg,
> 
> On Mon, Nov 28, 2011 at 10:48:29PM +0900, Greg KH wrote:
> > On Mon, Nov 28, 2011 at 06:00:43AM -0500, Christoph Hellwig wrote:
> > > On Wed, Nov 23, 2011 at 03:38:07PM -0600, Ben Myers wrote:
> > > > This is a series of XFS fixes from current mainline which is important for
> > > > 3.1-stable.  Note that it is the same patch set that Christoph submitted for
> > > > 3.0-stable, minus the first three patches which are already included in 3.1.
> > > > 
> > > > My QA came out ok with these six patches atop 3.1.y.  Apologies to those who
> > > > got this mail twice. 
> > > 
> > > The updates looks good to me.
> > 
> > I never saw this series once, can someone please resend them as I don't
> > see them anywhere.
> 
> The first time I sent this 3.1.y series you were not on the --to=, which
> is why some people got the series twice but you didn't.  Sorry for the
> confusion. 

Was stable@vger.kernel.org on the to: line?  If so, I should have seen
them through that, but I don't, which is worrysome to me.

> Do you need the series for 3.0 to be resubmitted?

The 3.0 series is already in the last 3.0.11 release, so I don't need
them, I think I need the 3.1 patches, right?

thanks,

greg k-h

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH 0/6] XFS update for 3.1-stable
@ 2011-11-23 21:38 Ben Myers
  2011-11-23 21:38 ` [PATCH 1/6] xfs: don't serialise direct IO reads on page cache checks Ben Myers
  0 siblings, 1 reply; 13+ messages in thread
From: Ben Myers @ 2011-11-23 21:38 UTC (permalink / raw)
  To: stable; +Cc: xfs

This is a series of XFS fixes from current mainline which is important for
3.1-stable.  Note that it is the same patch set that Christoph submitted for
3.0-stable, minus the first three patches which are already included in 3.1.

My QA came out ok with these six patches atop 3.1.y.  Apologies to those who
got this mail twice. 

Thanks,
	Ben



_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH 0/6] xfs: patch queue for Linux 3.2
@ 2011-08-25  7:17 Dave Chinner
  2011-08-25  7:17 ` [PATCH 1/6] xfs: don't serialise direct IO reads on page cache checks Dave Chinner
  0 siblings, 1 reply; 13+ messages in thread
From: Dave Chinner @ 2011-08-25  7:17 UTC (permalink / raw)
  To: xfs

These are the previously posted and commented on patches to fix the
dio locking serialisation issues, a couple of small optimisations,
and the conversion of the xfsbufd thread to a work queue.

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

end of thread, other threads:[~2011-12-06 17:05 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-01 23:27 [PATCH 0/6] XFS update for 3.1-stable (again) Ben Myers
2011-12-01 23:27 ` [PATCH 1/6] xfs: don't serialise direct IO reads on page cache checks Ben Myers
2011-12-01 23:27 ` [PATCH 2/6] xfs: avoid direct I/O write vs buffered I/O race Ben Myers
2011-12-01 23:27 ` [PATCH 3/6] xfs: Return -EIO when xfs_vn_getattr() failed Ben Myers
2011-12-01 23:27 ` [PATCH 4/6] xfs: fix buffer flushing during unmount Ben Myers
2011-12-01 23:27 ` [PATCH 5/6] xfs: Fix possible memory corruption in xfs_readlink Ben Myers
2011-12-01 23:27 ` [PATCH 6/6] xfs: use doalloc flag in xfs_qm_dqattach_one() Ben Myers
2011-12-01 23:33 ` [PATCH 0/6] XFS update for 3.1-stable (again) Greg KH
2011-12-02 23:12   ` Greg KH
2011-12-06 17:05     ` Ben Myers
  -- strict thread matches above, loose matches on Subject: below --
2011-11-28 21:40 [PATCH 0/6] XFS update for 3.1-stable Greg KH
2011-11-30 18:10 ` XFS update for 3.1-stable (resent) Ben Myers
2011-11-30 18:10   ` [PATCH 1/6] xfs: don't serialise direct IO reads on page cache checks Ben Myers
2011-11-23 21:38 [PATCH 0/6] XFS update for 3.1-stable Ben Myers
2011-11-23 21:38 ` [PATCH 1/6] xfs: don't serialise direct IO reads on page cache checks Ben Myers
2011-08-25  7:17 [PATCH 0/6] xfs: patch queue for Linux 3.2 Dave Chinner
2011-08-25  7:17 ` [PATCH 1/6] xfs: don't serialise direct IO reads on page cache checks Dave Chinner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox