The issue is rather different for XFS and JFS. in JFS most metadata
(actually all metadata but the small superblock) is stored in inodes,
and it's accessed through the pagecache mapping for those inodes.
All access to those pages doesn't go directly through the pagecache
interface but a small metapage wrapper. When the page is removed it's synced
to disk and removed from the metapage hash, so that you can't acess it
anymore. It might still be on the VM lists for a while.
XFS on the other hand only uses the blockdevice mapping to acess it's
metadata so it doesn't have to remove the page explicitly from the
cache ever.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/