This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "XFS development tree".
The branch, master has been updated
a0f7bfd fs/xfs: Correct redundant test
eb00457 xfs: remove XFS_INO64_OFFSET
fef1111 un-static xfs_read_agf
d96f8f8 xfs: add more statics & drop some unused functions
bc990f5 xfs: fix locking in xfs_iget_cache_hit
78efd1d Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
a8914f3 xfs: fix spin_is_locked assert on uni-processor builds
b89d420 xfs: check for dinode realtime flag corruption
e0c222c use XFS_CORRUPTION_ERROR in xfs_btree_check_sblock
ddd3a14 xfs: switch to NOFS allocation under i_lock in xfs_attr_rmtval_get
7b02ecb xfs: switch to NOFS allocation under i_lock in xfs_readlink_bmap
10746e4 xfs: switch to NOFS allocation under i_lock in xfs_attr_rmtval_set
36fae17 xfs: switch to NOFS allocation under i_lock in
xfs_buf_associate_memory
3f52c2f xfs: switch to NOFS allocation under i_lock in xfs_dir_cilookup_result
73195ed xfs: switch to NOFS allocation under i_lock in xfs_da_buf_make
f41d7fb xfs: switch to NOFS allocation under i_lock in xfs_da_state_alloc
ca35dcd xfs: switch to NOFS allocation under i_lock in xfs_getbmap
0cc6eee xfs: avoid memory allocation under m_peraglock in growfs code
b36ec04 xfs: fix freeing of inodes not yet added to the inode cache
54e3462 vfs: fix inode_init_always calling convention
f5266cb Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
c8a4051 xfs: bump up nr_to_write in xfs_vm_writepage
97db39a xfs: reduce bmv_count in xfs_vn_fiemap
405f557 headers: smp_lock.h redux
8aa7e84 Fix congestion_wait() sync/async vs read/write confusion
1cbd20d switch xfs to generic acl caching helpers
90c699a block: rename CONFIG_LBD to CONFIG_LBDAF
fd40261 Merge branch 'master' of git://oss.sgi.com/xfs/xfs into for-linus
f950221 xfs: remove ->write_super and stop maintaining ->s_dirt
c905959 Merge branch 'for-2.6.31' of git://git.kernel.dk/linux-2.6-block
e1defc4 block: Do away with the notion of hardsect_size
from a022fe09700365c51d1f55884bca9754eb96a802 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a0f7bfd3429fc48f4d1aa5364b9428d75798ba04
Author: Julia Lawall <julia@xxxxxxx>
Date: Mon Jul 27 18:15:25 2009 +0200
fs/xfs: Correct redundant test
bp was tested for NULL a few lines before, followed by a return, and there
is no intervening modification of its value.
A simplified version of the semantic match that finds this problem is as
follows: (http://www.emn.fr/x-info/coccinelle/)
// <smpl>
@r exists@
local idexpression x;
expression E;
position p1,p2;
@@
if (x == NULL || ...) { ... when forall
return ...; }
... when != \(x=E\|x--\|x++\|--x\|++x\|x-=E\|x+=E\|x|=E\|x&=E\|&x\)
(
*x == NULL
|
*x != NULL
)
// </smpl>
Signed-off-by: Julia Lawall <julia@xxxxxxx>
Acked-by: Felix Blyakher <felixb@xxxxxxx>
Signed-off-by: Felix Blyakher <felixb@xxxxxxx>
commit eb00457d624c70a2492c319e7e05ed7e067b2794
Author: Eric Sandeen <sandeen@xxxxxxxxxxx>
Date: Sun Jul 5 12:23:35 2009 -0500
xfs: remove XFS_INO64_OFFSET
Commit a19d9f887d81106d52cacbc9930207b487e07e0e removed the
ino64 option but left the XFS_INO64_OFFSET define it used
in place - just remove it.
Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxxx>
Reviewed-by: Christoph Hellwig <hch@xxxxxx>
Reviewed-by: Felix Blyakher <felixb@xxxxxxx>
Signed-off-by: Felix Blyakher <felixb@xxxxxxx>
commit fef1111ecdd2b5198afe91537a5cd4c6be80a255
Author: Eric Sandeen <sandeen@xxxxxxxxxxx>
Date: Thu Jul 2 21:35:43 2009 -0500
un-static xfs_read_agf
CONFIG_XFS_DEBUG builds still need xfs_read_agf to be
non-static, oops.
Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxxx>
Reviewed-by: Felix Blyakher <felixb@xxxxxxx>
Signed-off-by: Felix Blyakher <felixb@xxxxxxx>
commit d96f8f891f69ac1dc8c7bd82e27525de220c04e1
Author: Eric Sandeen <sandeen@xxxxxxxxxxx>
Date: Thu Jul 2 00:09:33 2009 -0500
xfs: add more statics & drop some unused functions
A lot more functions could be made static, but they need
forward declarations; this does some easy ones, and also
found a few unused functions in the process.
Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxxx>
Reviewed-by: Christoph Hellwig <hch@xxxxxx>
Signed-off-by: Felix Blyakher <felixb@xxxxxxx>
-----------------------------------------------------------------------
Summary of changes:
fs/xfs/linux-2.6/kmem.c | 4 +-
fs/xfs/linux-2.6/xfs_acl.c | 73 +++-------------------
fs/xfs/linux-2.6/xfs_buf.c | 4 +-
fs/xfs/linux-2.6/xfs_file.c | 1 -
fs/xfs/linux-2.6/xfs_linux.h | 2 +-
fs/xfs/linux-2.6/xfs_super.c | 14 +----
fs/xfs/xfs_acl.h | 4 -
fs/xfs/xfs_iget.c | 142 +++++++++++++++++++++---------------------
fs/xfs/xfs_inode.h | 22 -------
fs/xfs/xfs_trans.c | 2 -
10 files changed, 87 insertions(+), 181 deletions(-)
hooks/post-receive
--
XFS development tree
|