2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2007 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/bio.h>
11 #include <linux/sched.h>
12 #include <linux/slab.h>
13 #include <linux/spinlock.h>
14 #include <linux/completion.h>
15 #include <linux/buffer_head.h>
16 #include <linux/statfs.h>
17 #include <linux/seq_file.h>
18 #include <linux/mount.h>
19 #include <linux/kthread.h>
20 #include <linux/delay.h>
21 #include <linux/gfs2_ondisk.h>
22 #include <linux/crc32.h>
23 #include <linux/time.h>
43 #define args_neq(a1, a2, x) ((a1)->ar_##x != (a2)->ar_##x)
74 static const match_table_t tokens
= {
75 {Opt_lockproto
, "lockproto=%s"},
76 {Opt_locktable
, "locktable=%s"},
77 {Opt_hostdata
, "hostdata=%s"},
78 {Opt_spectator
, "spectator"},
79 {Opt_ignore_local_fs
, "ignore_local_fs"},
80 {Opt_localflocks
, "localflocks"},
81 {Opt_localcaching
, "localcaching"},
83 {Opt_nodebug
, "nodebug"},
84 {Opt_upgrade
, "upgrade"},
87 {Opt_quota_off
, "quota=off"},
88 {Opt_quota_account
, "quota=account"},
89 {Opt_quota_on
, "quota=on"},
91 {Opt_noquota
, "noquota"},
92 {Opt_suiddir
, "suiddir"},
93 {Opt_nosuiddir
, "nosuiddir"},
94 {Opt_data_writeback
, "data=writeback"},
95 {Opt_data_ordered
, "data=ordered"},
97 {Opt_discard
, "discard"},
98 {Opt_nodiscard
, "nodiscard"},
99 {Opt_commit
, "commit=%d"},
104 * gfs2_mount_args - Parse mount options
111 int gfs2_mount_args(struct gfs2_sbd
*sdp
, struct gfs2_args
*args
, char *options
)
115 substring_t tmp
[MAX_OPT_ARGS
];
118 /* Split the options into tokens with the "," character and
122 o
= strsep(&options
, ",");
128 token
= match_token(o
, tokens
, tmp
);
131 match_strlcpy(args
->ar_lockproto
, &tmp
[0],
135 match_strlcpy(args
->ar_locktable
, &tmp
[0],
139 match_strlcpy(args
->ar_hostdata
, &tmp
[0],
143 args
->ar_spectator
= 1;
145 case Opt_ignore_local_fs
:
146 args
->ar_ignore_local_fs
= 1;
148 case Opt_localflocks
:
149 args
->ar_localflocks
= 1;
151 case Opt_localcaching
:
152 args
->ar_localcaching
= 1;
161 args
->ar_upgrade
= 1;
164 args
->ar_posix_acl
= 1;
167 args
->ar_posix_acl
= 0;
171 args
->ar_quota
= GFS2_QUOTA_OFF
;
173 case Opt_quota_account
:
174 args
->ar_quota
= GFS2_QUOTA_ACCOUNT
;
178 args
->ar_quota
= GFS2_QUOTA_ON
;
181 args
->ar_suiddir
= 1;
184 args
->ar_suiddir
= 0;
186 case Opt_data_writeback
:
187 args
->ar_data
= GFS2_DATA_WRITEBACK
;
189 case Opt_data_ordered
:
190 args
->ar_data
= GFS2_DATA_ORDERED
;
196 args
->ar_discard
= 1;
199 args
->ar_discard
= 0;
202 rv
= match_int(&tmp
[0], &args
->ar_commit
);
203 if (rv
|| args
->ar_commit
<= 0) {
204 fs_info(sdp
, "commit mount option requires a positive numeric argument\n");
205 return rv
? rv
: -EINVAL
;
210 fs_info(sdp
, "invalid mount option: %s\n", o
);
219 * gfs2_jindex_free - Clear all the journal index information
220 * @sdp: The GFS2 superblock
224 void gfs2_jindex_free(struct gfs2_sbd
*sdp
)
226 struct list_head list
, *head
;
227 struct gfs2_jdesc
*jd
;
228 struct gfs2_journal_extent
*jext
;
230 spin_lock(&sdp
->sd_jindex_spin
);
231 list_add(&list
, &sdp
->sd_jindex_list
);
232 list_del_init(&sdp
->sd_jindex_list
);
233 sdp
->sd_journals
= 0;
234 spin_unlock(&sdp
->sd_jindex_spin
);
236 while (!list_empty(&list
)) {
237 jd
= list_entry(list
.next
, struct gfs2_jdesc
, jd_list
);
238 head
= &jd
->extent_list
;
239 while (!list_empty(head
)) {
240 jext
= list_entry(head
->next
,
241 struct gfs2_journal_extent
,
243 list_del(&jext
->extent_list
);
246 list_del(&jd
->jd_list
);
252 static struct gfs2_jdesc
*jdesc_find_i(struct list_head
*head
, unsigned int jid
)
254 struct gfs2_jdesc
*jd
;
257 list_for_each_entry(jd
, head
, jd_list
) {
258 if (jd
->jd_jid
== jid
) {
270 struct gfs2_jdesc
*gfs2_jdesc_find(struct gfs2_sbd
*sdp
, unsigned int jid
)
272 struct gfs2_jdesc
*jd
;
274 spin_lock(&sdp
->sd_jindex_spin
);
275 jd
= jdesc_find_i(&sdp
->sd_jindex_list
, jid
);
276 spin_unlock(&sdp
->sd_jindex_spin
);
281 int gfs2_jdesc_check(struct gfs2_jdesc
*jd
)
283 struct gfs2_inode
*ip
= GFS2_I(jd
->jd_inode
);
284 struct gfs2_sbd
*sdp
= GFS2_SB(jd
->jd_inode
);
288 if (ip
->i_disksize
< (8 << 20) || ip
->i_disksize
> (1 << 30) ||
289 (ip
->i_disksize
& (sdp
->sd_sb
.sb_bsize
- 1))) {
290 gfs2_consist_inode(ip
);
293 jd
->jd_blocks
= ip
->i_disksize
>> sdp
->sd_sb
.sb_bsize_shift
;
295 error
= gfs2_write_alloc_required(ip
, 0, ip
->i_disksize
, &ar
);
297 gfs2_consist_inode(ip
);
305 * gfs2_make_fs_rw - Turn a Read-Only FS into a Read-Write one
306 * @sdp: the filesystem
311 int gfs2_make_fs_rw(struct gfs2_sbd
*sdp
)
313 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_jdesc
->jd_inode
);
314 struct gfs2_glock
*j_gl
= ip
->i_gl
;
315 struct gfs2_holder t_gh
;
316 struct gfs2_log_header_host head
;
319 error
= gfs2_glock_nq_init(sdp
->sd_trans_gl
, LM_ST_SHARED
, 0, &t_gh
);
323 j_gl
->gl_ops
->go_inval(j_gl
, DIO_METADATA
);
325 error
= gfs2_find_jhead(sdp
->sd_jdesc
, &head
);
329 if (!(head
.lh_flags
& GFS2_LOG_HEAD_UNMOUNT
)) {
335 /* Initialize some head of the log stuff */
336 sdp
->sd_log_sequence
= head
.lh_sequence
+ 1;
337 gfs2_log_pointers_init(sdp
, head
.lh_blkno
);
339 error
= gfs2_quota_init(sdp
);
343 set_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
);
345 gfs2_glock_dq_uninit(&t_gh
);
350 t_gh
.gh_flags
|= GL_NOCACHE
;
351 gfs2_glock_dq_uninit(&t_gh
);
356 void gfs2_statfs_change_in(struct gfs2_statfs_change_host
*sc
, const void *buf
)
358 const struct gfs2_statfs_change
*str
= buf
;
360 sc
->sc_total
= be64_to_cpu(str
->sc_total
);
361 sc
->sc_free
= be64_to_cpu(str
->sc_free
);
362 sc
->sc_dinodes
= be64_to_cpu(str
->sc_dinodes
);
365 static void gfs2_statfs_change_out(const struct gfs2_statfs_change_host
*sc
, void *buf
)
367 struct gfs2_statfs_change
*str
= buf
;
369 str
->sc_total
= cpu_to_be64(sc
->sc_total
);
370 str
->sc_free
= cpu_to_be64(sc
->sc_free
);
371 str
->sc_dinodes
= cpu_to_be64(sc
->sc_dinodes
);
374 int gfs2_statfs_init(struct gfs2_sbd
*sdp
)
376 struct gfs2_inode
*m_ip
= GFS2_I(sdp
->sd_statfs_inode
);
377 struct gfs2_statfs_change_host
*m_sc
= &sdp
->sd_statfs_master
;
378 struct gfs2_inode
*l_ip
= GFS2_I(sdp
->sd_sc_inode
);
379 struct gfs2_statfs_change_host
*l_sc
= &sdp
->sd_statfs_local
;
380 struct buffer_head
*m_bh
, *l_bh
;
381 struct gfs2_holder gh
;
384 error
= gfs2_glock_nq_init(m_ip
->i_gl
, LM_ST_EXCLUSIVE
, GL_NOCACHE
,
389 error
= gfs2_meta_inode_buffer(m_ip
, &m_bh
);
393 if (sdp
->sd_args
.ar_spectator
) {
394 spin_lock(&sdp
->sd_statfs_spin
);
395 gfs2_statfs_change_in(m_sc
, m_bh
->b_data
+
396 sizeof(struct gfs2_dinode
));
397 spin_unlock(&sdp
->sd_statfs_spin
);
399 error
= gfs2_meta_inode_buffer(l_ip
, &l_bh
);
403 spin_lock(&sdp
->sd_statfs_spin
);
404 gfs2_statfs_change_in(m_sc
, m_bh
->b_data
+
405 sizeof(struct gfs2_dinode
));
406 gfs2_statfs_change_in(l_sc
, l_bh
->b_data
+
407 sizeof(struct gfs2_dinode
));
408 spin_unlock(&sdp
->sd_statfs_spin
);
416 gfs2_glock_dq_uninit(&gh
);
420 void gfs2_statfs_change(struct gfs2_sbd
*sdp
, s64 total
, s64 free
,
423 struct gfs2_inode
*l_ip
= GFS2_I(sdp
->sd_sc_inode
);
424 struct gfs2_statfs_change_host
*l_sc
= &sdp
->sd_statfs_local
;
425 struct buffer_head
*l_bh
;
428 error
= gfs2_meta_inode_buffer(l_ip
, &l_bh
);
432 gfs2_trans_add_bh(l_ip
->i_gl
, l_bh
, 1);
434 spin_lock(&sdp
->sd_statfs_spin
);
435 l_sc
->sc_total
+= total
;
436 l_sc
->sc_free
+= free
;
437 l_sc
->sc_dinodes
+= dinodes
;
438 gfs2_statfs_change_out(l_sc
, l_bh
->b_data
+ sizeof(struct gfs2_dinode
));
439 spin_unlock(&sdp
->sd_statfs_spin
);
444 void update_statfs(struct gfs2_sbd
*sdp
, struct buffer_head
*m_bh
,
445 struct buffer_head
*l_bh
)
447 struct gfs2_inode
*m_ip
= GFS2_I(sdp
->sd_statfs_inode
);
448 struct gfs2_inode
*l_ip
= GFS2_I(sdp
->sd_sc_inode
);
449 struct gfs2_statfs_change_host
*m_sc
= &sdp
->sd_statfs_master
;
450 struct gfs2_statfs_change_host
*l_sc
= &sdp
->sd_statfs_local
;
452 gfs2_trans_add_bh(l_ip
->i_gl
, l_bh
, 1);
454 spin_lock(&sdp
->sd_statfs_spin
);
455 m_sc
->sc_total
+= l_sc
->sc_total
;
456 m_sc
->sc_free
+= l_sc
->sc_free
;
457 m_sc
->sc_dinodes
+= l_sc
->sc_dinodes
;
458 memset(l_sc
, 0, sizeof(struct gfs2_statfs_change
));
459 memset(l_bh
->b_data
+ sizeof(struct gfs2_dinode
),
460 0, sizeof(struct gfs2_statfs_change
));
461 spin_unlock(&sdp
->sd_statfs_spin
);
463 gfs2_trans_add_bh(m_ip
->i_gl
, m_bh
, 1);
464 gfs2_statfs_change_out(m_sc
, m_bh
->b_data
+ sizeof(struct gfs2_dinode
));
467 int gfs2_statfs_sync(struct gfs2_sbd
*sdp
)
469 struct gfs2_inode
*m_ip
= GFS2_I(sdp
->sd_statfs_inode
);
470 struct gfs2_inode
*l_ip
= GFS2_I(sdp
->sd_sc_inode
);
471 struct gfs2_statfs_change_host
*m_sc
= &sdp
->sd_statfs_master
;
472 struct gfs2_statfs_change_host
*l_sc
= &sdp
->sd_statfs_local
;
473 struct gfs2_holder gh
;
474 struct buffer_head
*m_bh
, *l_bh
;
477 error
= gfs2_glock_nq_init(m_ip
->i_gl
, LM_ST_EXCLUSIVE
, GL_NOCACHE
,
482 error
= gfs2_meta_inode_buffer(m_ip
, &m_bh
);
486 spin_lock(&sdp
->sd_statfs_spin
);
487 gfs2_statfs_change_in(m_sc
, m_bh
->b_data
+
488 sizeof(struct gfs2_dinode
));
489 if (!l_sc
->sc_total
&& !l_sc
->sc_free
&& !l_sc
->sc_dinodes
) {
490 spin_unlock(&sdp
->sd_statfs_spin
);
493 spin_unlock(&sdp
->sd_statfs_spin
);
495 error
= gfs2_meta_inode_buffer(l_ip
, &l_bh
);
499 error
= gfs2_trans_begin(sdp
, 2 * RES_DINODE
, 0);
503 update_statfs(sdp
, m_bh
, l_bh
);
512 gfs2_glock_dq_uninit(&gh
);
517 struct list_head list
;
518 struct gfs2_holder gh
;
522 * gfs2_lock_fs_check_clean - Stop all writes to the FS and check that all
524 * @sdp: the file system
525 * @state: the state to put the transaction lock into
526 * @t_gh: the hold on the transaction lock
531 static int gfs2_lock_fs_check_clean(struct gfs2_sbd
*sdp
,
532 struct gfs2_holder
*t_gh
)
534 struct gfs2_inode
*ip
;
535 struct gfs2_jdesc
*jd
;
538 struct gfs2_log_header_host lh
;
541 list_for_each_entry(jd
, &sdp
->sd_jindex_list
, jd_list
) {
542 lfcc
= kmalloc(sizeof(struct lfcc
), GFP_KERNEL
);
547 ip
= GFS2_I(jd
->jd_inode
);
548 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, 0, &lfcc
->gh
);
553 list_add(&lfcc
->list
, &list
);
556 error
= gfs2_glock_nq_init(sdp
->sd_trans_gl
, LM_ST_DEFERRED
,
559 list_for_each_entry(jd
, &sdp
->sd_jindex_list
, jd_list
) {
560 error
= gfs2_jdesc_check(jd
);
563 error
= gfs2_find_jhead(jd
, &lh
);
566 if (!(lh
.lh_flags
& GFS2_LOG_HEAD_UNMOUNT
)) {
573 gfs2_glock_dq_uninit(t_gh
);
576 while (!list_empty(&list
)) {
577 lfcc
= list_entry(list
.next
, struct lfcc
, list
);
578 list_del(&lfcc
->list
);
579 gfs2_glock_dq_uninit(&lfcc
->gh
);
586 * gfs2_freeze_fs - freezes the file system
587 * @sdp: the file system
589 * This function flushes data and meta data for all machines by
590 * aquiring the transaction log exclusively. All journals are
591 * ensured to be in a clean state as well.
596 int gfs2_freeze_fs(struct gfs2_sbd
*sdp
)
600 mutex_lock(&sdp
->sd_freeze_lock
);
602 if (!sdp
->sd_freeze_count
++) {
603 error
= gfs2_lock_fs_check_clean(sdp
, &sdp
->sd_freeze_gh
);
605 sdp
->sd_freeze_count
--;
608 mutex_unlock(&sdp
->sd_freeze_lock
);
614 * gfs2_unfreeze_fs - unfreezes the file system
615 * @sdp: the file system
617 * This function allows the file system to proceed by unlocking
618 * the exclusively held transaction lock. Other GFS2 nodes are
619 * now free to acquire the lock shared and go on with their lives.
623 void gfs2_unfreeze_fs(struct gfs2_sbd
*sdp
)
625 mutex_lock(&sdp
->sd_freeze_lock
);
627 if (sdp
->sd_freeze_count
&& !--sdp
->sd_freeze_count
)
628 gfs2_glock_dq_uninit(&sdp
->sd_freeze_gh
);
630 mutex_unlock(&sdp
->sd_freeze_lock
);
635 * gfs2_write_inode - Make sure the inode is stable on the disk
637 * @sync: synchronous write flag
642 static int gfs2_write_inode(struct inode
*inode
, int sync
)
644 struct gfs2_inode
*ip
= GFS2_I(inode
);
645 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
646 struct gfs2_holder gh
;
647 struct buffer_head
*bh
;
648 struct timespec atime
;
649 struct gfs2_dinode
*di
;
652 /* Check this is a "normal" inode, etc */
653 if (!test_bit(GIF_USER
, &ip
->i_flags
) ||
654 (current
->flags
& PF_MEMALLOC
))
656 ret
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_EXCLUSIVE
, 0, &gh
);
659 ret
= gfs2_trans_begin(sdp
, RES_DINODE
, 0);
662 ret
= gfs2_meta_inode_buffer(ip
, &bh
);
664 di
= (struct gfs2_dinode
*)bh
->b_data
;
665 atime
.tv_sec
= be64_to_cpu(di
->di_atime
);
666 atime
.tv_nsec
= be32_to_cpu(di
->di_atime_nsec
);
667 if (timespec_compare(&inode
->i_atime
, &atime
) > 0) {
668 gfs2_trans_add_bh(ip
->i_gl
, bh
, 1);
669 gfs2_dinode_out(ip
, bh
->b_data
);
675 gfs2_glock_dq_uninit(&gh
);
678 gfs2_log_flush(GFS2_SB(inode
), ip
->i_gl
);
683 * gfs2_make_fs_ro - Turn a Read-Write FS into a Read-Only one
684 * @sdp: the filesystem
689 static int gfs2_make_fs_ro(struct gfs2_sbd
*sdp
)
691 struct gfs2_holder t_gh
;
694 flush_workqueue(gfs2_delete_workqueue
);
695 gfs2_quota_sync(sdp
);
696 gfs2_statfs_sync(sdp
);
698 error
= gfs2_glock_nq_init(sdp
->sd_trans_gl
, LM_ST_SHARED
, GL_NOCACHE
,
700 if (error
&& !test_bit(SDF_SHUTDOWN
, &sdp
->sd_flags
))
703 gfs2_meta_syncfs(sdp
);
704 gfs2_log_shutdown(sdp
);
706 clear_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
);
709 gfs2_glock_dq_uninit(&t_gh
);
711 gfs2_quota_cleanup(sdp
);
716 static int gfs2_umount_recovery_wait(void *word
)
723 * gfs2_put_super - Unmount the filesystem
724 * @sb: The VFS superblock
728 static void gfs2_put_super(struct super_block
*sb
)
730 struct gfs2_sbd
*sdp
= sb
->s_fs_info
;
732 struct gfs2_jdesc
*jd
;
734 /* Unfreeze the filesystem, if we need to */
736 mutex_lock(&sdp
->sd_freeze_lock
);
737 if (sdp
->sd_freeze_count
)
738 gfs2_glock_dq_uninit(&sdp
->sd_freeze_gh
);
739 mutex_unlock(&sdp
->sd_freeze_lock
);
741 /* No more recovery requests */
742 set_bit(SDF_NORECOVERY
, &sdp
->sd_flags
);
745 /* Wait on outstanding recovery */
747 spin_lock(&sdp
->sd_jindex_spin
);
748 list_for_each_entry(jd
, &sdp
->sd_jindex_list
, jd_list
) {
749 if (!test_bit(JDF_RECOVERY
, &jd
->jd_flags
))
751 spin_unlock(&sdp
->sd_jindex_spin
);
752 wait_on_bit(&jd
->jd_flags
, JDF_RECOVERY
,
753 gfs2_umount_recovery_wait
, TASK_UNINTERRUPTIBLE
);
756 spin_unlock(&sdp
->sd_jindex_spin
);
758 kthread_stop(sdp
->sd_quotad_process
);
759 kthread_stop(sdp
->sd_logd_process
);
761 if (!(sb
->s_flags
& MS_RDONLY
)) {
762 error
= gfs2_make_fs_ro(sdp
);
766 /* At this point, we're through modifying the disk */
770 iput(sdp
->sd_jindex
);
771 iput(sdp
->sd_inum_inode
);
772 iput(sdp
->sd_statfs_inode
);
773 iput(sdp
->sd_rindex
);
774 iput(sdp
->sd_quota_inode
);
776 gfs2_glock_put(sdp
->sd_rename_gl
);
777 gfs2_glock_put(sdp
->sd_trans_gl
);
779 if (!sdp
->sd_args
.ar_spectator
) {
780 gfs2_glock_dq_uninit(&sdp
->sd_journal_gh
);
781 gfs2_glock_dq_uninit(&sdp
->sd_jinode_gh
);
782 gfs2_glock_dq_uninit(&sdp
->sd_ir_gh
);
783 gfs2_glock_dq_uninit(&sdp
->sd_sc_gh
);
784 gfs2_glock_dq_uninit(&sdp
->sd_qc_gh
);
785 iput(sdp
->sd_ir_inode
);
786 iput(sdp
->sd_sc_inode
);
787 iput(sdp
->sd_qc_inode
);
790 gfs2_glock_dq_uninit(&sdp
->sd_live_gh
);
791 gfs2_clear_rgrpd(sdp
);
792 gfs2_jindex_free(sdp
);
793 /* Take apart glock structures and buffer lists */
794 gfs2_gl_hash_clear(sdp
);
795 /* Unmount the locking protocol */
796 gfs2_lm_unmount(sdp
);
798 /* At this point, we're through participating in the lockspace */
799 gfs2_sys_fs_del(sdp
);
803 * gfs2_sync_fs - sync the filesystem
804 * @sb: the superblock
806 * Flushes the log to disk.
809 static int gfs2_sync_fs(struct super_block
*sb
, int wait
)
811 if (wait
&& sb
->s_fs_info
)
812 gfs2_log_flush(sb
->s_fs_info
, NULL
);
817 * gfs2_freeze - prevent further writes to the filesystem
818 * @sb: the VFS structure for the filesystem
822 static int gfs2_freeze(struct super_block
*sb
)
824 struct gfs2_sbd
*sdp
= sb
->s_fs_info
;
827 if (test_bit(SDF_SHUTDOWN
, &sdp
->sd_flags
))
831 error
= gfs2_freeze_fs(sdp
);
837 fs_err(sdp
, "waiting for recovery before freeze\n");
841 fs_err(sdp
, "error freezing FS: %d\n", error
);
845 fs_err(sdp
, "retrying...\n");
852 * gfs2_unfreeze - reallow writes to the filesystem
853 * @sb: the VFS structure for the filesystem
857 static int gfs2_unfreeze(struct super_block
*sb
)
859 gfs2_unfreeze_fs(sb
->s_fs_info
);
864 * statfs_fill - fill in the sg for a given RG
866 * @sc: the sc structure
868 * Returns: 0 on success, -ESTALE if the LVB is invalid
871 static int statfs_slow_fill(struct gfs2_rgrpd
*rgd
,
872 struct gfs2_statfs_change_host
*sc
)
874 gfs2_rgrp_verify(rgd
);
875 sc
->sc_total
+= rgd
->rd_data
;
876 sc
->sc_free
+= rgd
->rd_free
;
877 sc
->sc_dinodes
+= rgd
->rd_dinodes
;
882 * gfs2_statfs_slow - Stat a filesystem using asynchronous locking
883 * @sdp: the filesystem
884 * @sc: the sc info that will be returned
886 * Any error (other than a signal) will cause this routine to fall back
887 * to the synchronous version.
889 * FIXME: This really shouldn't busy wait like this.
894 static int gfs2_statfs_slow(struct gfs2_sbd
*sdp
, struct gfs2_statfs_change_host
*sc
)
896 struct gfs2_holder ri_gh
;
897 struct gfs2_rgrpd
*rgd_next
;
898 struct gfs2_holder
*gha
, *gh
;
899 unsigned int slots
= 64;
904 memset(sc
, 0, sizeof(struct gfs2_statfs_change_host
));
905 gha
= kcalloc(slots
, sizeof(struct gfs2_holder
), GFP_KERNEL
);
909 error
= gfs2_rindex_hold(sdp
, &ri_gh
);
913 rgd_next
= gfs2_rgrpd_get_first(sdp
);
918 for (x
= 0; x
< slots
; x
++) {
921 if (gh
->gh_gl
&& gfs2_glock_poll(gh
)) {
922 err
= gfs2_glock_wait(gh
);
924 gfs2_holder_uninit(gh
);
928 error
= statfs_slow_fill(
929 gh
->gh_gl
->gl_object
, sc
);
930 gfs2_glock_dq_uninit(gh
);
936 else if (rgd_next
&& !error
) {
937 error
= gfs2_glock_nq_init(rgd_next
->rd_gl
,
941 rgd_next
= gfs2_rgrpd_get_next(rgd_next
);
945 if (signal_pending(current
))
946 error
= -ERESTARTSYS
;
955 gfs2_glock_dq_uninit(&ri_gh
);
963 * gfs2_statfs_i - Do a statfs
964 * @sdp: the filesystem
965 * @sg: the sg structure
970 static int gfs2_statfs_i(struct gfs2_sbd
*sdp
, struct gfs2_statfs_change_host
*sc
)
972 struct gfs2_statfs_change_host
*m_sc
= &sdp
->sd_statfs_master
;
973 struct gfs2_statfs_change_host
*l_sc
= &sdp
->sd_statfs_local
;
975 spin_lock(&sdp
->sd_statfs_spin
);
978 sc
->sc_total
+= l_sc
->sc_total
;
979 sc
->sc_free
+= l_sc
->sc_free
;
980 sc
->sc_dinodes
+= l_sc
->sc_dinodes
;
982 spin_unlock(&sdp
->sd_statfs_spin
);
986 if (sc
->sc_free
> sc
->sc_total
)
987 sc
->sc_free
= sc
->sc_total
;
988 if (sc
->sc_dinodes
< 0)
995 * gfs2_statfs - Gather and return stats about the filesystem
996 * @sb: The superblock
997 * @statfsbuf: The buffer
999 * Returns: 0 on success or error code
1002 static int gfs2_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
1004 struct super_block
*sb
= dentry
->d_inode
->i_sb
;
1005 struct gfs2_sbd
*sdp
= sb
->s_fs_info
;
1006 struct gfs2_statfs_change_host sc
;
1009 if (gfs2_tune_get(sdp
, gt_statfs_slow
))
1010 error
= gfs2_statfs_slow(sdp
, &sc
);
1012 error
= gfs2_statfs_i(sdp
, &sc
);
1017 buf
->f_type
= GFS2_MAGIC
;
1018 buf
->f_bsize
= sdp
->sd_sb
.sb_bsize
;
1019 buf
->f_blocks
= sc
.sc_total
;
1020 buf
->f_bfree
= sc
.sc_free
;
1021 buf
->f_bavail
= sc
.sc_free
;
1022 buf
->f_files
= sc
.sc_dinodes
+ sc
.sc_free
;
1023 buf
->f_ffree
= sc
.sc_free
;
1024 buf
->f_namelen
= GFS2_FNAMESIZE
;
1030 * gfs2_remount_fs - called when the FS is remounted
1031 * @sb: the filesystem
1032 * @flags: the remount flags
1033 * @data: extra data passed in (not used right now)
1038 static int gfs2_remount_fs(struct super_block
*sb
, int *flags
, char *data
)
1040 struct gfs2_sbd
*sdp
= sb
->s_fs_info
;
1041 struct gfs2_args args
= sdp
->sd_args
; /* Default to current settings */
1042 struct gfs2_tune
*gt
= &sdp
->sd_tune
;
1045 spin_lock(>
->gt_spin
);
1046 args
.ar_commit
= gt
->gt_log_flush_secs
;
1047 spin_unlock(>
->gt_spin
);
1048 error
= gfs2_mount_args(sdp
, &args
, data
);
1052 /* Not allowed to change locking details */
1053 if (strcmp(args
.ar_lockproto
, sdp
->sd_args
.ar_lockproto
) ||
1054 strcmp(args
.ar_locktable
, sdp
->sd_args
.ar_locktable
) ||
1055 strcmp(args
.ar_hostdata
, sdp
->sd_args
.ar_hostdata
))
1058 /* Some flags must not be changed */
1059 if (args_neq(&args
, &sdp
->sd_args
, spectator
) ||
1060 args_neq(&args
, &sdp
->sd_args
, ignore_local_fs
) ||
1061 args_neq(&args
, &sdp
->sd_args
, localflocks
) ||
1062 args_neq(&args
, &sdp
->sd_args
, localcaching
) ||
1063 args_neq(&args
, &sdp
->sd_args
, meta
))
1066 if (sdp
->sd_args
.ar_spectator
)
1067 *flags
|= MS_RDONLY
;
1069 if ((sb
->s_flags
^ *flags
) & MS_RDONLY
) {
1070 if (*flags
& MS_RDONLY
)
1071 error
= gfs2_make_fs_ro(sdp
);
1073 error
= gfs2_make_fs_rw(sdp
);
1078 sdp
->sd_args
= args
;
1079 if (sdp
->sd_args
.ar_posix_acl
)
1080 sb
->s_flags
|= MS_POSIXACL
;
1082 sb
->s_flags
&= ~MS_POSIXACL
;
1083 spin_lock(>
->gt_spin
);
1084 gt
->gt_log_flush_secs
= args
.ar_commit
;
1085 spin_unlock(>
->gt_spin
);
1091 * gfs2_drop_inode - Drop an inode (test for remote unlink)
1092 * @inode: The inode to drop
1094 * If we've received a callback on an iopen lock then its because a
1095 * remote node tried to deallocate the inode but failed due to this node
1096 * still having the inode open. Here we mark the link count zero
1097 * since we know that it must have reached zero if the GLF_DEMOTE flag
1098 * is set on the iopen glock. If we didn't do a disk read since the
1099 * remote node removed the final link then we might otherwise miss
1100 * this event. This check ensures that this node will deallocate the
1101 * inode's blocks, or alternatively pass the baton on to another
1102 * node for later deallocation.
1105 static void gfs2_drop_inode(struct inode
*inode
)
1107 struct gfs2_inode
*ip
= GFS2_I(inode
);
1109 if (test_bit(GIF_USER
, &ip
->i_flags
) && inode
->i_nlink
) {
1110 struct gfs2_glock
*gl
= ip
->i_iopen_gh
.gh_gl
;
1111 if (gl
&& test_bit(GLF_DEMOTE
, &gl
->gl_flags
))
1114 generic_drop_inode(inode
);
1118 * gfs2_clear_inode - Deallocate an inode when VFS is done with it
1119 * @inode: The VFS inode
1123 static void gfs2_clear_inode(struct inode
*inode
)
1125 struct gfs2_inode
*ip
= GFS2_I(inode
);
1127 /* This tells us its a "real" inode and not one which only
1128 * serves to contain an address space (see rgrp.c, meta_io.c)
1129 * which therefore doesn't have its own glocks.
1131 if (test_bit(GIF_USER
, &ip
->i_flags
)) {
1132 ip
->i_gl
->gl_object
= NULL
;
1133 gfs2_glock_put(ip
->i_gl
);
1135 if (ip
->i_iopen_gh
.gh_gl
) {
1136 ip
->i_iopen_gh
.gh_gl
->gl_object
= NULL
;
1137 gfs2_glock_dq_uninit(&ip
->i_iopen_gh
);
1142 static int is_ancestor(const struct dentry
*d1
, const struct dentry
*d2
)
1148 } while (!IS_ROOT(d1
));
1153 * gfs2_show_options - Show mount options for /proc/mounts
1154 * @s: seq_file structure
1157 * Returns: 0 on success or error code
1160 static int gfs2_show_options(struct seq_file
*s
, struct vfsmount
*mnt
)
1162 struct gfs2_sbd
*sdp
= mnt
->mnt_sb
->s_fs_info
;
1163 struct gfs2_args
*args
= &sdp
->sd_args
;
1166 if (is_ancestor(mnt
->mnt_root
, sdp
->sd_master_dir
))
1167 seq_printf(s
, ",meta");
1168 if (args
->ar_lockproto
[0])
1169 seq_printf(s
, ",lockproto=%s", args
->ar_lockproto
);
1170 if (args
->ar_locktable
[0])
1171 seq_printf(s
, ",locktable=%s", args
->ar_locktable
);
1172 if (args
->ar_hostdata
[0])
1173 seq_printf(s
, ",hostdata=%s", args
->ar_hostdata
);
1174 if (args
->ar_spectator
)
1175 seq_printf(s
, ",spectator");
1176 if (args
->ar_ignore_local_fs
)
1177 seq_printf(s
, ",ignore_local_fs");
1178 if (args
->ar_localflocks
)
1179 seq_printf(s
, ",localflocks");
1180 if (args
->ar_localcaching
)
1181 seq_printf(s
, ",localcaching");
1183 seq_printf(s
, ",debug");
1184 if (args
->ar_upgrade
)
1185 seq_printf(s
, ",upgrade");
1186 if (args
->ar_posix_acl
)
1187 seq_printf(s
, ",acl");
1188 if (args
->ar_quota
!= GFS2_QUOTA_DEFAULT
) {
1190 switch (args
->ar_quota
) {
1191 case GFS2_QUOTA_OFF
:
1194 case GFS2_QUOTA_ACCOUNT
:
1204 seq_printf(s
, ",quota=%s", state
);
1206 if (args
->ar_suiddir
)
1207 seq_printf(s
, ",suiddir");
1208 if (args
->ar_data
!= GFS2_DATA_DEFAULT
) {
1210 switch (args
->ar_data
) {
1211 case GFS2_DATA_WRITEBACK
:
1212 state
= "writeback";
1214 case GFS2_DATA_ORDERED
:
1221 seq_printf(s
, ",data=%s", state
);
1223 if (args
->ar_discard
)
1224 seq_printf(s
, ",discard");
1225 lfsecs
= sdp
->sd_tune
.gt_log_flush_secs
;
1227 seq_printf(s
, ",commit=%d", lfsecs
);
1232 * We have to (at the moment) hold the inodes main lock to cover
1233 * the gap between unlocking the shared lock on the iopen lock and
1234 * taking the exclusive lock. I'd rather do a shared -> exclusive
1235 * conversion on the iopen lock, but we can change that later. This
1236 * is safe, just less efficient.
1239 static void gfs2_delete_inode(struct inode
*inode
)
1241 struct gfs2_sbd
*sdp
= inode
->i_sb
->s_fs_info
;
1242 struct gfs2_inode
*ip
= GFS2_I(inode
);
1243 struct gfs2_holder gh
;
1246 if (!test_bit(GIF_USER
, &ip
->i_flags
))
1249 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_EXCLUSIVE
, 0, &gh
);
1250 if (unlikely(error
)) {
1251 gfs2_glock_dq_uninit(&ip
->i_iopen_gh
);
1255 gfs2_glock_dq_wait(&ip
->i_iopen_gh
);
1256 gfs2_holder_reinit(LM_ST_EXCLUSIVE
, LM_FLAG_TRY_1CB
| GL_NOCACHE
, &ip
->i_iopen_gh
);
1257 error
= gfs2_glock_nq(&ip
->i_iopen_gh
);
1261 if (S_ISDIR(inode
->i_mode
) &&
1262 (ip
->i_diskflags
& GFS2_DIF_EXHASH
)) {
1263 error
= gfs2_dir_exhash_dealloc(ip
);
1269 error
= gfs2_ea_dealloc(ip
);
1274 if (!gfs2_is_stuffed(ip
)) {
1275 error
= gfs2_file_dealloc(ip
);
1280 error
= gfs2_dinode_dealloc(ip
);
1285 error
= gfs2_trans_begin(sdp
, 0, sdp
->sd_jdesc
->jd_blocks
);
1288 /* Needs to be done before glock release & also in a transaction */
1289 truncate_inode_pages(&inode
->i_data
, 0);
1290 gfs2_trans_end(sdp
);
1293 if (test_bit(HIF_HOLDER
, &ip
->i_iopen_gh
.gh_iflags
))
1294 gfs2_glock_dq(&ip
->i_iopen_gh
);
1295 gfs2_holder_uninit(&ip
->i_iopen_gh
);
1296 gfs2_glock_dq_uninit(&gh
);
1297 if (error
&& error
!= GLR_TRYFAILED
&& error
!= -EROFS
)
1298 fs_warn(sdp
, "gfs2_delete_inode: %d\n", error
);
1300 truncate_inode_pages(&inode
->i_data
, 0);
1304 static struct inode
*gfs2_alloc_inode(struct super_block
*sb
)
1306 struct gfs2_inode
*ip
;
1308 ip
= kmem_cache_alloc(gfs2_inode_cachep
, GFP_KERNEL
);
1313 return &ip
->i_inode
;
1316 static void gfs2_destroy_inode(struct inode
*inode
)
1318 kmem_cache_free(gfs2_inode_cachep
, inode
);
1321 const struct super_operations gfs2_super_ops
= {
1322 .alloc_inode
= gfs2_alloc_inode
,
1323 .destroy_inode
= gfs2_destroy_inode
,
1324 .write_inode
= gfs2_write_inode
,
1325 .delete_inode
= gfs2_delete_inode
,
1326 .put_super
= gfs2_put_super
,
1327 .sync_fs
= gfs2_sync_fs
,
1328 .freeze_fs
= gfs2_freeze
,
1329 .unfreeze_fs
= gfs2_unfreeze
,
1330 .statfs
= gfs2_statfs
,
1331 .remount_fs
= gfs2_remount_fs
,
1332 .clear_inode
= gfs2_clear_inode
,
1333 .drop_inode
= gfs2_drop_inode
,
1334 .show_options
= gfs2_show_options
,