diff --git a/[refs] b/[refs] index 2c118d93b3f0..18ed10d3a737 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 81cc7fad552bc9e4fa8c1f25becbecaaa1d41b67 +refs/heads/master: bffdd661bd424ea4298639805bfcbcaf8ffb62f2 diff --git a/trunk/fs/hfsplus/super.c b/trunk/fs/hfsplus/super.c index 2036f585b094..796198d26553 100644 --- a/trunk/fs/hfsplus/super.c +++ b/trunk/fs/hfsplus/super.c @@ -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); @@ -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)