* [GIT PULL] reviewed patches for -dev tree
@ 2010-04-20 7:28 Dave Chinner
0 siblings, 0 replies; 3+ messages in thread
From: Dave Chinner @ 2010-04-20 7:28 UTC (permalink / raw)
To: aelder; +Cc: xfs
Hi Alex,
The following patches have been reviewed and are ready for pulling
into the xfs-dev tree.
We should also consider pushing the swap extents fix into the next
-rc release because it is a corruption fix.
Cheers,
Dave.
The following changes since commit f0ef9eb19288ba3ed213348ea1f581d7b83b451e:
Andrea Gelmini (1):
xfs: xfs_trace.c: duplicated include
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/dgc/xfs.git for-dev
Alex Elder (2):
xfs: record log sector size rather than log2(that)
xfs: kill off l_sectbb_mask
Christoph Hellwig (5):
xfs: wait for direct I/O to complete in fsync and write_inode
xfs: access quotainfo structure directly
xfs: remove a few macro indirections in the quota code
xfs: removed unused XFS_QMOPT_ flags
xfs: remove dead XFS_LOUD_RECOVERY code
Dave Chinner (1):
xfs: more swap extent fixes for dynamic fork offsets
fs/xfs/linux-2.6/xfs_file.c | 2 +
fs/xfs/linux-2.6/xfs_super.c | 1 +
fs/xfs/quota/xfs_dquot.c | 73 ++++++++++--------
fs/xfs/quota/xfs_dquot_item.c | 2 +-
fs/xfs/quota/xfs_qm.c | 160 ++++++++++++++++++++--------------------
fs/xfs/quota/xfs_qm_syscalls.c | 116 ++++++++++++++---------------
fs/xfs/quota/xfs_quota_priv.h | 27 -------
fs/xfs/quota/xfs_trans_dquot.c | 29 ++++----
fs/xfs/xfs_dfrag.c | 22 ++++--
fs/xfs/xfs_log.c | 32 ++++----
fs/xfs/xfs_log_priv.h | 4 +-
fs/xfs/xfs_log_recover.c | 106 +++++---------------------
fs/xfs/xfs_mount.c | 7 --
fs/xfs/xfs_quota.h | 3 -
14 files changed, 250 insertions(+), 334 deletions(-)
--
Dave Chinner
david@fromorbit.com
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 3+ messages in thread* [GIT PULL] reviewed patches for -dev tree
@ 2010-04-13 8:03 Dave Chinner
2010-04-14 5:59 ` Dave Chinner
0 siblings, 1 reply; 3+ messages in thread
From: Dave Chinner @ 2010-04-13 8:03 UTC (permalink / raw)
To: aelder; +Cc: xfs
Alex,
Can you please pull from the tree indicated below. It contains all
the outstanding reviewed patches not you committed to the xfs-dev
tree.
Also, the following commits in the pull request need to be pushed to
mainline for 2.6.34:
xfs: ensure that sync updates the log tail correctly
xfs: don't warn on EAGAIN in inode reclaim
The first addresses a regression introduced in 2.6.34-rc1, the
second silences a needless warning that is being reported on
2.6.33.
Thanks,
Dave.
The following changes since commit 68a2ac777cca40ccc993512bcf457999be71cc36:
Christoph Hellwig (1):
xfs: clean up xlog_write_adv_cnt
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/dgc/xfs.git for-dev
Alex Elder (6):
xfs: add const qualifiers to xfs error function args
xfs: fix min bufsize bugs in two places
xfs: simplify XLOG_SECTOR_ROUND*()
xfs: kill XLOG_SECTOR_ROUND*()
xfs: encapsulate bbcount validity checking
xfs: nothing special about 1-block log sector
Christoph Hellwig (1):
xfs: remove xfs_dqmarker
Dave Chinner (7):
xfs: ensure that sync updates the log tail correctly
xfs: don't warn on EAGAIN in inode reclaim
xfs: add log item recovery tracing
xfs: convert the per-mount dquot list to use list heads
xfs: remove duplicate code from dquot reclaim
xfs: convert the dquot hash list to use list heads
xfs: convert the dquot free list to use list heads
fs/xfs/linux-2.6/xfs_sync.c | 4 +-
fs/xfs/linux-2.6/xfs_trace.c | 3 +
fs/xfs/linux-2.6/xfs_trace.h | 141 +++++++++++-
fs/xfs/quota/xfs_dquot.c | 120 ++++------
fs/xfs/quota/xfs_dquot.h | 35 +---
fs/xfs/quota/xfs_qm.c | 515 ++++++++++++++--------------------------
fs/xfs/quota/xfs_qm.h | 23 +--
fs/xfs/quota/xfs_qm_stats.c | 2 +-
fs/xfs/quota/xfs_qm_syscalls.c | 38 ++--
fs/xfs/quota/xfs_quota_priv.h | 75 ------
fs/xfs/xfs_buf_item.h | 2 +-
fs/xfs/xfs_error.c | 30 ++--
fs/xfs/xfs_error.h | 9 +-
fs/xfs/xfs_log.c | 38 ++-
fs/xfs/xfs_log_recover.c | 155 +++++++++----
fs/xfs/xfs_trans.h | 9 +
16 files changed, 562 insertions(+), 637 deletions(-)
--
Dave Chinner
david@fromorbit.com
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [GIT PULL] reviewed patches for -dev tree
2010-04-13 8:03 Dave Chinner
@ 2010-04-14 5:59 ` Dave Chinner
0 siblings, 0 replies; 3+ messages in thread
From: Dave Chinner @ 2010-04-14 5:59 UTC (permalink / raw)
To: aelder; +Cc: xfs
On Tue, Apr 13, 2010 at 06:03:57PM +1000, Dave Chinner wrote:
> Alex,
>
> Can you please pull from the tree indicated below. It contains all
> the outstanding reviewed patches not you committed to the xfs-dev
> tree.
>
> Also, the following commits in the pull request need to be pushed to
> mainline for 2.6.34:
>
> xfs: ensure that sync updates the log tail correctly
> xfs: don't warn on EAGAIN in inode reclaim
>
> The first addresses a regression introduced in 2.6.34-rc1, the
> second silences a needless warning that is being reported on
> 2.6.33.
I just updated the branch with this commit appended:
xfs: make the log ticket transaction id random
So it now looks like:
The following changes since commit 68a2ac777cca40ccc993512bcf457999be71cc36:
Christoph Hellwig (1):
xfs: clean up xlog_write_adv_cnt
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/dgc/xfs.git ..BRANCH.NOT.VERIFIED..
Alex Elder (6):
xfs: add const qualifiers to xfs error function args
xfs: fix min bufsize bugs in two places
xfs: simplify XLOG_SECTOR_ROUND*()
xfs: kill XLOG_SECTOR_ROUND*()
xfs: encapsulate bbcount validity checking
xfs: nothing special about 1-block log sector
Christoph Hellwig (1):
xfs: remove xfs_dqmarker
Dave Chinner (8):
xfs: ensure that sync updates the log tail correctly
xfs: don't warn on EAGAIN in inode reclaim
xfs: add log item recovery tracing
xfs: convert the per-mount dquot list to use list heads
xfs: remove duplicate code from dquot reclaim
xfs: convert the dquot hash list to use list heads
xfs: convert the dquot free list to use list heads
xfs: make the log ticket transaction id random
fs/xfs/linux-2.6/xfs_sync.c | 4 +-
fs/xfs/linux-2.6/xfs_trace.c | 3 +
fs/xfs/linux-2.6/xfs_trace.h | 141 +++++++++++-
fs/xfs/quota/xfs_dquot.c | 120 ++++------
fs/xfs/quota/xfs_dquot.h | 35 +---
fs/xfs/quota/xfs_qm.c | 515 ++++++++++++++--------------------------
fs/xfs/quota/xfs_qm.h | 23 +--
fs/xfs/quota/xfs_qm_stats.c | 2 +-
fs/xfs/quota/xfs_qm_syscalls.c | 38 ++--
fs/xfs/quota/xfs_quota_priv.h | 75 ------
fs/xfs/xfs_buf_item.h | 2 +-
fs/xfs/xfs_error.c | 30 ++--
fs/xfs/xfs_error.h | 9 +-
fs/xfs/xfs_log.c | 40 ++-
fs/xfs/xfs_log_recover.c | 155 +++++++++----
fs/xfs/xfs_trans.h | 9 +
16 files changed, 563 insertions(+), 638 deletions(-)
--
Dave Chinner
david@fromorbit.com
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-04-20 7:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-20 7:28 [GIT PULL] reviewed patches for -dev tree Dave Chinner
-- strict thread matches above, loose matches on Subject: below --
2010-04-13 8:03 Dave Chinner
2010-04-14 5:59 ` Dave Chinner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox