|
@@ -301,6 +301,13 @@ nfs_file_fsync(struct file *file, loff_t start, loff_t end, int datasync)
|
|
|
mutex_lock(&inode->i_mutex);
|
|
|
ret = nfs_file_fsync_commit(file, start, end, datasync);
|
|
|
mutex_unlock(&inode->i_mutex);
|
|
|
+ /*
|
|
|
+ * If nfs_file_fsync_commit detected a server reboot, then
|
|
|
+ * resend all dirty pages that might have been covered by
|
|
|
+ * the NFS_CONTEXT_RESEND_WRITES flag
|
|
|
+ */
|
|
|
+ start = 0;
|
|
|
+ end = LLONG_MAX;
|
|
|
} while (ret == -EAGAIN);
|
|
|
|
|
|
return ret;
|