linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] UBIFS: Add freeze support in ubifs
@ 2015-09-27  2:39 Dongsheng Yang
  2015-09-27  8:06 ` Richard Weinberger
  0 siblings, 1 reply; 3+ messages in thread
From: Dongsheng Yang @ 2015-09-27  2:39 UTC (permalink / raw)
  To: linux-mtd, linux-fsdevel, dedekind1, richard; +Cc: Dongsheng Yang

We need to do nothing in ubifs, as all is already done in vfs.

Signed-off-by: Dongsheng Yang <yangds.fnst@cn.fujitsu.com>
---
 fs/ubifs/super.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c
index 9547a278..e8f85b5 100644
--- a/fs/ubifs/super.c
+++ b/fs/ubifs/super.c
@@ -1871,6 +1871,11 @@ static int ubifs_remount_fs(struct super_block *sb, int *flags, char *data)
 	return 0;
 }
 
+static int ubifs_freeze_fs(struct super_block *sb)
+{
+	return 0;
+}
+
 const struct super_operations ubifs_super_operations = {
 	.alloc_inode   = ubifs_alloc_inode,
 	.destroy_inode = ubifs_destroy_inode,
@@ -1882,6 +1887,7 @@ const struct super_operations ubifs_super_operations = {
 	.remount_fs    = ubifs_remount_fs,
 	.show_options  = ubifs_show_options,
 	.sync_fs       = ubifs_sync_fs,
+	.freeze_fs     = ubifs_freeze_fs,
 };
 
 /**
-- 
1.8.4.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-09-28  3:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-27  2:39 [PATCH] UBIFS: Add freeze support in ubifs Dongsheng Yang
2015-09-27  8:06 ` Richard Weinberger
2015-09-28  3:10   ` Dongsheng Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).