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]

cluster: STABLE2 - gfs-kernel: enable FS_HAS_FREEZE


Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=629ccc03fec52605b2a2aca06dc3fd1b6225e0f1
Commit:        629ccc03fec52605b2a2aca06dc3fd1b6225e0f1
Parent:        03d0e4a60ab009ba3a21745caafaadb78249adc1
Author:        Abhijith Das <adas@redhat.com>
AuthorDate:    Fri May 22 14:59:29 2009 -0500
Committer:     Abhijith Das <adas@redhat.com>
CommitterDate: Fri May 22 15:01:15 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]