This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gfs1-utils: master - gfs-kernel: enable FS_HAS_FREEZE


Gitweb:        http://git.fedorahosted.org/git/gfs1-utils.git?p=gfs1-utils.git;a=commitdiff;h=e4e24258a5fe004b86f3ccda1250dfff87076af3
Commit:        e4e24258a5fe004b86f3ccda1250dfff87076af3
Parent:        f190150c52fad148fa164775fe6317941a6a2f47
Author:        Abhijith Das <adas@redhat.com>
AuthorDate:    Fri May 22 14:59:29 2009 -0500
Committer:     Abhijith Das <adas@redhat.com>
CommitterDate: Wed May 27 09:56:22 2009 -0500

gfs-kernel: enable FS_HAS_FREEZE

gfs is missing the fs flag that enables the freeze/thaw feature.

Signed-off-by: Abhi Das <adas@redhat.com>
---
 gfs-kernel/src/gfs/ops_fstype.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gfs-kernel/src/gfs/ops_fstype.c b/gfs-kernel/src/gfs/ops_fstype.c
index 93bf4d1..2c649ff 100644
--- a/gfs-kernel/src/gfs/ops_fstype.c
+++ b/gfs-kernel/src/gfs/ops_fstype.c
@@ -809,7 +809,7 @@ gfs_kill_sb(struct super_block *sb)
 
 struct file_system_type gfs_fs_type = {
 	.name = "gfs",
-	.fs_flags = FS_REQUIRES_DEV,
+	.fs_flags = FS_REQUIRES_DEV | FS_HAS_FREEZE,
 	.get_sb = gfs_get_sb,
 	.kill_sb = gfs_kill_sb,
 	.owner = THIS_MODULE,


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]