Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 347880
b: refs/heads/master
c: bffdd66
h: refs/heads/master
v: v3
  • Loading branch information
Vyacheslav Dubeyko authored and Linus Torvalds committed Dec 21, 2012
1 parent 47463cb commit 69a1683
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 81cc7fad552bc9e4fa8c1f25becbecaaa1d41b67
refs/heads/master: bffdd661bd424ea4298639805bfcbcaf8ffb62f2
5 changes: 4 additions & 1 deletion trunk/fs/hfsplus/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ static int hfsplus_sync_fs(struct super_block *sb, int wait)

static void delayed_sync_fs(struct work_struct *work)
{
int err;
struct hfsplus_sb_info *sbi;

sbi = container_of(work, struct hfsplus_sb_info, sync_work.work);
Expand All @@ -240,7 +241,9 @@ static void delayed_sync_fs(struct work_struct *work)
sbi->work_queued = 0;
spin_unlock(&sbi->work_lock);

hfsplus_sync_fs(sbi->alloc_file->i_sb, 1);
err = hfsplus_sync_fs(sbi->alloc_file->i_sb, 1);
if (err)
printk(KERN_ERR "hfs: delayed sync fs err %d\n", err);
}

void hfsplus_mark_mdb_dirty(struct super_block *sb)
Expand Down

0 comments on commit 69a1683

Please sign in to comment.