public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] XFS update for 2.6.23
@ 2007-09-18 11:24 Tim Shimmin
  2007-09-19 17:50 ` Eric Sandeen
  0 siblings, 1 reply; 3+ messages in thread
From: Tim Shimmin @ 2007-09-18 11:24 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, xfs, akpm

Hi Linus,

A couple of fixes for potential fs corruption.
And one fix to ensure that xfs_mru_cache is not
doing anything unless the cache has active objects.


Please pull from the for-linus branch:
    git pull git://oss.sgi.com:8090/xfs/xfs-2.6.git for-linus

This will update the following files:

 fs/xfs/linux-2.6/xfs_aops.c  |    1 +
 fs/xfs/linux-2.6/xfs_super.c |    4 ++-
 fs/xfs/xfs_buf_item.h        |    5 +++
 fs/xfs/xfs_filestream.c      |    3 +-
 fs/xfs/xfs_log_recover.c     |   51 ++++++++++++++++++++++++++++--
 fs/xfs/xfs_mru_cache.c       |   72 ++++++++++++++++-------------------------
 fs/xfs/xfs_mru_cache.h       |    6 +--
 fs/xfs/xfs_trans_buf.c       |    1 +
 fs/xfs/xfs_vnodeops.c        |   20 +++++++-----
 9 files changed, 101 insertions(+), 62 deletions(-)

through these commits:

commit b394e43e995d08821588a22561c6a71a63b4ff27
Author: Lachlan McIlroy <lachlan@sgi.com>
Date:   Fri Sep 14 15:23:04 2007 +1000

    [XFS] Avoid replaying inode buffer initialisation log items if on-disk version is newer.
    
    SGI-PV: 969656
    SGI-Modid: xfs-linux-melb:xfs-kern:29676a
    
    Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
    Signed-off-by: David Chinner <dgc@sgi.com>
    Signed-off-by: Tim Shimmin <tes@sgi.com>

commit 776a75fa5cfb8f3602d3ca9d221dc34497133f4b
Author: Lachlan McIlroy <lachlan@sgi.com>
Date:   Fri Sep 14 15:22:50 2007 +1000

    [XFS] Ensure file size updates have been completed before writing inode to disk.
    
    SGI-PV: 968767
    SGI-Modid: xfs-linux-melb:xfs-kern:29675a
    
    Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
    Signed-off-by: David Chinner <dgc@sgi.com>
    Signed-off-by: Tim Shimmin <tes@sgi.com>

commit 65de5567564e70edd01b6d4e95e548d7ba284872
Author: David Chinner <dgc@sgi.com>
Date:   Thu Aug 16 15:21:11 2007 +1000

    [XFS] On-demand reaping of the MRU cache
    
    Instead of running the mru cache reaper all the time based on a timeout,
    we should only run it when the cache has active objects. This allows CPUs
    to sleep when there is no activity rather than be woken repeatedly just to
    check if there is anything to do.
    
    SGI-PV: 968554
    SGI-Modid: xfs-linux-melb:xfs-kern:29305a
    
    Signed-off-by: David Chinner <dgc@sgi.com>
    Signed-off-by: Donald Douwsma <donaldd@sgi.com>
    Signed-off-by: Tim Shimmin <tes@sgi.com>

--Tim

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

* Re: [GIT PULL] XFS update for 2.6.23
  2007-09-18 11:24 [GIT PULL] XFS update for 2.6.23 Tim Shimmin
@ 2007-09-19 17:50 ` Eric Sandeen
  2007-09-20  7:35   ` Timothy Shimmin
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Sandeen @ 2007-09-19 17:50 UTC (permalink / raw)
  To: Tim Shimmin; +Cc: xfs

Tim Shimmin wrote:
> Hi Linus,
> 
> A couple of fixes for potential fs corruption.
> And one fix to ensure that xfs_mru_cache is not
> doing anything unless the cache has active objects.

cc: trimmed...

Seems like you should push the filestreams fix too?

http://oss.sgi.com/cgi-bin/gitweb.cgi?p=xfs/xfs-2.6.git;a=commitdiff;h=f4b26d9d73e38ff915720440b1c373fb239a4254

Thanks,

-Eric

p.s. just FWIW, here are the patches I'm currently carrying in F8:

linux-2.6-xfs-avoid-replaying-inode-buffer-init.patch	In for-linus
linux-2.6-xfs-filesize-updates.patch			In for-linus
linux-2.6-xfs-filestreams-on-demand-MRU-reaping.patch	In for-linus
linux-2.6-xfs-fix-filestreams-free-func-cast.patch
linux-2.6-xfs-optimize-away-dmapi-tests.patch
linux-2.6-xfs-optimize-away-realtime-tests.patch
linux-2.6-xfs-refactor-xfs_mountfs.patch
linux-2.6-xfs-setfattr-32bit-compat.patch

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

* Re: [GIT PULL] XFS update for 2.6.23
  2007-09-19 17:50 ` Eric Sandeen
@ 2007-09-20  7:35   ` Timothy Shimmin
  0 siblings, 0 replies; 3+ messages in thread
From: Timothy Shimmin @ 2007-09-20  7:35 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: xfs

Hi Eric,

Thanks.
I'll add that commit along with the sparse one...
    commit f5076f1243d6007145c0a658fbe05ace6b90a33f
    Author: Christoph Hellwig <hch@infradead.org>
    Date:   Wed Sep 19 15:27:30 2007 +1000

     [XFS] fix valid but harmless sparse warning

--Tim

Eric Sandeen wrote:
> Tim Shimmin wrote:
>> Hi Linus,
>>
>> A couple of fixes for potential fs corruption.
>> And one fix to ensure that xfs_mru_cache is not
>> doing anything unless the cache has active objects.
> 
> cc: trimmed...
> 
> Seems like you should push the filestreams fix too?
> 
> http://oss.sgi.com/cgi-bin/gitweb.cgi?p=xfs/xfs-2.6.git;a=commitdiff;h=f4b26d9d73e38ff915720440b1c373fb239a4254
> 
> Thanks,
> 
> -Eric
> 
> p.s. just FWIW, here are the patches I'm currently carrying in F8:
> 
> linux-2.6-xfs-avoid-replaying-inode-buffer-init.patch	In for-linus
> linux-2.6-xfs-filesize-updates.patch			In for-linus
> linux-2.6-xfs-filestreams-on-demand-MRU-reaping.patch	In for-linus
> linux-2.6-xfs-fix-filestreams-free-func-cast.patch
> linux-2.6-xfs-optimize-away-dmapi-tests.patch
> linux-2.6-xfs-optimize-away-realtime-tests.patch
> linux-2.6-xfs-refactor-xfs_mountfs.patch
> linux-2.6-xfs-setfattr-32bit-compat.patch

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

end of thread, other threads:[~2007-09-20  7:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-18 11:24 [GIT PULL] XFS update for 2.6.23 Tim Shimmin
2007-09-19 17:50 ` Eric Sandeen
2007-09-20  7:35   ` Timothy Shimmin

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