Signed-off-by: Christoph Hellwig <hch@xxxxxx>
Index: linux-2.6-xfs/fs/xfs/xfs_mount.h
===================================================================
--- linux-2.6-xfs.orig/fs/xfs/xfs_mount.h 2008-07-23 15:07:43.000000000
+0200
+++ linux-2.6-xfs/fs/xfs/xfs_mount.h 2008-07-23 15:07:51.000000000 +0200
@@ -313,8 +313,6 @@ typedef struct xfs_mount {
int m_attr_magicpct;/* 37% of the blocksize */
int m_dir_magicpct; /* 37% of the dir blocksize */
__uint8_t m_mk_sharedro; /* mark shared ro on unmount */
- __uint8_t m_inode_quiesce;/* call quiesce on new inodes.
- field governed by m_ilock */
__uint8_t m_sectbb_log; /* sectlog - BBSHIFT */
const struct xfs_nameops *m_dirnameops; /* vector of dir name ops */
int m_dirblksize; /* directory block sz--bytes */
Index: linux-2.6-xfs/fs/xfs/xfsidbg.c
===================================================================
--- linux-2.6-xfs.orig/fs/xfs/xfsidbg.c 2008-07-23 15:07:25.000000000 +0200
+++ linux-2.6-xfs/fs/xfs/xfsidbg.c 2008-07-23 15:07:38.000000000 +0200
@@ -6377,8 +6377,8 @@ xfsidbg_xmount(xfs_mount_t *mp)
kdb_printf("dalign %d swidth %d sinoalign %d attr_magicpct %d
dir_magicpct %d\n",
mp->m_dalign, mp->m_swidth, mp->m_sinoalign,
mp->m_attr_magicpct, mp->m_dir_magicpct);
- kdb_printf("mk_sharedro %d inode_quiesce %d sectbb_log %d\n",
- mp->m_mk_sharedro, mp->m_inode_quiesce, mp->m_sectbb_log);
+ kdb_printf("mk_sharedro %d sectbb_log %d\n",
+ mp->m_mk_sharedro, mp->m_sectbb_log);
kdb_printf("dirblkfsbs %d\n", mp->m_dirblkfsbs);
kdb_printf("dirblksize %d dirdatablk 0x%Lx dirleafblk 0x%Lx dirfreeblk
0x%Lx\n",
mp->m_dirblksize,
|