aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mm/filemap.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/mm/filemap.c b/mm/filemap.c
index ec25ba1aef5f..ca04226bf1de 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -2061,7 +2061,7 @@ static ssize_t generic_perform_write_2copy(struct file *file,
2061 * cannot take a pagefault with the destination page locked. 2061 * cannot take a pagefault with the destination page locked.
2062 * So pin the source page to copy it. 2062 * So pin the source page to copy it.
2063 */ 2063 */
2064 if (!PageUptodate(page)) { 2064 if (!PageUptodate(page) && !segment_eq(get_fs(), KERNEL_DS)) {
2065 unlock_page(page); 2065 unlock_page(page);
2066 2066
2067 src_page = alloc_page(GFP_KERNEL); 2067 src_page = alloc_page(GFP_KERNEL);
@@ -2186,6 +2186,13 @@ static ssize_t generic_perform_write(struct file *file,
2186 const struct address_space_operations *a_ops = mapping->a_ops; 2186 const struct address_space_operations *a_ops = mapping->a_ops;
2187 long status = 0; 2187 long status = 0;
2188 ssize_t written = 0; 2188 ssize_t written = 0;
2189 unsigned int flags = 0;
2190
2191 /*
2192 * Copies from kernel address space cannot fail (NFSD is a big user).
2193 */
2194 if (segment_eq(get_fs(), KERNEL_DS))
2195 flags |= AOP_FLAG_UNINTERRUPTIBLE;
2189 2196
2190 do { 2197 do {
2191 struct page *page; 2198 struct page *page;
@@ -2217,7 +2224,7 @@ again:
2217 break; 2224 break;
2218 } 2225 }
2219 2226
2220 status = a_ops->write_begin(file, mapping, pos, bytes, 0, 2227 status = a_ops->write_begin(file, mapping, pos, bytes, flags,
2221 &page, &fsdata); 2228 &page, &fsdata);
2222 if (unlikely(status)) 2229 if (unlikely(status))
2223 break; 2230 break;