2 * Copyright (C) International Business Machines Corp., 2000-2004
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * note: file system in transition to aggregate/fileset:
25 * file system unmount is interpreted as mount of the single/only
26 * fileset in the aggregate and, if unmount of the last fileset,
27 * as unmount of the aggerate;
31 #include "jfs_incore.h"
32 #include "jfs_filsys.h"
33 #include "jfs_superblock.h"
36 #include "jfs_metapage.h"
37 #include "jfs_debug.h"
40 * NAME: jfs_umount(vfsp, flags, crp)
42 * FUNCTION: vfs_umount()
44 * PARAMETERS: vfsp - virtual file system pointer
45 * flags - unmount for shutdown
48 * RETURN : EBUSY - device has open files
50 int jfs_umount(struct super_block
*sb
)
52 struct address_space
*bdev_mapping
= sb
->s_bdev
->bd_inode
->i_mapping
;
53 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
54 struct inode
*ipbmap
= sbi
->ipbmap
;
55 struct inode
*ipimap
= sbi
->ipimap
;
56 struct inode
*ipaimap
= sbi
->ipaimap
;
57 struct inode
*ipaimap2
= sbi
->ipaimap2
;
61 jfs_info("UnMount JFS: sb:0x%p", sb
);
64 * update superblock and close log
66 * if mounted read-write and log based recovery was enabled
70 * Wait for outstanding transactions to be written to log:
72 jfs_flush_journal(log
, 2);
75 * close fileset inode allocation map (aka fileset inode)
79 diFreeSpecial(ipimap
);
83 * close secondary aggregate inode allocation map
85 ipaimap2
= sbi
->ipaimap2
;
87 diUnmount(ipaimap2
, 0);
88 diFreeSpecial(ipaimap2
);
93 * close aggregate inode allocation map
95 ipaimap
= sbi
->ipaimap
;
96 diUnmount(ipaimap
, 0);
97 diFreeSpecial(ipaimap
);
101 * close aggregate block allocation map
103 dbUnmount(ipbmap
, 0);
105 diFreeSpecial(ipbmap
);
109 * Make sure all metadata makes it to disk before we mark
110 * the superblock as clean
112 filemap_fdatawrite(bdev_mapping
);
113 filemap_fdatawait(bdev_mapping
);
116 * ensure all file system file pages are propagated to their
117 * home blocks on disk (and their in-memory buffer pages are
118 * invalidated) BEFORE updating file system superblock state
119 * (to signify file system is unmounted cleanly, and thus in
120 * consistent state) and log superblock active file system
121 * list (to signify skip logredo()).
123 if (log
) { /* log = NULL if read-only mount */
124 updateSuper(sb
, FM_CLEAN
);
126 /* Restore default gfp_mask for bdev */
127 mapping_set_gfp_mask(bdev_mapping
, GFP_USER
);
132 * remove file system from log active file system list.
136 jfs_info("UnMount JFS Complete: rc = %d", rc
);
141 int jfs_umount_rw(struct super_block
*sb
)
143 struct address_space
*bdev_mapping
= sb
->s_bdev
->bd_inode
->i_mapping
;
144 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
145 struct jfs_log
*log
= sbi
->log
;
153 * remove file system from log active file system list.
155 jfs_flush_journal(log
, 2);
158 * Make sure all metadata makes it to disk
164 * Note that we have to do this even if sync_blockdev() will
165 * do exactly the same a few instructions later: We can't
166 * mark the superblock clean before everything is flushed to
169 filemap_fdatawrite(bdev_mapping
);
170 filemap_fdatawait(bdev_mapping
);
172 updateSuper(sb
, FM_CLEAN
);
174 /* Restore default gfp_mask for bdev */
175 mapping_set_gfp_mask(bdev_mapping
, GFP_USER
);
177 return lmLogClose(sb
);