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_readahead
= 1 << 18;
75 gt
->gt_lockdump_size
= 131072;
76 gt
->gt_stall_secs
= 600;
77 gt
->gt_complain_secs
= 10;
78 gt
->gt_reclaim_limit
= 5000;
79 gt
->gt_statfs_quantum
= 30;
80 gt
->gt_statfs_slow
= 0;
84 * gfs2_check_sb - Check superblock
85 * @sdp: the filesystem
87 * @silent: Don't print a message if the check fails
89 * Checks the version code of the FS is one that we understand how to
90 * read and that the sizes of the various on-disk structures have not
94 int gfs2_check_sb(struct gfs2_sbd
*sdp
, struct gfs2_sb_host
*sb
, int silent
)
98 if (sb
->sb_header
.mh_magic
!= GFS2_MAGIC
||
99 sb
->sb_header
.mh_type
!= GFS2_METATYPE_SB
) {
101 printk(KERN_WARNING
"GFS2: not a GFS2 filesystem\n");
105 /* If format numbers match exactly, we're done. */
107 if (sb
->sb_fs_format
== GFS2_FORMAT_FS
&&
108 sb
->sb_multihost_format
== GFS2_FORMAT_MULTI
)
111 if (sb
->sb_fs_format
!= GFS2_FORMAT_FS
) {
112 for (x
= 0; gfs2_old_fs_formats
[x
]; x
++)
113 if (gfs2_old_fs_formats
[x
] == sb
->sb_fs_format
)
116 if (!gfs2_old_fs_formats
[x
]) {
118 "GFS2: code version (%u, %u) is incompatible "
119 "with ondisk format (%u, %u)\n",
120 GFS2_FORMAT_FS
, GFS2_FORMAT_MULTI
,
121 sb
->sb_fs_format
, sb
->sb_multihost_format
);
123 "GFS2: I don't know how to upgrade this FS\n");
128 if (sb
->sb_multihost_format
!= GFS2_FORMAT_MULTI
) {
129 for (x
= 0; gfs2_old_multihost_formats
[x
]; x
++)
130 if (gfs2_old_multihost_formats
[x
] ==
131 sb
->sb_multihost_format
)
134 if (!gfs2_old_multihost_formats
[x
]) {
136 "GFS2: code version (%u, %u) is incompatible "
137 "with ondisk format (%u, %u)\n",
138 GFS2_FORMAT_FS
, GFS2_FORMAT_MULTI
,
139 sb
->sb_fs_format
, sb
->sb_multihost_format
);
141 "GFS2: I don't know how to upgrade this FS\n");
146 if (!sdp
->sd_args
.ar_upgrade
) {
148 "GFS2: code version (%u, %u) is incompatible "
149 "with ondisk format (%u, %u)\n",
150 GFS2_FORMAT_FS
, GFS2_FORMAT_MULTI
,
151 sb
->sb_fs_format
, sb
->sb_multihost_format
);
153 "GFS2: Use the \"upgrade\" mount option to upgrade "
155 printk(KERN_INFO
"GFS2: See the manual for more details\n");
163 static int end_bio_io_page(struct bio
*bio
, unsigned int bytes_done
, int error
)
165 struct page
*page
= bio
->bi_private
;
170 SetPageUptodate(page
);
172 printk(KERN_WARNING
"gfs2: error %d reading superblock\n", error
);
178 * gfs2_read_super - Read the gfs2 super block from disk
179 * @sb: The VFS super block
180 * @sector: The location of the super block
182 * This uses the bio functions to read the super block from disk
183 * because we want to be 100% sure that we never read cached data.
184 * A super block is read twice only during each GFS2 mount and is
185 * never written to by the filesystem. The first time its read no
186 * locks are held, and the only details which are looked at are those
187 * relating to the locking protocol. Once locking is up and working,
188 * the sb is read again under the lock to establish the location of
189 * the master directory (contains pointers to journals etc) and the
192 * Returns: A page containing the sb or NULL
195 struct page
*gfs2_read_super(struct super_block
*sb
, sector_t sector
)
200 page
= alloc_page(GFP_KERNEL
);
204 ClearPageUptodate(page
);
205 ClearPageDirty(page
);
208 bio
= bio_alloc(GFP_KERNEL
, 1);
209 if (unlikely(!bio
)) {
214 bio
->bi_sector
= sector
* (sb
->s_blocksize
>> 9);
215 bio
->bi_bdev
= sb
->s_bdev
;
216 bio_add_page(bio
, page
, PAGE_SIZE
, 0);
218 bio
->bi_end_io
= end_bio_io_page
;
219 bio
->bi_private
= page
;
220 submit_bio(READ_SYNC
| (1 << BIO_RW_META
), bio
);
221 wait_on_page_locked(page
);
223 if (!PageUptodate(page
)) {
231 * gfs2_read_sb - Read super block
232 * @sdp: The GFS2 superblock
233 * @gl: the glock for the superblock (assumed to be held)
234 * @silent: Don't print message if mount fails
238 int gfs2_read_sb(struct gfs2_sbd
*sdp
, struct gfs2_glock
*gl
, int silent
)
240 u32 hash_blocks
, ind_blocks
, leaf_blocks
;
247 page
= gfs2_read_super(sdp
->sd_vfs
, GFS2_SB_ADDR
>> sdp
->sd_fsb2bb_shift
);
250 fs_err(sdp
, "can't read superblock\n");
254 gfs2_sb_in(&sdp
->sd_sb
, sb
);
258 error
= gfs2_check_sb(sdp
, &sdp
->sd_sb
, silent
);
262 sdp
->sd_fsb2bb_shift
= sdp
->sd_sb
.sb_bsize_shift
-
263 GFS2_BASIC_BLOCK_SHIFT
;
264 sdp
->sd_fsb2bb
= 1 << sdp
->sd_fsb2bb_shift
;
265 sdp
->sd_diptrs
= (sdp
->sd_sb
.sb_bsize
-
266 sizeof(struct gfs2_dinode
)) / sizeof(u64
);
267 sdp
->sd_inptrs
= (sdp
->sd_sb
.sb_bsize
-
268 sizeof(struct gfs2_meta_header
)) / sizeof(u64
);
269 sdp
->sd_jbsize
= sdp
->sd_sb
.sb_bsize
- sizeof(struct gfs2_meta_header
);
270 sdp
->sd_hash_bsize
= sdp
->sd_sb
.sb_bsize
/ 2;
271 sdp
->sd_hash_bsize_shift
= sdp
->sd_sb
.sb_bsize_shift
- 1;
272 sdp
->sd_hash_ptrs
= sdp
->sd_hash_bsize
/ sizeof(u64
);
273 sdp
->sd_qc_per_block
= (sdp
->sd_sb
.sb_bsize
-
274 sizeof(struct gfs2_meta_header
)) /
275 sizeof(struct gfs2_quota_change
);
277 /* Compute maximum reservation required to add a entry to a directory */
279 hash_blocks
= DIV_ROUND_UP(sizeof(u64
) * (1 << GFS2_DIR_MAX_DEPTH
),
283 for (tmp_blocks
= hash_blocks
; tmp_blocks
> sdp
->sd_diptrs
;) {
284 tmp_blocks
= DIV_ROUND_UP(tmp_blocks
, sdp
->sd_inptrs
);
285 ind_blocks
+= tmp_blocks
;
288 leaf_blocks
= 2 + GFS2_DIR_MAX_DEPTH
;
290 sdp
->sd_max_dirres
= hash_blocks
+ ind_blocks
+ leaf_blocks
;
292 sdp
->sd_heightsize
[0] = sdp
->sd_sb
.sb_bsize
-
293 sizeof(struct gfs2_dinode
);
294 sdp
->sd_heightsize
[1] = sdp
->sd_sb
.sb_bsize
* sdp
->sd_diptrs
;
299 space
= sdp
->sd_heightsize
[x
- 1] * sdp
->sd_inptrs
;
301 m
= do_div(d
, sdp
->sd_inptrs
);
303 if (d
!= sdp
->sd_heightsize
[x
- 1] || m
)
305 sdp
->sd_heightsize
[x
] = space
;
307 sdp
->sd_max_height
= x
;
308 gfs2_assert(sdp
, sdp
->sd_max_height
<= GFS2_MAX_META_HEIGHT
);
310 sdp
->sd_jheightsize
[0] = sdp
->sd_sb
.sb_bsize
-
311 sizeof(struct gfs2_dinode
);
312 sdp
->sd_jheightsize
[1] = sdp
->sd_jbsize
* sdp
->sd_diptrs
;
317 space
= sdp
->sd_jheightsize
[x
- 1] * sdp
->sd_inptrs
;
319 m
= do_div(d
, sdp
->sd_inptrs
);
321 if (d
!= sdp
->sd_jheightsize
[x
- 1] || m
)
323 sdp
->sd_jheightsize
[x
] = space
;
325 sdp
->sd_max_jheight
= x
;
326 gfs2_assert(sdp
, sdp
->sd_max_jheight
<= GFS2_MAX_META_HEIGHT
);
332 * gfs2_jindex_hold - Grab a lock on the jindex
333 * @sdp: The GFS2 superblock
334 * @ji_gh: the holder for the jindex glock
336 * This is very similar to the gfs2_rindex_hold() function, except that
337 * in general we hold the jindex lock for longer periods of time and
338 * we grab it far less frequently (in general) then the rgrp lock.
343 int gfs2_jindex_hold(struct gfs2_sbd
*sdp
, struct gfs2_holder
*ji_gh
)
345 struct gfs2_inode
*dip
= GFS2_I(sdp
->sd_jindex
);
348 struct gfs2_jdesc
*jd
;
353 mutex_lock(&sdp
->sd_jindex_mutex
);
356 error
= gfs2_glock_nq_init(dip
->i_gl
, LM_ST_SHARED
, 0, ji_gh
);
360 name
.len
= sprintf(buf
, "journal%u", sdp
->sd_journals
);
361 name
.hash
= gfs2_disk_hash(name
.name
, name
.len
);
363 error
= gfs2_dir_search(sdp
->sd_jindex
, &name
, NULL
, NULL
);
364 if (error
== -ENOENT
) {
369 gfs2_glock_dq_uninit(ji_gh
);
375 jd
= kzalloc(sizeof(struct gfs2_jdesc
), GFP_KERNEL
);
379 jd
->jd_inode
= gfs2_lookupi(sdp
->sd_jindex
, &name
, 1, NULL
);
380 if (!jd
->jd_inode
|| IS_ERR(jd
->jd_inode
)) {
384 error
= PTR_ERR(jd
->jd_inode
);
389 spin_lock(&sdp
->sd_jindex_spin
);
390 jd
->jd_jid
= sdp
->sd_journals
++;
391 list_add_tail(&jd
->jd_list
, &sdp
->sd_jindex_list
);
392 spin_unlock(&sdp
->sd_jindex_spin
);
395 mutex_unlock(&sdp
->sd_jindex_mutex
);
401 * gfs2_jindex_free - Clear all the journal index information
402 * @sdp: The GFS2 superblock
406 void gfs2_jindex_free(struct gfs2_sbd
*sdp
)
408 struct list_head list
;
409 struct gfs2_jdesc
*jd
;
411 spin_lock(&sdp
->sd_jindex_spin
);
412 list_add(&list
, &sdp
->sd_jindex_list
);
413 list_del_init(&sdp
->sd_jindex_list
);
414 sdp
->sd_journals
= 0;
415 spin_unlock(&sdp
->sd_jindex_spin
);
417 while (!list_empty(&list
)) {
418 jd
= list_entry(list
.next
, struct gfs2_jdesc
, jd_list
);
419 list_del(&jd
->jd_list
);
425 static struct gfs2_jdesc
*jdesc_find_i(struct list_head
*head
, unsigned int jid
)
427 struct gfs2_jdesc
*jd
;
430 list_for_each_entry(jd
, head
, jd_list
) {
431 if (jd
->jd_jid
== jid
) {
443 struct gfs2_jdesc
*gfs2_jdesc_find(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
);
449 spin_unlock(&sdp
->sd_jindex_spin
);
454 void gfs2_jdesc_make_dirty(struct gfs2_sbd
*sdp
, unsigned int jid
)
456 struct gfs2_jdesc
*jd
;
458 spin_lock(&sdp
->sd_jindex_spin
);
459 jd
= jdesc_find_i(&sdp
->sd_jindex_list
, jid
);
462 spin_unlock(&sdp
->sd_jindex_spin
);
465 struct gfs2_jdesc
*gfs2_jdesc_find_dirty(struct gfs2_sbd
*sdp
)
467 struct gfs2_jdesc
*jd
;
470 spin_lock(&sdp
->sd_jindex_spin
);
472 list_for_each_entry(jd
, &sdp
->sd_jindex_list
, jd_list
) {
479 spin_unlock(&sdp
->sd_jindex_spin
);
487 int gfs2_jdesc_check(struct gfs2_jdesc
*jd
)
489 struct gfs2_inode
*ip
= GFS2_I(jd
->jd_inode
);
490 struct gfs2_sbd
*sdp
= GFS2_SB(jd
->jd_inode
);
494 if (ip
->i_di
.di_size
< (8 << 20) || ip
->i_di
.di_size
> (1 << 30) ||
495 (ip
->i_di
.di_size
& (sdp
->sd_sb
.sb_bsize
- 1))) {
496 gfs2_consist_inode(ip
);
499 jd
->jd_blocks
= ip
->i_di
.di_size
>> sdp
->sd_sb
.sb_bsize_shift
;
501 error
= gfs2_write_alloc_required(ip
, 0, ip
->i_di
.di_size
, &ar
);
503 gfs2_consist_inode(ip
);
511 * gfs2_make_fs_rw - Turn a Read-Only FS into a Read-Write one
512 * @sdp: the filesystem
517 int gfs2_make_fs_rw(struct gfs2_sbd
*sdp
)
519 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_jdesc
->jd_inode
);
520 struct gfs2_glock
*j_gl
= ip
->i_gl
;
521 struct gfs2_holder t_gh
;
522 struct gfs2_log_header_host head
;
525 error
= gfs2_glock_nq_init(sdp
->sd_trans_gl
, LM_ST_SHARED
, 0, &t_gh
);
529 gfs2_meta_cache_flush(ip
);
530 j_gl
->gl_ops
->go_inval(j_gl
, DIO_METADATA
);
532 error
= gfs2_find_jhead(sdp
->sd_jdesc
, &head
);
536 if (!(head
.lh_flags
& GFS2_LOG_HEAD_UNMOUNT
)) {
542 /* Initialize some head of the log stuff */
543 sdp
->sd_log_sequence
= head
.lh_sequence
+ 1;
544 gfs2_log_pointers_init(sdp
, head
.lh_blkno
);
546 error
= gfs2_quota_init(sdp
);
550 set_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
);
552 gfs2_glock_dq_uninit(&t_gh
);
557 t_gh
.gh_flags
|= GL_NOCACHE
;
558 gfs2_glock_dq_uninit(&t_gh
);
564 * gfs2_make_fs_ro - Turn a Read-Write FS into a Read-Only one
565 * @sdp: the filesystem
570 int gfs2_make_fs_ro(struct gfs2_sbd
*sdp
)
572 struct gfs2_holder t_gh
;
575 gfs2_quota_sync(sdp
);
576 gfs2_statfs_sync(sdp
);
578 error
= gfs2_glock_nq_init(sdp
->sd_trans_gl
, LM_ST_SHARED
, GL_NOCACHE
,
580 if (error
&& !test_bit(SDF_SHUTDOWN
, &sdp
->sd_flags
))
583 gfs2_meta_syncfs(sdp
);
584 gfs2_log_shutdown(sdp
);
586 clear_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
);
589 gfs2_glock_dq_uninit(&t_gh
);
591 gfs2_quota_cleanup(sdp
);
596 int gfs2_statfs_init(struct gfs2_sbd
*sdp
)
598 struct gfs2_inode
*m_ip
= GFS2_I(sdp
->sd_statfs_inode
);
599 struct gfs2_statfs_change_host
*m_sc
= &sdp
->sd_statfs_master
;
600 struct gfs2_inode
*l_ip
= GFS2_I(sdp
->sd_sc_inode
);
601 struct gfs2_statfs_change_host
*l_sc
= &sdp
->sd_statfs_local
;
602 struct buffer_head
*m_bh
, *l_bh
;
603 struct gfs2_holder gh
;
606 error
= gfs2_glock_nq_init(m_ip
->i_gl
, LM_ST_EXCLUSIVE
, GL_NOCACHE
,
611 error
= gfs2_meta_inode_buffer(m_ip
, &m_bh
);
615 if (sdp
->sd_args
.ar_spectator
) {
616 spin_lock(&sdp
->sd_statfs_spin
);
617 gfs2_statfs_change_in(m_sc
, m_bh
->b_data
+
618 sizeof(struct gfs2_dinode
));
619 spin_unlock(&sdp
->sd_statfs_spin
);
621 error
= gfs2_meta_inode_buffer(l_ip
, &l_bh
);
625 spin_lock(&sdp
->sd_statfs_spin
);
626 gfs2_statfs_change_in(m_sc
, m_bh
->b_data
+
627 sizeof(struct gfs2_dinode
));
628 gfs2_statfs_change_in(l_sc
, l_bh
->b_data
+
629 sizeof(struct gfs2_dinode
));
630 spin_unlock(&sdp
->sd_statfs_spin
);
638 gfs2_glock_dq_uninit(&gh
);
642 void gfs2_statfs_change(struct gfs2_sbd
*sdp
, s64 total
, s64 free
,
645 struct gfs2_inode
*l_ip
= GFS2_I(sdp
->sd_sc_inode
);
646 struct gfs2_statfs_change_host
*l_sc
= &sdp
->sd_statfs_local
;
647 struct buffer_head
*l_bh
;
650 error
= gfs2_meta_inode_buffer(l_ip
, &l_bh
);
654 mutex_lock(&sdp
->sd_statfs_mutex
);
655 gfs2_trans_add_bh(l_ip
->i_gl
, l_bh
, 1);
656 mutex_unlock(&sdp
->sd_statfs_mutex
);
658 spin_lock(&sdp
->sd_statfs_spin
);
659 l_sc
->sc_total
+= total
;
660 l_sc
->sc_free
+= free
;
661 l_sc
->sc_dinodes
+= dinodes
;
662 gfs2_statfs_change_out(l_sc
, l_bh
->b_data
+ sizeof(struct gfs2_dinode
));
663 spin_unlock(&sdp
->sd_statfs_spin
);
668 int gfs2_statfs_sync(struct gfs2_sbd
*sdp
)
670 struct gfs2_inode
*m_ip
= GFS2_I(sdp
->sd_statfs_inode
);
671 struct gfs2_inode
*l_ip
= GFS2_I(sdp
->sd_sc_inode
);
672 struct gfs2_statfs_change_host
*m_sc
= &sdp
->sd_statfs_master
;
673 struct gfs2_statfs_change_host
*l_sc
= &sdp
->sd_statfs_local
;
674 struct gfs2_holder gh
;
675 struct buffer_head
*m_bh
, *l_bh
;
678 error
= gfs2_glock_nq_init(m_ip
->i_gl
, LM_ST_EXCLUSIVE
, GL_NOCACHE
,
683 error
= gfs2_meta_inode_buffer(m_ip
, &m_bh
);
687 spin_lock(&sdp
->sd_statfs_spin
);
688 gfs2_statfs_change_in(m_sc
, m_bh
->b_data
+
689 sizeof(struct gfs2_dinode
));
690 if (!l_sc
->sc_total
&& !l_sc
->sc_free
&& !l_sc
->sc_dinodes
) {
691 spin_unlock(&sdp
->sd_statfs_spin
);
694 spin_unlock(&sdp
->sd_statfs_spin
);
696 error
= gfs2_meta_inode_buffer(l_ip
, &l_bh
);
700 error
= gfs2_trans_begin(sdp
, 2 * RES_DINODE
, 0);
704 mutex_lock(&sdp
->sd_statfs_mutex
);
705 gfs2_trans_add_bh(l_ip
->i_gl
, l_bh
, 1);
706 mutex_unlock(&sdp
->sd_statfs_mutex
);
708 spin_lock(&sdp
->sd_statfs_spin
);
709 m_sc
->sc_total
+= l_sc
->sc_total
;
710 m_sc
->sc_free
+= l_sc
->sc_free
;
711 m_sc
->sc_dinodes
+= l_sc
->sc_dinodes
;
712 memset(l_sc
, 0, sizeof(struct gfs2_statfs_change
));
713 memset(l_bh
->b_data
+ sizeof(struct gfs2_dinode
),
714 0, sizeof(struct gfs2_statfs_change
));
715 spin_unlock(&sdp
->sd_statfs_spin
);
717 gfs2_trans_add_bh(m_ip
->i_gl
, m_bh
, 1);
718 gfs2_statfs_change_out(m_sc
, m_bh
->b_data
+ sizeof(struct gfs2_dinode
));
727 gfs2_glock_dq_uninit(&gh
);
732 * gfs2_statfs_i - Do a statfs
733 * @sdp: the filesystem
734 * @sg: the sg structure
739 int gfs2_statfs_i(struct gfs2_sbd
*sdp
, struct gfs2_statfs_change_host
*sc
)
741 struct gfs2_statfs_change_host
*m_sc
= &sdp
->sd_statfs_master
;
742 struct gfs2_statfs_change_host
*l_sc
= &sdp
->sd_statfs_local
;
744 spin_lock(&sdp
->sd_statfs_spin
);
747 sc
->sc_total
+= l_sc
->sc_total
;
748 sc
->sc_free
+= l_sc
->sc_free
;
749 sc
->sc_dinodes
+= l_sc
->sc_dinodes
;
751 spin_unlock(&sdp
->sd_statfs_spin
);
755 if (sc
->sc_free
> sc
->sc_total
)
756 sc
->sc_free
= sc
->sc_total
;
757 if (sc
->sc_dinodes
< 0)
764 * statfs_fill - fill in the sg for a given RG
766 * @sc: the sc structure
768 * Returns: 0 on success, -ESTALE if the LVB is invalid
771 static int statfs_slow_fill(struct gfs2_rgrpd
*rgd
,
772 struct gfs2_statfs_change_host
*sc
)
774 gfs2_rgrp_verify(rgd
);
775 sc
->sc_total
+= rgd
->rd_ri
.ri_data
;
776 sc
->sc_free
+= rgd
->rd_rg
.rg_free
;
777 sc
->sc_dinodes
+= rgd
->rd_rg
.rg_dinodes
;
782 * gfs2_statfs_slow - Stat a filesystem using asynchronous locking
783 * @sdp: the filesystem
784 * @sc: the sc info that will be returned
786 * Any error (other than a signal) will cause this routine to fall back
787 * to the synchronous version.
789 * FIXME: This really shouldn't busy wait like this.
794 int gfs2_statfs_slow(struct gfs2_sbd
*sdp
, struct gfs2_statfs_change_host
*sc
)
796 struct gfs2_holder ri_gh
;
797 struct gfs2_rgrpd
*rgd_next
;
798 struct gfs2_holder
*gha
, *gh
;
799 unsigned int slots
= 64;
804 memset(sc
, 0, sizeof(struct gfs2_statfs_change_host
));
805 gha
= kcalloc(slots
, sizeof(struct gfs2_holder
), GFP_KERNEL
);
809 error
= gfs2_rindex_hold(sdp
, &ri_gh
);
813 rgd_next
= gfs2_rgrpd_get_first(sdp
);
818 for (x
= 0; x
< slots
; x
++) {
821 if (gh
->gh_gl
&& gfs2_glock_poll(gh
)) {
822 err
= gfs2_glock_wait(gh
);
824 gfs2_holder_uninit(gh
);
828 error
= statfs_slow_fill(
829 gh
->gh_gl
->gl_object
, sc
);
830 gfs2_glock_dq_uninit(gh
);
836 else if (rgd_next
&& !error
) {
837 error
= gfs2_glock_nq_init(rgd_next
->rd_gl
,
841 rgd_next
= gfs2_rgrpd_get_next(rgd_next
);
845 if (signal_pending(current
))
846 error
= -ERESTARTSYS
;
855 gfs2_glock_dq_uninit(&ri_gh
);
863 struct list_head list
;
864 struct gfs2_holder gh
;
868 * gfs2_lock_fs_check_clean - Stop all writes to the FS and check that all
870 * @sdp: the file system
871 * @state: the state to put the transaction lock into
872 * @t_gh: the hold on the transaction lock
877 static int gfs2_lock_fs_check_clean(struct gfs2_sbd
*sdp
,
878 struct gfs2_holder
*t_gh
)
880 struct gfs2_inode
*ip
;
881 struct gfs2_holder ji_gh
;
882 struct gfs2_jdesc
*jd
;
885 struct gfs2_log_header_host lh
;
888 error
= gfs2_jindex_hold(sdp
, &ji_gh
);
892 list_for_each_entry(jd
, &sdp
->sd_jindex_list
, jd_list
) {
893 lfcc
= kmalloc(sizeof(struct lfcc
), GFP_KERNEL
);
898 ip
= GFS2_I(jd
->jd_inode
);
899 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, 0, &lfcc
->gh
);
904 list_add(&lfcc
->list
, &list
);
907 error
= gfs2_glock_nq_init(sdp
->sd_trans_gl
, LM_ST_DEFERRED
,
908 LM_FLAG_PRIORITY
| GL_NOCACHE
,
911 list_for_each_entry(jd
, &sdp
->sd_jindex_list
, jd_list
) {
912 error
= gfs2_jdesc_check(jd
);
915 error
= gfs2_find_jhead(jd
, &lh
);
918 if (!(lh
.lh_flags
& GFS2_LOG_HEAD_UNMOUNT
)) {
925 gfs2_glock_dq_uninit(t_gh
);
928 while (!list_empty(&list
)) {
929 lfcc
= list_entry(list
.next
, struct lfcc
, list
);
930 list_del(&lfcc
->list
);
931 gfs2_glock_dq_uninit(&lfcc
->gh
);
934 gfs2_glock_dq_uninit(&ji_gh
);
939 * gfs2_freeze_fs - freezes the file system
940 * @sdp: the file system
942 * This function flushes data and meta data for all machines by
943 * aquiring the transaction log exclusively. All journals are
944 * ensured to be in a clean state as well.
949 int gfs2_freeze_fs(struct gfs2_sbd
*sdp
)
953 mutex_lock(&sdp
->sd_freeze_lock
);
955 if (!sdp
->sd_freeze_count
++) {
956 error
= gfs2_lock_fs_check_clean(sdp
, &sdp
->sd_freeze_gh
);
958 sdp
->sd_freeze_count
--;
961 mutex_unlock(&sdp
->sd_freeze_lock
);
967 * gfs2_unfreeze_fs - unfreezes the file system
968 * @sdp: the file system
970 * This function allows the file system to proceed by unlocking
971 * the exclusively held transaction lock. Other GFS2 nodes are
972 * now free to acquire the lock shared and go on with their lives.
976 void gfs2_unfreeze_fs(struct gfs2_sbd
*sdp
)
978 mutex_lock(&sdp
->sd_freeze_lock
);
980 if (sdp
->sd_freeze_count
&& !--sdp
->sd_freeze_count
)
981 gfs2_glock_dq_uninit(&sdp
->sd_freeze_gh
);
983 mutex_unlock(&sdp
->sd_freeze_lock
);