|
@@ -17,6 +17,7 @@
|
|
|
#include <linux/magic.h>
|
|
|
#include <linux/sched.h>
|
|
|
#include <linux/slab.h>
|
|
|
+#include <linux/writeback.h>
|
|
|
#include "affs.h"
|
|
|
|
|
|
extern struct timezone sys_tz;
|
|
@@ -47,6 +48,7 @@ affs_put_super(struct super_block *sb)
|
|
|
struct affs_sb_info *sbi = AFFS_SB(sb);
|
|
|
pr_debug("AFFS: put_super()\n");
|
|
|
|
|
|
+ cancel_delayed_work_sync(&sbi->sb_work);
|
|
|
kfree(sbi->s_prefix);
|
|
|
affs_free_bitmap(sb);
|
|
|
affs_brelse(sbi->s_root_bh);
|
|
@@ -54,23 +56,45 @@ affs_put_super(struct super_block *sb)
|
|
|
sb->s_fs_info = NULL;
|
|
|
}
|
|
|
|
|
|
-static void
|
|
|
-affs_write_super(struct super_block *sb)
|
|
|
-{
|
|
|
- if (!(sb->s_flags & MS_RDONLY))
|
|
|
- affs_commit_super(sb, 1);
|
|
|
- sb->s_dirt = 0;
|
|
|
- pr_debug("AFFS: write_super() at %lu, clean=2\n", get_seconds());
|
|
|
-}
|
|
|
-
|
|
|
static int
|
|
|
affs_sync_fs(struct super_block *sb, int wait)
|
|
|
{
|
|
|
affs_commit_super(sb, wait);
|
|
|
- sb->s_dirt = 0;
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static void flush_superblock(struct work_struct *work)
|
|
|
+{
|
|
|
+ struct affs_sb_info *sbi;
|
|
|
+ struct super_block *sb;
|
|
|
+
|
|
|
+ sbi = container_of(work, struct affs_sb_info, sb_work.work);
|
|
|
+ sb = sbi->sb;
|
|
|
+
|
|
|
+ spin_lock(&sbi->work_lock);
|
|
|
+ sbi->work_queued = 0;
|
|
|
+ spin_unlock(&sbi->work_lock);
|
|
|
+
|
|
|
+ affs_commit_super(sb, 1);
|
|
|
+}
|
|
|
+
|
|
|
+void affs_mark_sb_dirty(struct super_block *sb)
|
|
|
+{
|
|
|
+ struct affs_sb_info *sbi = AFFS_SB(sb);
|
|
|
+ unsigned long delay;
|
|
|
+
|
|
|
+ if (sb->s_flags & MS_RDONLY)
|
|
|
+ return;
|
|
|
+
|
|
|
+ spin_lock(&sbi->work_lock);
|
|
|
+ if (!sbi->work_queued) {
|
|
|
+ delay = msecs_to_jiffies(dirty_writeback_interval * 10);
|
|
|
+ queue_delayed_work(system_long_wq, &sbi->sb_work, delay);
|
|
|
+ sbi->work_queued = 1;
|
|
|
+ }
|
|
|
+ spin_unlock(&sbi->work_lock);
|
|
|
+}
|
|
|
+
|
|
|
static struct kmem_cache * affs_inode_cachep;
|
|
|
|
|
|
static struct inode *affs_alloc_inode(struct super_block *sb)
|
|
@@ -132,7 +156,6 @@ static const struct super_operations affs_sops = {
|
|
|
.write_inode = affs_write_inode,
|
|
|
.evict_inode = affs_evict_inode,
|
|
|
.put_super = affs_put_super,
|
|
|
- .write_super = affs_write_super,
|
|
|
.sync_fs = affs_sync_fs,
|
|
|
.statfs = affs_statfs,
|
|
|
.remount_fs = affs_remount,
|
|
@@ -302,6 +325,8 @@ static int affs_fill_super(struct super_block *sb, void *data, int silent)
|
|
|
sbi->sb = sb;
|
|
|
mutex_init(&sbi->s_bmlock);
|
|
|
spin_lock_init(&sbi->symlink_lock);
|
|
|
+ spin_lock_init(&sbi->work_lock);
|
|
|
+ INIT_DELAYED_WORK(&sbi->sb_work, flush_superblock);
|
|
|
|
|
|
if (!parse_options(data,&uid,&gid,&i,&reserved,&root_block,
|
|
|
&blocksize,&sbi->s_prefix,
|
|
@@ -526,6 +551,7 @@ affs_remount(struct super_block *sb, int *flags, char *data)
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
+ flush_delayed_work_sync(&sbi->sb_work);
|
|
|
replace_mount_options(sb, new_opts);
|
|
|
|
|
|
sbi->s_flags = mount_flags;
|