|
@@ -620,6 +620,14 @@ int file_check_and_advance_wb_err(struct file *file)
|
|
|
trace_file_check_and_advance_wb_err(file, old);
|
|
|
spin_unlock(&file->f_lock);
|
|
|
}
|
|
|
+
|
|
|
+ /*
|
|
|
+ * We're mostly using this function as a drop in replacement for
|
|
|
+ * filemap_check_errors. Clear AS_EIO/AS_ENOSPC to emulate the effect
|
|
|
+ * that the legacy code would have had on these flags.
|
|
|
+ */
|
|
|
+ clear_bit(AS_EIO, &mapping->flags);
|
|
|
+ clear_bit(AS_ENOSPC, &mapping->flags);
|
|
|
return err;
|
|
|
}
|
|
|
EXPORT_SYMBOL(file_check_and_advance_wb_err);
|