2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/sched.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/completion.h>
14 #include <linux/buffer_head.h>
15 #include <linux/crc32.h>
16 #include <linux/gfs2_ondisk.h>
17 #include <linux/bio.h>
18 #include <linux/lm_interface.h>
36 static const u32 gfs2_old_fs_formats
[] = {
40 static const u32 gfs2_old_multihost_formats
[] = {
45 * gfs2_tune_init - Fill a gfs2_tune structure with default values
50 void gfs2_tune_init(struct gfs2_tune
*gt
)
52 spin_lock_init(>
->gt_spin
);
55 gt
->gt_ilimit_tries
= 3;
56 gt
->gt_ilimit_min
= 1;
57 gt
->gt_demote_secs
= 300;
58 gt
->gt_incore_log_blocks
= 1024;
59 gt
->gt_log_flush_secs
= 60;
60 gt
->gt_jindex_refresh_secs
= 60;
61 gt
->gt_scand_secs
= 15;
62 gt
->gt_recoverd_secs
= 60;
64 gt
->gt_quotad_secs
= 5;
65 gt
->gt_quota_simul_sync
= 64;
66 gt
->gt_quota_warn_period
= 10;
67 gt
->gt_quota_scale_num
= 1;
68 gt
->gt_quota_scale_den
= 1;
69 gt
->gt_quota_cache_secs
= 300;
70 gt
->gt_quota_quantum
= 60;
71 gt
->gt_atime_quantum
= 3600;
72 gt
->gt_new_files_jdata
= 0;
73 gt
->gt_new_files_directio
= 0;
74 gt
->gt_max_atomic_write
= 4 << 20;
75 gt
->gt_max_readahead
= 1 << 18;
76 gt
->gt_lockdump_size
= 131072;
77 gt
->gt_stall_secs
= 600;
78 gt
->gt_complain_secs
= 10;
79 gt
->gt_reclaim_limit
= 5000;
80 gt
->gt_entries_per_readdir
= 32;
81 gt
->gt_prefetch_secs
= 10;
82 gt
->gt_greedy_default
= HZ
/ 10;
83 gt
->gt_greedy_quantum
= HZ
/ 40;
84 gt
->gt_greedy_max
= HZ
/ 4;
85 gt
->gt_statfs_quantum
= 30;
86 gt
->gt_statfs_slow
= 0;
90 * gfs2_check_sb - Check superblock
91 * @sdp: the filesystem
93 * @silent: Don't print a message if the check fails
95 * Checks the version code of the FS is one that we understand how to
96 * read and that the sizes of the various on-disk structures have not
100 int gfs2_check_sb(struct gfs2_sbd
*sdp
, struct gfs2_sb
*sb
, int silent
)
104 if (sb
->sb_header
.mh_magic
!= GFS2_MAGIC
||
105 sb
->sb_header
.mh_type
!= GFS2_METATYPE_SB
) {
107 printk(KERN_WARNING
"GFS2: not a GFS2 filesystem\n");
111 /* If format numbers match exactly, we're done. */
113 if (sb
->sb_fs_format
== GFS2_FORMAT_FS
&&
114 sb
->sb_multihost_format
== GFS2_FORMAT_MULTI
)
117 if (sb
->sb_fs_format
!= GFS2_FORMAT_FS
) {
118 for (x
= 0; gfs2_old_fs_formats
[x
]; x
++)
119 if (gfs2_old_fs_formats
[x
] == sb
->sb_fs_format
)
122 if (!gfs2_old_fs_formats
[x
]) {
124 "GFS2: code version (%u, %u) is incompatible "
125 "with ondisk format (%u, %u)\n",
126 GFS2_FORMAT_FS
, GFS2_FORMAT_MULTI
,
127 sb
->sb_fs_format
, sb
->sb_multihost_format
);
129 "GFS2: I don't know how to upgrade this FS\n");
134 if (sb
->sb_multihost_format
!= GFS2_FORMAT_MULTI
) {
135 for (x
= 0; gfs2_old_multihost_formats
[x
]; x
++)
136 if (gfs2_old_multihost_formats
[x
] ==
137 sb
->sb_multihost_format
)
140 if (!gfs2_old_multihost_formats
[x
]) {
142 "GFS2: code version (%u, %u) is incompatible "
143 "with ondisk format (%u, %u)\n",
144 GFS2_FORMAT_FS
, GFS2_FORMAT_MULTI
,
145 sb
->sb_fs_format
, sb
->sb_multihost_format
);
147 "GFS2: I don't know how to upgrade this FS\n");
152 if (!sdp
->sd_args
.ar_upgrade
) {
154 "GFS2: code version (%u, %u) is incompatible "
155 "with ondisk format (%u, %u)\n",
156 GFS2_FORMAT_FS
, GFS2_FORMAT_MULTI
,
157 sb
->sb_fs_format
, sb
->sb_multihost_format
);
159 "GFS2: Use the \"upgrade\" mount option to upgrade "
161 printk(KERN_INFO
"GFS2: See the manual for more details\n");
169 static int end_bio_io_page(struct bio
*bio
, unsigned int bytes_done
, int error
)
171 struct page
*page
= bio
->bi_private
;
176 SetPageUptodate(page
);
178 printk(KERN_WARNING
"gfs2: error %d reading superblock\n", error
);
183 struct page
*gfs2_read_super(struct super_block
*sb
, sector_t sector
)
188 page
= alloc_page(GFP_KERNEL
);
192 ClearPageUptodate(page
);
193 ClearPageDirty(page
);
196 bio
= bio_alloc(GFP_KERNEL
, 1);
197 if (unlikely(!bio
)) {
202 bio
->bi_sector
= sector
;
203 bio
->bi_bdev
= sb
->s_bdev
;
204 bio_add_page(bio
, page
, PAGE_SIZE
, 0);
206 bio
->bi_end_io
= end_bio_io_page
;
207 bio
->bi_private
= page
;
208 submit_bio(READ_SYNC
| (1 << BIO_RW_META
), bio
);
209 wait_on_page_locked(page
);
211 if (!PageUptodate(page
)) {
219 * gfs2_read_sb - Read super block
220 * @sdp: The GFS2 superblock
221 * @gl: the glock for the superblock (assumed to be held)
222 * @silent: Don't print message if mount fails
226 int gfs2_read_sb(struct gfs2_sbd
*sdp
, struct gfs2_glock
*gl
, int silent
)
228 u32 hash_blocks
, ind_blocks
, leaf_blocks
;
235 page
= gfs2_read_super(sdp
->sd_vfs
, GFS2_SB_ADDR
>> sdp
->sd_fsb2bb_shift
);
238 fs_err(sdp
, "can't read superblock\n");
242 gfs2_sb_in(&sdp
->sd_sb
, sb
);
246 error
= gfs2_check_sb(sdp
, &sdp
->sd_sb
, silent
);
250 sdp
->sd_fsb2bb_shift
= sdp
->sd_sb
.sb_bsize_shift
-
251 GFS2_BASIC_BLOCK_SHIFT
;
252 sdp
->sd_fsb2bb
= 1 << sdp
->sd_fsb2bb_shift
;
253 sdp
->sd_diptrs
= (sdp
->sd_sb
.sb_bsize
-
254 sizeof(struct gfs2_dinode
)) / sizeof(u64
);
255 sdp
->sd_inptrs
= (sdp
->sd_sb
.sb_bsize
-
256 sizeof(struct gfs2_meta_header
)) / sizeof(u64
);
257 sdp
->sd_jbsize
= sdp
->sd_sb
.sb_bsize
- sizeof(struct gfs2_meta_header
);
258 sdp
->sd_hash_bsize
= sdp
->sd_sb
.sb_bsize
/ 2;
259 sdp
->sd_hash_bsize_shift
= sdp
->sd_sb
.sb_bsize_shift
- 1;
260 sdp
->sd_hash_ptrs
= sdp
->sd_hash_bsize
/ sizeof(u64
);
261 sdp
->sd_qc_per_block
= (sdp
->sd_sb
.sb_bsize
-
262 sizeof(struct gfs2_meta_header
)) /
263 sizeof(struct gfs2_quota_change
);
265 /* Compute maximum reservation required to add a entry to a directory */
267 hash_blocks
= DIV_ROUND_UP(sizeof(u64
) * (1 << GFS2_DIR_MAX_DEPTH
),
271 for (tmp_blocks
= hash_blocks
; tmp_blocks
> sdp
->sd_diptrs
;) {
272 tmp_blocks
= DIV_ROUND_UP(tmp_blocks
, sdp
->sd_inptrs
);
273 ind_blocks
+= tmp_blocks
;
276 leaf_blocks
= 2 + GFS2_DIR_MAX_DEPTH
;
278 sdp
->sd_max_dirres
= hash_blocks
+ ind_blocks
+ leaf_blocks
;
280 sdp
->sd_heightsize
[0] = sdp
->sd_sb
.sb_bsize
-
281 sizeof(struct gfs2_dinode
);
282 sdp
->sd_heightsize
[1] = sdp
->sd_sb
.sb_bsize
* sdp
->sd_diptrs
;
287 space
= sdp
->sd_heightsize
[x
- 1] * sdp
->sd_inptrs
;
289 m
= do_div(d
, sdp
->sd_inptrs
);
291 if (d
!= sdp
->sd_heightsize
[x
- 1] || m
)
293 sdp
->sd_heightsize
[x
] = space
;
295 sdp
->sd_max_height
= x
;
296 gfs2_assert(sdp
, sdp
->sd_max_height
<= GFS2_MAX_META_HEIGHT
);
298 sdp
->sd_jheightsize
[0] = sdp
->sd_sb
.sb_bsize
-
299 sizeof(struct gfs2_dinode
);
300 sdp
->sd_jheightsize
[1] = sdp
->sd_jbsize
* sdp
->sd_diptrs
;
305 space
= sdp
->sd_jheightsize
[x
- 1] * sdp
->sd_inptrs
;
307 m
= do_div(d
, sdp
->sd_inptrs
);
309 if (d
!= sdp
->sd_jheightsize
[x
- 1] || m
)
311 sdp
->sd_jheightsize
[x
] = space
;
313 sdp
->sd_max_jheight
= x
;
314 gfs2_assert(sdp
, sdp
->sd_max_jheight
<= GFS2_MAX_META_HEIGHT
);
320 * gfs2_jindex_hold - Grab a lock on the jindex
321 * @sdp: The GFS2 superblock
322 * @ji_gh: the holder for the jindex glock
324 * This is very similar to the gfs2_rindex_hold() function, except that
325 * in general we hold the jindex lock for longer periods of time and
326 * we grab it far less frequently (in general) then the rgrp lock.
331 int gfs2_jindex_hold(struct gfs2_sbd
*sdp
, struct gfs2_holder
*ji_gh
)
333 struct gfs2_inode
*dip
= GFS2_I(sdp
->sd_jindex
);
336 struct gfs2_jdesc
*jd
;
341 mutex_lock(&sdp
->sd_jindex_mutex
);
344 error
= gfs2_glock_nq_init(dip
->i_gl
, LM_ST_SHARED
,
345 GL_LOCAL_EXCL
, ji_gh
);
349 name
.len
= sprintf(buf
, "journal%u", sdp
->sd_journals
);
350 name
.hash
= gfs2_disk_hash(name
.name
, name
.len
);
352 error
= gfs2_dir_search(sdp
->sd_jindex
, &name
, NULL
, NULL
);
353 if (error
== -ENOENT
) {
358 gfs2_glock_dq_uninit(ji_gh
);
364 jd
= kzalloc(sizeof(struct gfs2_jdesc
), GFP_KERNEL
);
368 jd
->jd_inode
= gfs2_lookupi(sdp
->sd_jindex
, &name
, 1, NULL
);
369 if (!jd
->jd_inode
|| IS_ERR(jd
->jd_inode
)) {
373 error
= PTR_ERR(jd
->jd_inode
);
378 spin_lock(&sdp
->sd_jindex_spin
);
379 jd
->jd_jid
= sdp
->sd_journals
++;
380 list_add_tail(&jd
->jd_list
, &sdp
->sd_jindex_list
);
381 spin_unlock(&sdp
->sd_jindex_spin
);
384 mutex_unlock(&sdp
->sd_jindex_mutex
);
390 * gfs2_jindex_free - Clear all the journal index information
391 * @sdp: The GFS2 superblock
395 void gfs2_jindex_free(struct gfs2_sbd
*sdp
)
397 struct list_head list
;
398 struct gfs2_jdesc
*jd
;
400 spin_lock(&sdp
->sd_jindex_spin
);
401 list_add(&list
, &sdp
->sd_jindex_list
);
402 list_del_init(&sdp
->sd_jindex_list
);
403 sdp
->sd_journals
= 0;
404 spin_unlock(&sdp
->sd_jindex_spin
);
406 while (!list_empty(&list
)) {
407 jd
= list_entry(list
.next
, struct gfs2_jdesc
, jd_list
);
408 list_del(&jd
->jd_list
);
414 static struct gfs2_jdesc
*jdesc_find_i(struct list_head
*head
, unsigned int jid
)
416 struct gfs2_jdesc
*jd
;
419 list_for_each_entry(jd
, head
, jd_list
) {
420 if (jd
->jd_jid
== jid
) {
432 struct gfs2_jdesc
*gfs2_jdesc_find(struct gfs2_sbd
*sdp
, unsigned int jid
)
434 struct gfs2_jdesc
*jd
;
436 spin_lock(&sdp
->sd_jindex_spin
);
437 jd
= jdesc_find_i(&sdp
->sd_jindex_list
, jid
);
438 spin_unlock(&sdp
->sd_jindex_spin
);
443 void gfs2_jdesc_make_dirty(struct gfs2_sbd
*sdp
, unsigned int jid
)
445 struct gfs2_jdesc
*jd
;
447 spin_lock(&sdp
->sd_jindex_spin
);
448 jd
= jdesc_find_i(&sdp
->sd_jindex_list
, jid
);
451 spin_unlock(&sdp
->sd_jindex_spin
);
454 struct gfs2_jdesc
*gfs2_jdesc_find_dirty(struct gfs2_sbd
*sdp
)
456 struct gfs2_jdesc
*jd
;
459 spin_lock(&sdp
->sd_jindex_spin
);
461 list_for_each_entry(jd
, &sdp
->sd_jindex_list
, jd_list
) {
468 spin_unlock(&sdp
->sd_jindex_spin
);
476 int gfs2_jdesc_check(struct gfs2_jdesc
*jd
)
478 struct gfs2_inode
*ip
= GFS2_I(jd
->jd_inode
);
479 struct gfs2_sbd
*sdp
= GFS2_SB(jd
->jd_inode
);
483 if (ip
->i_di
.di_size
< (8 << 20) || ip
->i_di
.di_size
> (1 << 30) ||
484 (ip
->i_di
.di_size
& (sdp
->sd_sb
.sb_bsize
- 1))) {
485 gfs2_consist_inode(ip
);
488 jd
->jd_blocks
= ip
->i_di
.di_size
>> sdp
->sd_sb
.sb_bsize_shift
;
490 error
= gfs2_write_alloc_required(ip
, 0, ip
->i_di
.di_size
, &ar
);
492 gfs2_consist_inode(ip
);
500 * gfs2_make_fs_rw - Turn a Read-Only FS into a Read-Write one
501 * @sdp: the filesystem
506 int gfs2_make_fs_rw(struct gfs2_sbd
*sdp
)
508 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_jdesc
->jd_inode
);
509 struct gfs2_glock
*j_gl
= ip
->i_gl
;
510 struct gfs2_holder t_gh
;
511 struct gfs2_log_header head
;
514 error
= gfs2_glock_nq_init(sdp
->sd_trans_gl
, LM_ST_SHARED
,
515 GL_LOCAL_EXCL
, &t_gh
);
519 gfs2_meta_cache_flush(ip
);
520 j_gl
->gl_ops
->go_inval(j_gl
, DIO_METADATA
| DIO_DATA
);
522 error
= gfs2_find_jhead(sdp
->sd_jdesc
, &head
);
526 if (!(head
.lh_flags
& GFS2_LOG_HEAD_UNMOUNT
)) {
532 /* Initialize some head of the log stuff */
533 sdp
->sd_log_sequence
= head
.lh_sequence
+ 1;
534 gfs2_log_pointers_init(sdp
, head
.lh_blkno
);
536 error
= gfs2_quota_init(sdp
);
540 set_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
);
542 gfs2_glock_dq_uninit(&t_gh
);
547 t_gh
.gh_flags
|= GL_NOCACHE
;
548 gfs2_glock_dq_uninit(&t_gh
);
554 * gfs2_make_fs_ro - Turn a Read-Write FS into a Read-Only one
555 * @sdp: the filesystem
560 int gfs2_make_fs_ro(struct gfs2_sbd
*sdp
)
562 struct gfs2_holder t_gh
;
565 gfs2_quota_sync(sdp
);
566 gfs2_statfs_sync(sdp
);
568 error
= gfs2_glock_nq_init(sdp
->sd_trans_gl
, LM_ST_SHARED
,
569 GL_LOCAL_EXCL
| GL_NOCACHE
,
571 if (error
&& !test_bit(SDF_SHUTDOWN
, &sdp
->sd_flags
))
574 gfs2_meta_syncfs(sdp
);
575 gfs2_log_shutdown(sdp
);
577 clear_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
);
580 gfs2_glock_dq_uninit(&t_gh
);
582 gfs2_quota_cleanup(sdp
);
587 int gfs2_statfs_init(struct gfs2_sbd
*sdp
)
589 struct gfs2_inode
*m_ip
= GFS2_I(sdp
->sd_statfs_inode
);
590 struct gfs2_statfs_change
*m_sc
= &sdp
->sd_statfs_master
;
591 struct gfs2_inode
*l_ip
= GFS2_I(sdp
->sd_sc_inode
);
592 struct gfs2_statfs_change
*l_sc
= &sdp
->sd_statfs_local
;
593 struct buffer_head
*m_bh
, *l_bh
;
594 struct gfs2_holder gh
;
597 error
= gfs2_glock_nq_init(m_ip
->i_gl
, LM_ST_EXCLUSIVE
, GL_NOCACHE
,
602 error
= gfs2_meta_inode_buffer(m_ip
, &m_bh
);
606 if (sdp
->sd_args
.ar_spectator
) {
607 spin_lock(&sdp
->sd_statfs_spin
);
608 gfs2_statfs_change_in(m_sc
, m_bh
->b_data
+
609 sizeof(struct gfs2_dinode
));
610 spin_unlock(&sdp
->sd_statfs_spin
);
612 error
= gfs2_meta_inode_buffer(l_ip
, &l_bh
);
616 spin_lock(&sdp
->sd_statfs_spin
);
617 gfs2_statfs_change_in(m_sc
, m_bh
->b_data
+
618 sizeof(struct gfs2_dinode
));
619 gfs2_statfs_change_in(l_sc
, l_bh
->b_data
+
620 sizeof(struct gfs2_dinode
));
621 spin_unlock(&sdp
->sd_statfs_spin
);
629 gfs2_glock_dq_uninit(&gh
);
633 void gfs2_statfs_change(struct gfs2_sbd
*sdp
, s64 total
, s64 free
,
636 struct gfs2_inode
*l_ip
= GFS2_I(sdp
->sd_sc_inode
);
637 struct gfs2_statfs_change
*l_sc
= &sdp
->sd_statfs_local
;
638 struct buffer_head
*l_bh
;
641 error
= gfs2_meta_inode_buffer(l_ip
, &l_bh
);
645 mutex_lock(&sdp
->sd_statfs_mutex
);
646 gfs2_trans_add_bh(l_ip
->i_gl
, l_bh
, 1);
647 mutex_unlock(&sdp
->sd_statfs_mutex
);
649 spin_lock(&sdp
->sd_statfs_spin
);
650 l_sc
->sc_total
+= total
;
651 l_sc
->sc_free
+= free
;
652 l_sc
->sc_dinodes
+= dinodes
;
653 gfs2_statfs_change_out(l_sc
, l_bh
->b_data
+ sizeof(struct gfs2_dinode
));
654 spin_unlock(&sdp
->sd_statfs_spin
);
659 int gfs2_statfs_sync(struct gfs2_sbd
*sdp
)
661 struct gfs2_inode
*m_ip
= GFS2_I(sdp
->sd_statfs_inode
);
662 struct gfs2_inode
*l_ip
= GFS2_I(sdp
->sd_sc_inode
);
663 struct gfs2_statfs_change
*m_sc
= &sdp
->sd_statfs_master
;
664 struct gfs2_statfs_change
*l_sc
= &sdp
->sd_statfs_local
;
665 struct gfs2_holder gh
;
666 struct buffer_head
*m_bh
, *l_bh
;
669 error
= gfs2_glock_nq_init(m_ip
->i_gl
, LM_ST_EXCLUSIVE
, GL_NOCACHE
,
674 error
= gfs2_meta_inode_buffer(m_ip
, &m_bh
);
678 spin_lock(&sdp
->sd_statfs_spin
);
679 gfs2_statfs_change_in(m_sc
, m_bh
->b_data
+
680 sizeof(struct gfs2_dinode
));
681 if (!l_sc
->sc_total
&& !l_sc
->sc_free
&& !l_sc
->sc_dinodes
) {
682 spin_unlock(&sdp
->sd_statfs_spin
);
685 spin_unlock(&sdp
->sd_statfs_spin
);
687 error
= gfs2_meta_inode_buffer(l_ip
, &l_bh
);
691 error
= gfs2_trans_begin(sdp
, 2 * RES_DINODE
, 0);
695 mutex_lock(&sdp
->sd_statfs_mutex
);
696 gfs2_trans_add_bh(l_ip
->i_gl
, l_bh
, 1);
697 mutex_unlock(&sdp
->sd_statfs_mutex
);
699 spin_lock(&sdp
->sd_statfs_spin
);
700 m_sc
->sc_total
+= l_sc
->sc_total
;
701 m_sc
->sc_free
+= l_sc
->sc_free
;
702 m_sc
->sc_dinodes
+= l_sc
->sc_dinodes
;
703 memset(l_sc
, 0, sizeof(struct gfs2_statfs_change
));
704 memset(l_bh
->b_data
+ sizeof(struct gfs2_dinode
),
705 0, sizeof(struct gfs2_statfs_change
));
706 spin_unlock(&sdp
->sd_statfs_spin
);
708 gfs2_trans_add_bh(m_ip
->i_gl
, m_bh
, 1);
709 gfs2_statfs_change_out(m_sc
, m_bh
->b_data
+ sizeof(struct gfs2_dinode
));
718 gfs2_glock_dq_uninit(&gh
);
723 * gfs2_statfs_i - Do a statfs
724 * @sdp: the filesystem
725 * @sg: the sg structure
730 int gfs2_statfs_i(struct gfs2_sbd
*sdp
, struct gfs2_statfs_change
*sc
)
732 struct gfs2_statfs_change
*m_sc
= &sdp
->sd_statfs_master
;
733 struct gfs2_statfs_change
*l_sc
= &sdp
->sd_statfs_local
;
735 spin_lock(&sdp
->sd_statfs_spin
);
738 sc
->sc_total
+= l_sc
->sc_total
;
739 sc
->sc_free
+= l_sc
->sc_free
;
740 sc
->sc_dinodes
+= l_sc
->sc_dinodes
;
742 spin_unlock(&sdp
->sd_statfs_spin
);
746 if (sc
->sc_free
> sc
->sc_total
)
747 sc
->sc_free
= sc
->sc_total
;
748 if (sc
->sc_dinodes
< 0)
755 * statfs_fill - fill in the sg for a given RG
757 * @sc: the sc structure
759 * Returns: 0 on success, -ESTALE if the LVB is invalid
762 static int statfs_slow_fill(struct gfs2_rgrpd
*rgd
,
763 struct gfs2_statfs_change
*sc
)
765 gfs2_rgrp_verify(rgd
);
766 sc
->sc_total
+= rgd
->rd_ri
.ri_data
;
767 sc
->sc_free
+= rgd
->rd_rg
.rg_free
;
768 sc
->sc_dinodes
+= rgd
->rd_rg
.rg_dinodes
;
773 * gfs2_statfs_slow - Stat a filesystem using asynchronous locking
774 * @sdp: the filesystem
775 * @sc: the sc info that will be returned
777 * Any error (other than a signal) will cause this routine to fall back
778 * to the synchronous version.
780 * FIXME: This really shouldn't busy wait like this.
785 int gfs2_statfs_slow(struct gfs2_sbd
*sdp
, struct gfs2_statfs_change
*sc
)
787 struct gfs2_holder ri_gh
;
788 struct gfs2_rgrpd
*rgd_next
;
789 struct gfs2_holder
*gha
, *gh
;
790 unsigned int slots
= 64;
795 memset(sc
, 0, sizeof(struct gfs2_statfs_change
));
796 gha
= kcalloc(slots
, sizeof(struct gfs2_holder
), GFP_KERNEL
);
800 error
= gfs2_rindex_hold(sdp
, &ri_gh
);
804 rgd_next
= gfs2_rgrpd_get_first(sdp
);
809 for (x
= 0; x
< slots
; x
++) {
812 if (gh
->gh_gl
&& gfs2_glock_poll(gh
)) {
813 err
= gfs2_glock_wait(gh
);
815 gfs2_holder_uninit(gh
);
819 error
= statfs_slow_fill(
820 gh
->gh_gl
->gl_object
, sc
);
821 gfs2_glock_dq_uninit(gh
);
827 else if (rgd_next
&& !error
) {
828 error
= gfs2_glock_nq_init(rgd_next
->rd_gl
,
832 rgd_next
= gfs2_rgrpd_get_next(rgd_next
);
836 if (signal_pending(current
))
837 error
= -ERESTARTSYS
;
846 gfs2_glock_dq_uninit(&ri_gh
);
854 struct list_head list
;
855 struct gfs2_holder gh
;
859 * gfs2_lock_fs_check_clean - Stop all writes to the FS and check that all
861 * @sdp: the file system
862 * @state: the state to put the transaction lock into
863 * @t_gh: the hold on the transaction lock
868 static int gfs2_lock_fs_check_clean(struct gfs2_sbd
*sdp
,
869 struct gfs2_holder
*t_gh
)
871 struct gfs2_inode
*ip
;
872 struct gfs2_holder ji_gh
;
873 struct gfs2_jdesc
*jd
;
876 struct gfs2_log_header lh
;
879 error
= gfs2_jindex_hold(sdp
, &ji_gh
);
883 list_for_each_entry(jd
, &sdp
->sd_jindex_list
, jd_list
) {
884 lfcc
= kmalloc(sizeof(struct lfcc
), GFP_KERNEL
);
889 ip
= GFS2_I(jd
->jd_inode
);
890 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, 0, &lfcc
->gh
);
895 list_add(&lfcc
->list
, &list
);
898 error
= gfs2_glock_nq_init(sdp
->sd_trans_gl
, LM_ST_DEFERRED
,
899 LM_FLAG_PRIORITY
| GL_NOCACHE
,
902 list_for_each_entry(jd
, &sdp
->sd_jindex_list
, jd_list
) {
903 error
= gfs2_jdesc_check(jd
);
906 error
= gfs2_find_jhead(jd
, &lh
);
909 if (!(lh
.lh_flags
& GFS2_LOG_HEAD_UNMOUNT
)) {
916 gfs2_glock_dq_uninit(t_gh
);
919 while (!list_empty(&list
)) {
920 lfcc
= list_entry(list
.next
, struct lfcc
, list
);
921 list_del(&lfcc
->list
);
922 gfs2_glock_dq_uninit(&lfcc
->gh
);
925 gfs2_glock_dq_uninit(&ji_gh
);
930 * gfs2_freeze_fs - freezes the file system
931 * @sdp: the file system
933 * This function flushes data and meta data for all machines by
934 * aquiring the transaction log exclusively. All journals are
935 * ensured to be in a clean state as well.
940 int gfs2_freeze_fs(struct gfs2_sbd
*sdp
)
944 mutex_lock(&sdp
->sd_freeze_lock
);
946 if (!sdp
->sd_freeze_count
++) {
947 error
= gfs2_lock_fs_check_clean(sdp
, &sdp
->sd_freeze_gh
);
949 sdp
->sd_freeze_count
--;
952 mutex_unlock(&sdp
->sd_freeze_lock
);
958 * gfs2_unfreeze_fs - unfreezes the file system
959 * @sdp: the file system
961 * This function allows the file system to proceed by unlocking
962 * the exclusively held transaction lock. Other GFS2 nodes are
963 * now free to acquire the lock shared and go on with their lives.
967 void gfs2_unfreeze_fs(struct gfs2_sbd
*sdp
)
969 mutex_lock(&sdp
->sd_freeze_lock
);
971 if (sdp
->sd_freeze_count
&& !--sdp
->sd_freeze_count
)
972 gfs2_glock_dq_uninit(&sdp
->sd_freeze_gh
);
974 mutex_unlock(&sdp
->sd_freeze_lock
);