diff options
author | Dave Kleikamp | 2005-10-03 22:32:11 +0200 |
---|---|---|
committer | Dave Kleikamp | 2005-10-03 22:32:11 +0200 |
commit | ac17b8b57013a3e38d1958f66a218f15659e5752 (patch) | |
tree | f7a28ccd5bd5496f6a2284f3d77a5019dc75c820 /fs/jfs/jfs_dmap.c | |
parent | [PATCH] x86_64: Fix numa node topology detection for srat based x86_64 boxes (diff) | |
download | kernel-qcow2-linux-ac17b8b57013a3e38d1958f66a218f15659e5752.tar.gz kernel-qcow2-linux-ac17b8b57013a3e38d1958f66a218f15659e5752.tar.xz kernel-qcow2-linux-ac17b8b57013a3e38d1958f66a218f15659e5752.zip |
JFS: make special inodes play nicely with page balancing
This patch fixes up a few problems with jfs's reserved inodes.
1. There is no need for the jfs code setting the I_DIRTY bits in i_state.
I am ashamed that the code ever did this, and surprised it hasn't been
noticed until now.
2. Make sure special inodes are on an inode hash list. If the inodes are
unhashed, __mark_inode_dirty will fail to put the inode on the
superblock's dirty list, and the data will not be flushed under memory
pressure.
3. Force writing journal data to disk when metapage_writepage is unable to
write a metadata page due to pending journal I/O.
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
Diffstat (limited to 'fs/jfs/jfs_dmap.c')
-rw-r--r-- | fs/jfs/jfs_dmap.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/jfs/jfs_dmap.c b/fs/jfs/jfs_dmap.c index eadf319bee22..51c02bf07878 100644 --- a/fs/jfs/jfs_dmap.c +++ b/fs/jfs/jfs_dmap.c @@ -305,7 +305,6 @@ int dbSync(struct inode *ipbmap) filemap_fdatawrite(ipbmap->i_mapping); filemap_fdatawait(ipbmap->i_mapping); - ipbmap->i_state |= I_DIRTY; diWriteSpecial(ipbmap, 0); return (0); |