blob: 380ab402d71160a05d82a00598e5e35efeb5f116 [file] [log] [blame]
Carsten Otteceffc072005-06-23 22:05:25 -07001/*
2 * linux/mm/filemap_xip.c
3 *
4 * Copyright (C) 2005 IBM Corporation
5 * Author: Carsten Otte <cotte@de.ibm.com>
6 *
7 * derived from linux/mm/filemap.c - Copyright (C) Linus Torvalds
8 *
9 */
10
11#include <linux/fs.h>
12#include <linux/pagemap.h>
13#include <linux/module.h>
14#include <linux/uio.h>
15#include <linux/rmap.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070016#include <linux/mmu_notifier.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040017#include <linux/sched.h>
Carsten Otteceffc072005-06-23 22:05:25 -070018#include <asm/tlbflush.h>
Nick Piggin70688e42008-04-28 02:13:02 -070019#include <asm/io.h>
Carsten Otteceffc072005-06-23 22:05:25 -070020
21/*
Carsten Ottea76c0b92007-03-29 01:20:39 -070022 * We do use our own empty page to avoid interference with other users
23 * of ZERO_PAGE(), such as /dev/zero
24 */
25static struct page *__xip_sparse_page;
26
27static struct page *xip_sparse_page(void)
28{
29 if (!__xip_sparse_page) {
Akinobu Mitac51b1a12008-01-08 15:32:57 -080030 struct page *page = alloc_page(GFP_HIGHUSER | __GFP_ZERO);
31
32 if (page) {
Carsten Ottea76c0b92007-03-29 01:20:39 -070033 static DEFINE_SPINLOCK(xip_alloc_lock);
34 spin_lock(&xip_alloc_lock);
35 if (!__xip_sparse_page)
Akinobu Mitac51b1a12008-01-08 15:32:57 -080036 __xip_sparse_page = page;
Carsten Ottea76c0b92007-03-29 01:20:39 -070037 else
Akinobu Mitac51b1a12008-01-08 15:32:57 -080038 __free_page(page);
Carsten Ottea76c0b92007-03-29 01:20:39 -070039 spin_unlock(&xip_alloc_lock);
40 }
41 }
42 return __xip_sparse_page;
43}
44
45/*
Carsten Otteceffc072005-06-23 22:05:25 -070046 * This is a file read routine for execute in place files, and uses
Nick Piggin70688e42008-04-28 02:13:02 -070047 * the mapping->a_ops->get_xip_mem() function for the actual low-level
Carsten Otteceffc072005-06-23 22:05:25 -070048 * stuff.
49 *
50 * Note the struct file* is not used at all. It may be NULL.
51 */
Nick Piggin70688e42008-04-28 02:13:02 -070052static ssize_t
Carsten Otteceffc072005-06-23 22:05:25 -070053do_xip_mapping_read(struct address_space *mapping,
54 struct file_ra_state *_ra,
55 struct file *filp,
Nick Piggin70688e42008-04-28 02:13:02 -070056 char __user *buf,
57 size_t len,
58 loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -070059{
60 struct inode *inode = mapping->host;
Jan Kara2004dc82008-02-08 04:20:11 -080061 pgoff_t index, end_index;
62 unsigned long offset;
Nick Piggin70688e42008-04-28 02:13:02 -070063 loff_t isize, pos;
64 size_t copied = 0, error = 0;
Carsten Otteceffc072005-06-23 22:05:25 -070065
Nick Piggin70688e42008-04-28 02:13:02 -070066 BUG_ON(!mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -070067
Nick Piggin70688e42008-04-28 02:13:02 -070068 pos = *ppos;
69 index = pos >> PAGE_CACHE_SHIFT;
70 offset = pos & ~PAGE_CACHE_MASK;
Carsten Otteceffc072005-06-23 22:05:25 -070071
72 isize = i_size_read(inode);
73 if (!isize)
74 goto out;
75
76 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Nick Piggin70688e42008-04-28 02:13:02 -070077 do {
78 unsigned long nr, left;
79 void *xip_mem;
80 unsigned long xip_pfn;
81 int zero = 0;
Carsten Otteceffc072005-06-23 22:05:25 -070082
83 /* nr is the maximum number of bytes to copy from this page */
84 nr = PAGE_CACHE_SIZE;
85 if (index >= end_index) {
86 if (index > end_index)
87 goto out;
88 nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
89 if (nr <= offset) {
90 goto out;
91 }
92 }
93 nr = nr - offset;
Nick Piggin70688e42008-04-28 02:13:02 -070094 if (nr > len)
95 nr = len;
Carsten Otteceffc072005-06-23 22:05:25 -070096
Nick Piggin70688e42008-04-28 02:13:02 -070097 error = mapping->a_ops->get_xip_mem(mapping, index, 0,
98 &xip_mem, &xip_pfn);
99 if (unlikely(error)) {
100 if (error == -ENODATA) {
Carsten Otteceffc072005-06-23 22:05:25 -0700101 /* sparse */
Nick Piggin70688e42008-04-28 02:13:02 -0700102 zero = 1;
103 } else
Carsten Otteceffc072005-06-23 22:05:25 -0700104 goto out;
Carsten Otteafa597b2005-07-15 03:56:30 -0700105 }
Carsten Otteceffc072005-06-23 22:05:25 -0700106
107 /* If users can be writing to this page using arbitrary
108 * virtual addresses, take care about potential aliasing
109 * before reading the page on the kernel side.
110 */
111 if (mapping_writably_mapped(mapping))
Nick Piggin70688e42008-04-28 02:13:02 -0700112 /* address based flush */ ;
Carsten Otteceffc072005-06-23 22:05:25 -0700113
114 /*
Nick Piggin70688e42008-04-28 02:13:02 -0700115 * Ok, we have the mem, so now we can copy it to user space...
Carsten Otteceffc072005-06-23 22:05:25 -0700116 *
117 * The actor routine returns how many bytes were actually used..
118 * NOTE! This may not be the same as how much of a user buffer
119 * we filled up (we may be padding etc), so we can only update
120 * "pos" here (the actor routine has to update the user buffer
121 * pointers and the remaining count).
122 */
Nick Piggin70688e42008-04-28 02:13:02 -0700123 if (!zero)
124 left = __copy_to_user(buf+copied, xip_mem+offset, nr);
125 else
126 left = __clear_user(buf + copied, nr);
127
128 if (left) {
129 error = -EFAULT;
130 goto out;
131 }
132
133 copied += (nr - left);
134 offset += (nr - left);
Carsten Otteceffc072005-06-23 22:05:25 -0700135 index += offset >> PAGE_CACHE_SHIFT;
136 offset &= ~PAGE_CACHE_MASK;
Nick Piggin70688e42008-04-28 02:13:02 -0700137 } while (copied < len);
Carsten Otteceffc072005-06-23 22:05:25 -0700138
139out:
Nick Piggin70688e42008-04-28 02:13:02 -0700140 *ppos = pos + copied;
Carsten Otteceffc072005-06-23 22:05:25 -0700141 if (filp)
142 file_accessed(filp);
Nick Piggin70688e42008-04-28 02:13:02 -0700143
144 return (copied ? copied : error);
Carsten Otteceffc072005-06-23 22:05:25 -0700145}
146
Carsten Otteceffc072005-06-23 22:05:25 -0700147ssize_t
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700148xip_file_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -0700149{
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700150 if (!access_ok(VERIFY_WRITE, buf, len))
151 return -EFAULT;
152
Nick Piggin70688e42008-04-28 02:13:02 -0700153 return do_xip_mapping_read(filp->f_mapping, &filp->f_ra, filp,
154 buf, len, ppos);
Carsten Otteceffc072005-06-23 22:05:25 -0700155}
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700156EXPORT_SYMBOL_GPL(xip_file_read);
Carsten Otteceffc072005-06-23 22:05:25 -0700157
Carsten Otteceffc072005-06-23 22:05:25 -0700158/*
159 * __xip_unmap is invoked from xip_unmap and
160 * xip_write
161 *
162 * This function walks all vmas of the address_space and unmaps the
Carsten Ottea76c0b92007-03-29 01:20:39 -0700163 * __xip_sparse_page when found at pgoff.
Carsten Otteceffc072005-06-23 22:05:25 -0700164 */
165static void
166__xip_unmap (struct address_space * mapping,
167 unsigned long pgoff)
168{
169 struct vm_area_struct *vma;
170 struct mm_struct *mm;
171 struct prio_tree_iter iter;
172 unsigned long address;
173 pte_t *pte;
174 pte_t pteval;
Hugh Dickinsc0718802005-10-29 18:16:31 -0700175 spinlock_t *ptl;
Hugh Dickins67b02f12005-10-29 18:16:31 -0700176 struct page *page;
Carsten Otteceffc072005-06-23 22:05:25 -0700177
Carsten Ottea76c0b92007-03-29 01:20:39 -0700178 page = __xip_sparse_page;
179 if (!page)
180 return;
181
Carsten Otteceffc072005-06-23 22:05:25 -0700182 spin_lock(&mapping->i_mmap_lock);
183 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
184 mm = vma->vm_mm;
185 address = vma->vm_start +
186 ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
187 BUG_ON(address < vma->vm_start || address >= vma->vm_end);
Hugh Dickinsc0718802005-10-29 18:16:31 -0700188 pte = page_check_address(page, mm, address, &ptl);
189 if (pte) {
Carsten Otteceffc072005-06-23 22:05:25 -0700190 /* Nuke the page table entry. */
Geert Uytterhoeven082ff0a2005-07-12 13:58:18 -0700191 flush_cache_page(vma, address, pte_pfn(*pte));
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700192 pteval = ptep_clear_flush_notify(vma, address, pte);
Nick Piggin7de6b802006-12-22 01:09:33 -0800193 page_remove_rmap(page, vma);
Nick Pigginb5810032005-10-29 18:16:12 -0700194 dec_mm_counter(mm, file_rss);
Carsten Otteceffc072005-06-23 22:05:25 -0700195 BUG_ON(pte_dirty(pteval));
Hugh Dickinsc0718802005-10-29 18:16:31 -0700196 pte_unmap_unlock(pte, ptl);
Nick Pigginb5810032005-10-29 18:16:12 -0700197 page_cache_release(page);
Carsten Otteceffc072005-06-23 22:05:25 -0700198 }
199 }
200 spin_unlock(&mapping->i_mmap_lock);
201}
202
203/*
Nick Piggin54cb8822007-07-19 01:46:59 -0700204 * xip_fault() is invoked via the vma operations vector for a
Carsten Otteceffc072005-06-23 22:05:25 -0700205 * mapped memory region to read in file data during a page fault.
206 *
Nick Piggin54cb8822007-07-19 01:46:59 -0700207 * This function is derived from filemap_fault, but used for execute in place
Carsten Otteceffc072005-06-23 22:05:25 -0700208 */
Nick Piggin70688e42008-04-28 02:13:02 -0700209static int xip_file_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Carsten Otteceffc072005-06-23 22:05:25 -0700210{
Nick Piggin70688e42008-04-28 02:13:02 -0700211 struct file *file = vma->vm_file;
Carsten Otteceffc072005-06-23 22:05:25 -0700212 struct address_space *mapping = file->f_mapping;
213 struct inode *inode = mapping->host;
Nick Piggin54cb8822007-07-19 01:46:59 -0700214 pgoff_t size;
Nick Piggin70688e42008-04-28 02:13:02 -0700215 void *xip_mem;
216 unsigned long xip_pfn;
217 struct page *page;
218 int error;
Carsten Otteceffc072005-06-23 22:05:25 -0700219
Nick Piggin54cb8822007-07-19 01:46:59 -0700220 /* XXX: are VM_FAULT_ codes OK? */
Carsten Otteceffc072005-06-23 22:05:25 -0700221
222 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Nick Piggind0217ac2007-07-19 01:47:03 -0700223 if (vmf->pgoff >= size)
224 return VM_FAULT_SIGBUS;
Carsten Otteceffc072005-06-23 22:05:25 -0700225
Nick Piggin70688e42008-04-28 02:13:02 -0700226 error = mapping->a_ops->get_xip_mem(mapping, vmf->pgoff, 0,
227 &xip_mem, &xip_pfn);
228 if (likely(!error))
229 goto found;
230 if (error != -ENODATA)
Nick Piggind0217ac2007-07-19 01:47:03 -0700231 return VM_FAULT_OOM;
Carsten Otteceffc072005-06-23 22:05:25 -0700232
233 /* sparse block */
Nick Piggin70688e42008-04-28 02:13:02 -0700234 if ((vma->vm_flags & (VM_WRITE | VM_MAYWRITE)) &&
235 (vma->vm_flags & (VM_SHARED | VM_MAYSHARE)) &&
Carsten Otteceffc072005-06-23 22:05:25 -0700236 (!(mapping->host->i_sb->s_flags & MS_RDONLY))) {
Nick Piggin70688e42008-04-28 02:13:02 -0700237 int err;
238
Carsten Otteceffc072005-06-23 22:05:25 -0700239 /* maybe shared writable, allocate new block */
Nick Piggin70688e42008-04-28 02:13:02 -0700240 error = mapping->a_ops->get_xip_mem(mapping, vmf->pgoff, 1,
241 &xip_mem, &xip_pfn);
242 if (error)
Nick Piggind0217ac2007-07-19 01:47:03 -0700243 return VM_FAULT_SIGBUS;
Nick Piggin70688e42008-04-28 02:13:02 -0700244 /* unmap sparse mappings at pgoff from all other vmas */
Nick Piggind0217ac2007-07-19 01:47:03 -0700245 __xip_unmap(mapping, vmf->pgoff);
Nick Piggin70688e42008-04-28 02:13:02 -0700246
247found:
248 err = vm_insert_mixed(vma, (unsigned long)vmf->virtual_address,
249 xip_pfn);
250 if (err == -ENOMEM)
251 return VM_FAULT_OOM;
252 BUG_ON(err);
253 return VM_FAULT_NOPAGE;
Carsten Otteceffc072005-06-23 22:05:25 -0700254 } else {
Carsten Ottea76c0b92007-03-29 01:20:39 -0700255 /* not shared and writable, use xip_sparse_page() */
256 page = xip_sparse_page();
Nick Piggind0217ac2007-07-19 01:47:03 -0700257 if (!page)
258 return VM_FAULT_OOM;
Carsten Otteceffc072005-06-23 22:05:25 -0700259
Nick Piggin70688e42008-04-28 02:13:02 -0700260 page_cache_get(page);
261 vmf->page = page;
262 return 0;
263 }
Carsten Otteceffc072005-06-23 22:05:25 -0700264}
265
266static struct vm_operations_struct xip_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -0700267 .fault = xip_file_fault,
Carsten Otteceffc072005-06-23 22:05:25 -0700268};
269
270int xip_file_mmap(struct file * file, struct vm_area_struct * vma)
271{
Nick Piggin70688e42008-04-28 02:13:02 -0700272 BUG_ON(!file->f_mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -0700273
274 file_accessed(file);
275 vma->vm_ops = &xip_file_vm_ops;
Nick Piggin70688e42008-04-28 02:13:02 -0700276 vma->vm_flags |= VM_CAN_NONLINEAR | VM_MIXEDMAP;
Carsten Otteceffc072005-06-23 22:05:25 -0700277 return 0;
278}
279EXPORT_SYMBOL_GPL(xip_file_mmap);
280
281static ssize_t
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700282__xip_file_write(struct file *filp, const char __user *buf,
283 size_t count, loff_t pos, loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -0700284{
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700285 struct address_space * mapping = filp->f_mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700286 const struct address_space_operations *a_ops = mapping->a_ops;
Carsten Otteceffc072005-06-23 22:05:25 -0700287 struct inode *inode = mapping->host;
288 long status = 0;
Carsten Otteceffc072005-06-23 22:05:25 -0700289 size_t bytes;
Carsten Otteceffc072005-06-23 22:05:25 -0700290 ssize_t written = 0;
291
Nick Piggin70688e42008-04-28 02:13:02 -0700292 BUG_ON(!mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -0700293
Carsten Otteceffc072005-06-23 22:05:25 -0700294 do {
295 unsigned long index;
296 unsigned long offset;
297 size_t copied;
Nick Piggin70688e42008-04-28 02:13:02 -0700298 void *xip_mem;
299 unsigned long xip_pfn;
Carsten Otteceffc072005-06-23 22:05:25 -0700300
301 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
302 index = pos >> PAGE_CACHE_SHIFT;
303 bytes = PAGE_CACHE_SIZE - offset;
304 if (bytes > count)
305 bytes = count;
306
Nick Piggin70688e42008-04-28 02:13:02 -0700307 status = a_ops->get_xip_mem(mapping, index, 0,
308 &xip_mem, &xip_pfn);
309 if (status == -ENODATA) {
Carsten Otteceffc072005-06-23 22:05:25 -0700310 /* we allocate a new page unmap it */
Nick Piggin70688e42008-04-28 02:13:02 -0700311 status = a_ops->get_xip_mem(mapping, index, 1,
312 &xip_mem, &xip_pfn);
313 if (!status)
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700314 /* unmap page at pgoff from all other vmas */
315 __xip_unmap(mapping, index);
Carsten Otteceffc072005-06-23 22:05:25 -0700316 }
317
Nick Piggin70688e42008-04-28 02:13:02 -0700318 if (status)
Carsten Otteceffc072005-06-23 22:05:25 -0700319 break;
Carsten Otteceffc072005-06-23 22:05:25 -0700320
Nick Piggin4a9e5ef2007-10-16 01:24:58 -0700321 copied = bytes -
Nick Piggin70688e42008-04-28 02:13:02 -0700322 __copy_from_user_nocache(xip_mem + offset, buf, bytes);
Nick Piggin4a9e5ef2007-10-16 01:24:58 -0700323
Carsten Otteceffc072005-06-23 22:05:25 -0700324 if (likely(copied > 0)) {
325 status = copied;
326
327 if (status >= 0) {
328 written += status;
329 count -= status;
330 pos += status;
331 buf += status;
Carsten Otteceffc072005-06-23 22:05:25 -0700332 }
333 }
334 if (unlikely(copied != bytes))
335 if (status >= 0)
336 status = -EFAULT;
337 if (status < 0)
338 break;
339 } while (count);
340 *ppos = pos;
341 /*
342 * No need to use i_size_read() here, the i_size
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800343 * cannot change under us because we hold i_mutex.
Carsten Otteceffc072005-06-23 22:05:25 -0700344 */
345 if (pos > inode->i_size) {
346 i_size_write(inode, pos);
347 mark_inode_dirty(inode);
348 }
349
350 return written ? written : status;
351}
352
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700353ssize_t
354xip_file_write(struct file *filp, const char __user *buf, size_t len,
355 loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -0700356{
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700357 struct address_space *mapping = filp->f_mapping;
358 struct inode *inode = mapping->host;
359 size_t count;
360 loff_t pos;
361 ssize_t ret;
Carsten Otteceffc072005-06-23 22:05:25 -0700362
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800363 mutex_lock(&inode->i_mutex);
Carsten Otteceffc072005-06-23 22:05:25 -0700364
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700365 if (!access_ok(VERIFY_READ, buf, len)) {
366 ret=-EFAULT;
367 goto out_up;
Carsten Otteceffc072005-06-23 22:05:25 -0700368 }
369
Carsten Otteceffc072005-06-23 22:05:25 -0700370 pos = *ppos;
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700371 count = len;
Carsten Otteceffc072005-06-23 22:05:25 -0700372
373 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
374
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700375 /* We can write back this queue in page reclaim */
376 current->backing_dev_info = mapping->backing_dev_info;
Carsten Otteceffc072005-06-23 22:05:25 -0700377
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700378 ret = generic_write_checks(filp, &pos, &count, S_ISBLK(inode->i_mode));
379 if (ret)
380 goto out_backing;
Carsten Otteceffc072005-06-23 22:05:25 -0700381 if (count == 0)
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700382 goto out_backing;
Carsten Otteceffc072005-06-23 22:05:25 -0700383
Miklos Szeredi2f1936b2008-06-24 16:50:14 +0200384 ret = file_remove_suid(filp);
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700385 if (ret)
386 goto out_backing;
Carsten Otteceffc072005-06-23 22:05:25 -0700387
Christoph Hellwig870f4812006-01-09 20:52:01 -0800388 file_update_time(filp);
Carsten Otteceffc072005-06-23 22:05:25 -0700389
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700390 ret = __xip_file_write (filp, buf, count, pos, ppos);
Carsten Otteceffc072005-06-23 22:05:25 -0700391
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700392 out_backing:
393 current->backing_dev_info = NULL;
394 out_up:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800395 mutex_unlock(&inode->i_mutex);
Carsten Otteceffc072005-06-23 22:05:25 -0700396 return ret;
397}
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700398EXPORT_SYMBOL_GPL(xip_file_write);
Carsten Otteceffc072005-06-23 22:05:25 -0700399
400/*
401 * truncate a page used for execute in place
Nick Piggin70688e42008-04-28 02:13:02 -0700402 * functionality is analog to block_truncate_page but does use get_xip_mem
Carsten Otteceffc072005-06-23 22:05:25 -0700403 * to get the page instead of page cache
404 */
405int
406xip_truncate_page(struct address_space *mapping, loff_t from)
407{
408 pgoff_t index = from >> PAGE_CACHE_SHIFT;
409 unsigned offset = from & (PAGE_CACHE_SIZE-1);
410 unsigned blocksize;
411 unsigned length;
Nick Piggin70688e42008-04-28 02:13:02 -0700412 void *xip_mem;
413 unsigned long xip_pfn;
414 int err;
Carsten Otteceffc072005-06-23 22:05:25 -0700415
Nick Piggin70688e42008-04-28 02:13:02 -0700416 BUG_ON(!mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -0700417
418 blocksize = 1 << mapping->host->i_blkbits;
419 length = offset & (blocksize - 1);
420
421 /* Block boundary? Nothing to do */
422 if (!length)
423 return 0;
424
425 length = blocksize - length;
426
Nick Piggin70688e42008-04-28 02:13:02 -0700427 err = mapping->a_ops->get_xip_mem(mapping, index, 0,
428 &xip_mem, &xip_pfn);
429 if (unlikely(err)) {
430 if (err == -ENODATA)
Carsten Otteceffc072005-06-23 22:05:25 -0700431 /* Hole? No need to truncate */
432 return 0;
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700433 else
Nick Piggin70688e42008-04-28 02:13:02 -0700434 return err;
Carsten Otteafa597b2005-07-15 03:56:30 -0700435 }
Nick Piggin70688e42008-04-28 02:13:02 -0700436 memset(xip_mem + offset, 0, length);
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700437 return 0;
Carsten Otteceffc072005-06-23 22:05:25 -0700438}
439EXPORT_SYMBOL_GPL(xip_truncate_page);