blob: 3e744abcce9daa8aada1487bd42e31b769c414bf [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>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040016#include <linux/sched.h>
Carsten Otteceffc072005-06-23 22:05:25 -070017#include <asm/tlbflush.h>
Nick Piggin70688e42008-04-28 02:13:02 -070018#include <asm/io.h>
Carsten Otteceffc072005-06-23 22:05:25 -070019
20/*
Carsten Ottea76c0b92007-03-29 01:20:39 -070021 * We do use our own empty page to avoid interference with other users
22 * of ZERO_PAGE(), such as /dev/zero
23 */
24static struct page *__xip_sparse_page;
25
26static struct page *xip_sparse_page(void)
27{
28 if (!__xip_sparse_page) {
Akinobu Mitac51b1a12008-01-08 15:32:57 -080029 struct page *page = alloc_page(GFP_HIGHUSER | __GFP_ZERO);
30
31 if (page) {
Carsten Ottea76c0b92007-03-29 01:20:39 -070032 static DEFINE_SPINLOCK(xip_alloc_lock);
33 spin_lock(&xip_alloc_lock);
34 if (!__xip_sparse_page)
Akinobu Mitac51b1a12008-01-08 15:32:57 -080035 __xip_sparse_page = page;
Carsten Ottea76c0b92007-03-29 01:20:39 -070036 else
Akinobu Mitac51b1a12008-01-08 15:32:57 -080037 __free_page(page);
Carsten Ottea76c0b92007-03-29 01:20:39 -070038 spin_unlock(&xip_alloc_lock);
39 }
40 }
41 return __xip_sparse_page;
42}
43
44/*
Carsten Otteceffc072005-06-23 22:05:25 -070045 * This is a file read routine for execute in place files, and uses
Nick Piggin70688e42008-04-28 02:13:02 -070046 * the mapping->a_ops->get_xip_mem() function for the actual low-level
Carsten Otteceffc072005-06-23 22:05:25 -070047 * stuff.
48 *
49 * Note the struct file* is not used at all. It may be NULL.
50 */
Nick Piggin70688e42008-04-28 02:13:02 -070051static ssize_t
Carsten Otteceffc072005-06-23 22:05:25 -070052do_xip_mapping_read(struct address_space *mapping,
53 struct file_ra_state *_ra,
54 struct file *filp,
Nick Piggin70688e42008-04-28 02:13:02 -070055 char __user *buf,
56 size_t len,
57 loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -070058{
59 struct inode *inode = mapping->host;
Jan Kara2004dc82008-02-08 04:20:11 -080060 pgoff_t index, end_index;
61 unsigned long offset;
Nick Piggin70688e42008-04-28 02:13:02 -070062 loff_t isize, pos;
63 size_t copied = 0, error = 0;
Carsten Otteceffc072005-06-23 22:05:25 -070064
Nick Piggin70688e42008-04-28 02:13:02 -070065 BUG_ON(!mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -070066
Nick Piggin70688e42008-04-28 02:13:02 -070067 pos = *ppos;
68 index = pos >> PAGE_CACHE_SHIFT;
69 offset = pos & ~PAGE_CACHE_MASK;
Carsten Otteceffc072005-06-23 22:05:25 -070070
71 isize = i_size_read(inode);
72 if (!isize)
73 goto out;
74
75 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Nick Piggin70688e42008-04-28 02:13:02 -070076 do {
77 unsigned long nr, left;
78 void *xip_mem;
79 unsigned long xip_pfn;
80 int zero = 0;
Carsten Otteceffc072005-06-23 22:05:25 -070081
82 /* nr is the maximum number of bytes to copy from this page */
83 nr = PAGE_CACHE_SIZE;
84 if (index >= end_index) {
85 if (index > end_index)
86 goto out;
87 nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
88 if (nr <= offset) {
89 goto out;
90 }
91 }
92 nr = nr - offset;
Nick Piggin70688e42008-04-28 02:13:02 -070093 if (nr > len)
94 nr = len;
Carsten Otteceffc072005-06-23 22:05:25 -070095
Nick Piggin70688e42008-04-28 02:13:02 -070096 error = mapping->a_ops->get_xip_mem(mapping, index, 0,
97 &xip_mem, &xip_pfn);
98 if (unlikely(error)) {
99 if (error == -ENODATA) {
Carsten Otteceffc072005-06-23 22:05:25 -0700100 /* sparse */
Nick Piggin70688e42008-04-28 02:13:02 -0700101 zero = 1;
102 } else
Carsten Otteceffc072005-06-23 22:05:25 -0700103 goto out;
Carsten Otteafa597b2005-07-15 03:56:30 -0700104 }
Carsten Otteceffc072005-06-23 22:05:25 -0700105
106 /* If users can be writing to this page using arbitrary
107 * virtual addresses, take care about potential aliasing
108 * before reading the page on the kernel side.
109 */
110 if (mapping_writably_mapped(mapping))
Nick Piggin70688e42008-04-28 02:13:02 -0700111 /* address based flush */ ;
Carsten Otteceffc072005-06-23 22:05:25 -0700112
113 /*
Nick Piggin70688e42008-04-28 02:13:02 -0700114 * Ok, we have the mem, so now we can copy it to user space...
Carsten Otteceffc072005-06-23 22:05:25 -0700115 *
116 * The actor routine returns how many bytes were actually used..
117 * NOTE! This may not be the same as how much of a user buffer
118 * we filled up (we may be padding etc), so we can only update
119 * "pos" here (the actor routine has to update the user buffer
120 * pointers and the remaining count).
121 */
Nick Piggin70688e42008-04-28 02:13:02 -0700122 if (!zero)
123 left = __copy_to_user(buf+copied, xip_mem+offset, nr);
124 else
125 left = __clear_user(buf + copied, nr);
126
127 if (left) {
128 error = -EFAULT;
129 goto out;
130 }
131
132 copied += (nr - left);
133 offset += (nr - left);
Carsten Otteceffc072005-06-23 22:05:25 -0700134 index += offset >> PAGE_CACHE_SHIFT;
135 offset &= ~PAGE_CACHE_MASK;
Nick Piggin70688e42008-04-28 02:13:02 -0700136 } while (copied < len);
Carsten Otteceffc072005-06-23 22:05:25 -0700137
138out:
Nick Piggin70688e42008-04-28 02:13:02 -0700139 *ppos = pos + copied;
Carsten Otteceffc072005-06-23 22:05:25 -0700140 if (filp)
141 file_accessed(filp);
Nick Piggin70688e42008-04-28 02:13:02 -0700142
143 return (copied ? copied : error);
Carsten Otteceffc072005-06-23 22:05:25 -0700144}
145
Carsten Otteceffc072005-06-23 22:05:25 -0700146ssize_t
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700147xip_file_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -0700148{
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700149 if (!access_ok(VERIFY_WRITE, buf, len))
150 return -EFAULT;
151
Nick Piggin70688e42008-04-28 02:13:02 -0700152 return do_xip_mapping_read(filp->f_mapping, &filp->f_ra, filp,
153 buf, len, ppos);
Carsten Otteceffc072005-06-23 22:05:25 -0700154}
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700155EXPORT_SYMBOL_GPL(xip_file_read);
Carsten Otteceffc072005-06-23 22:05:25 -0700156
Carsten Otteceffc072005-06-23 22:05:25 -0700157/*
158 * __xip_unmap is invoked from xip_unmap and
159 * xip_write
160 *
161 * This function walks all vmas of the address_space and unmaps the
Carsten Ottea76c0b92007-03-29 01:20:39 -0700162 * __xip_sparse_page when found at pgoff.
Carsten Otteceffc072005-06-23 22:05:25 -0700163 */
164static void
165__xip_unmap (struct address_space * mapping,
166 unsigned long pgoff)
167{
168 struct vm_area_struct *vma;
169 struct mm_struct *mm;
170 struct prio_tree_iter iter;
171 unsigned long address;
172 pte_t *pte;
173 pte_t pteval;
Hugh Dickinsc0718802005-10-29 18:16:31 -0700174 spinlock_t *ptl;
Hugh Dickins67b02f12005-10-29 18:16:31 -0700175 struct page *page;
Carsten Otteceffc072005-06-23 22:05:25 -0700176
Carsten Ottea76c0b92007-03-29 01:20:39 -0700177 page = __xip_sparse_page;
178 if (!page)
179 return;
180
Carsten Otteceffc072005-06-23 22:05:25 -0700181 spin_lock(&mapping->i_mmap_lock);
182 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
183 mm = vma->vm_mm;
184 address = vma->vm_start +
185 ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
186 BUG_ON(address < vma->vm_start || address >= vma->vm_end);
Hugh Dickinsc0718802005-10-29 18:16:31 -0700187 pte = page_check_address(page, mm, address, &ptl);
188 if (pte) {
Carsten Otteceffc072005-06-23 22:05:25 -0700189 /* Nuke the page table entry. */
Geert Uytterhoeven082ff0a2005-07-12 13:58:18 -0700190 flush_cache_page(vma, address, pte_pfn(*pte));
Carsten Otteceffc072005-06-23 22:05:25 -0700191 pteval = ptep_clear_flush(vma, address, pte);
Nick Piggin7de6b802006-12-22 01:09:33 -0800192 page_remove_rmap(page, vma);
Nick Pigginb5810032005-10-29 18:16:12 -0700193 dec_mm_counter(mm, file_rss);
Carsten Otteceffc072005-06-23 22:05:25 -0700194 BUG_ON(pte_dirty(pteval));
Hugh Dickinsc0718802005-10-29 18:16:31 -0700195 pte_unmap_unlock(pte, ptl);
Nick Pigginb5810032005-10-29 18:16:12 -0700196 page_cache_release(page);
Carsten Otteceffc072005-06-23 22:05:25 -0700197 }
198 }
199 spin_unlock(&mapping->i_mmap_lock);
200}
201
202/*
Nick Piggin54cb8822007-07-19 01:46:59 -0700203 * xip_fault() is invoked via the vma operations vector for a
Carsten Otteceffc072005-06-23 22:05:25 -0700204 * mapped memory region to read in file data during a page fault.
205 *
Nick Piggin54cb8822007-07-19 01:46:59 -0700206 * This function is derived from filemap_fault, but used for execute in place
Carsten Otteceffc072005-06-23 22:05:25 -0700207 */
Nick Piggin70688e42008-04-28 02:13:02 -0700208static int xip_file_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Carsten Otteceffc072005-06-23 22:05:25 -0700209{
Nick Piggin70688e42008-04-28 02:13:02 -0700210 struct file *file = vma->vm_file;
Carsten Otteceffc072005-06-23 22:05:25 -0700211 struct address_space *mapping = file->f_mapping;
212 struct inode *inode = mapping->host;
Nick Piggin54cb8822007-07-19 01:46:59 -0700213 pgoff_t size;
Nick Piggin70688e42008-04-28 02:13:02 -0700214 void *xip_mem;
215 unsigned long xip_pfn;
216 struct page *page;
217 int error;
Carsten Otteceffc072005-06-23 22:05:25 -0700218
Nick Piggin54cb8822007-07-19 01:46:59 -0700219 /* XXX: are VM_FAULT_ codes OK? */
Carsten Otteceffc072005-06-23 22:05:25 -0700220
221 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Nick Piggind0217ac2007-07-19 01:47:03 -0700222 if (vmf->pgoff >= size)
223 return VM_FAULT_SIGBUS;
Carsten Otteceffc072005-06-23 22:05:25 -0700224
Nick Piggin70688e42008-04-28 02:13:02 -0700225 error = mapping->a_ops->get_xip_mem(mapping, vmf->pgoff, 0,
226 &xip_mem, &xip_pfn);
227 if (likely(!error))
228 goto found;
229 if (error != -ENODATA)
Nick Piggind0217ac2007-07-19 01:47:03 -0700230 return VM_FAULT_OOM;
Carsten Otteceffc072005-06-23 22:05:25 -0700231
232 /* sparse block */
Nick Piggin70688e42008-04-28 02:13:02 -0700233 if ((vma->vm_flags & (VM_WRITE | VM_MAYWRITE)) &&
234 (vma->vm_flags & (VM_SHARED | VM_MAYSHARE)) &&
Carsten Otteceffc072005-06-23 22:05:25 -0700235 (!(mapping->host->i_sb->s_flags & MS_RDONLY))) {
Nick Piggin70688e42008-04-28 02:13:02 -0700236 int err;
237
Carsten Otteceffc072005-06-23 22:05:25 -0700238 /* maybe shared writable, allocate new block */
Nick Piggin70688e42008-04-28 02:13:02 -0700239 error = mapping->a_ops->get_xip_mem(mapping, vmf->pgoff, 1,
240 &xip_mem, &xip_pfn);
241 if (error)
Nick Piggind0217ac2007-07-19 01:47:03 -0700242 return VM_FAULT_SIGBUS;
Nick Piggin70688e42008-04-28 02:13:02 -0700243 /* unmap sparse mappings at pgoff from all other vmas */
Nick Piggind0217ac2007-07-19 01:47:03 -0700244 __xip_unmap(mapping, vmf->pgoff);
Nick Piggin70688e42008-04-28 02:13:02 -0700245
246found:
247 err = vm_insert_mixed(vma, (unsigned long)vmf->virtual_address,
248 xip_pfn);
249 if (err == -ENOMEM)
250 return VM_FAULT_OOM;
251 BUG_ON(err);
252 return VM_FAULT_NOPAGE;
Carsten Otteceffc072005-06-23 22:05:25 -0700253 } else {
Carsten Ottea76c0b92007-03-29 01:20:39 -0700254 /* not shared and writable, use xip_sparse_page() */
255 page = xip_sparse_page();
Nick Piggind0217ac2007-07-19 01:47:03 -0700256 if (!page)
257 return VM_FAULT_OOM;
Carsten Otteceffc072005-06-23 22:05:25 -0700258
Nick Piggin70688e42008-04-28 02:13:02 -0700259 page_cache_get(page);
260 vmf->page = page;
261 return 0;
262 }
Carsten Otteceffc072005-06-23 22:05:25 -0700263}
264
265static struct vm_operations_struct xip_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -0700266 .fault = xip_file_fault,
Carsten Otteceffc072005-06-23 22:05:25 -0700267};
268
269int xip_file_mmap(struct file * file, struct vm_area_struct * vma)
270{
Nick Piggin70688e42008-04-28 02:13:02 -0700271 BUG_ON(!file->f_mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -0700272
273 file_accessed(file);
274 vma->vm_ops = &xip_file_vm_ops;
Nick Piggin70688e42008-04-28 02:13:02 -0700275 vma->vm_flags |= VM_CAN_NONLINEAR | VM_MIXEDMAP;
Carsten Otteceffc072005-06-23 22:05:25 -0700276 return 0;
277}
278EXPORT_SYMBOL_GPL(xip_file_mmap);
279
280static ssize_t
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700281__xip_file_write(struct file *filp, const char __user *buf,
282 size_t count, loff_t pos, loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -0700283{
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700284 struct address_space * mapping = filp->f_mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700285 const struct address_space_operations *a_ops = mapping->a_ops;
Carsten Otteceffc072005-06-23 22:05:25 -0700286 struct inode *inode = mapping->host;
287 long status = 0;
Carsten Otteceffc072005-06-23 22:05:25 -0700288 size_t bytes;
Carsten Otteceffc072005-06-23 22:05:25 -0700289 ssize_t written = 0;
290
Nick Piggin70688e42008-04-28 02:13:02 -0700291 BUG_ON(!mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -0700292
Carsten Otteceffc072005-06-23 22:05:25 -0700293 do {
294 unsigned long index;
295 unsigned long offset;
296 size_t copied;
Nick Piggin70688e42008-04-28 02:13:02 -0700297 void *xip_mem;
298 unsigned long xip_pfn;
Carsten Otteceffc072005-06-23 22:05:25 -0700299
300 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
301 index = pos >> PAGE_CACHE_SHIFT;
302 bytes = PAGE_CACHE_SIZE - offset;
303 if (bytes > count)
304 bytes = count;
305
Nick Piggin70688e42008-04-28 02:13:02 -0700306 status = a_ops->get_xip_mem(mapping, index, 0,
307 &xip_mem, &xip_pfn);
308 if (status == -ENODATA) {
Carsten Otteceffc072005-06-23 22:05:25 -0700309 /* we allocate a new page unmap it */
Nick Piggin70688e42008-04-28 02:13:02 -0700310 status = a_ops->get_xip_mem(mapping, index, 1,
311 &xip_mem, &xip_pfn);
312 if (!status)
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700313 /* unmap page at pgoff from all other vmas */
314 __xip_unmap(mapping, index);
Carsten Otteceffc072005-06-23 22:05:25 -0700315 }
316
Nick Piggin70688e42008-04-28 02:13:02 -0700317 if (status)
Carsten Otteceffc072005-06-23 22:05:25 -0700318 break;
Carsten Otteceffc072005-06-23 22:05:25 -0700319
Nick Piggin4a9e5ef2007-10-16 01:24:58 -0700320 copied = bytes -
Nick Piggin70688e42008-04-28 02:13:02 -0700321 __copy_from_user_nocache(xip_mem + offset, buf, bytes);
Nick Piggin4a9e5ef2007-10-16 01:24:58 -0700322
Carsten Otteceffc072005-06-23 22:05:25 -0700323 if (likely(copied > 0)) {
324 status = copied;
325
326 if (status >= 0) {
327 written += status;
328 count -= status;
329 pos += status;
330 buf += status;
Carsten Otteceffc072005-06-23 22:05:25 -0700331 }
332 }
333 if (unlikely(copied != bytes))
334 if (status >= 0)
335 status = -EFAULT;
336 if (status < 0)
337 break;
338 } while (count);
339 *ppos = pos;
340 /*
341 * No need to use i_size_read() here, the i_size
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800342 * cannot change under us because we hold i_mutex.
Carsten Otteceffc072005-06-23 22:05:25 -0700343 */
344 if (pos > inode->i_size) {
345 i_size_write(inode, pos);
346 mark_inode_dirty(inode);
347 }
348
349 return written ? written : status;
350}
351
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700352ssize_t
353xip_file_write(struct file *filp, const char __user *buf, size_t len,
354 loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -0700355{
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700356 struct address_space *mapping = filp->f_mapping;
357 struct inode *inode = mapping->host;
358 size_t count;
359 loff_t pos;
360 ssize_t ret;
Carsten Otteceffc072005-06-23 22:05:25 -0700361
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800362 mutex_lock(&inode->i_mutex);
Carsten Otteceffc072005-06-23 22:05:25 -0700363
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700364 if (!access_ok(VERIFY_READ, buf, len)) {
365 ret=-EFAULT;
366 goto out_up;
Carsten Otteceffc072005-06-23 22:05:25 -0700367 }
368
Carsten Otteceffc072005-06-23 22:05:25 -0700369 pos = *ppos;
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700370 count = len;
Carsten Otteceffc072005-06-23 22:05:25 -0700371
372 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
373
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700374 /* We can write back this queue in page reclaim */
375 current->backing_dev_info = mapping->backing_dev_info;
Carsten Otteceffc072005-06-23 22:05:25 -0700376
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700377 ret = generic_write_checks(filp, &pos, &count, S_ISBLK(inode->i_mode));
378 if (ret)
379 goto out_backing;
Carsten Otteceffc072005-06-23 22:05:25 -0700380 if (count == 0)
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700381 goto out_backing;
Carsten Otteceffc072005-06-23 22:05:25 -0700382
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -0800383 ret = remove_suid(filp->f_path.dentry);
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700384 if (ret)
385 goto out_backing;
Carsten Otteceffc072005-06-23 22:05:25 -0700386
Christoph Hellwig870f4812006-01-09 20:52:01 -0800387 file_update_time(filp);
Carsten Otteceffc072005-06-23 22:05:25 -0700388
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700389 ret = __xip_file_write (filp, buf, count, pos, ppos);
Carsten Otteceffc072005-06-23 22:05:25 -0700390
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700391 out_backing:
392 current->backing_dev_info = NULL;
393 out_up:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800394 mutex_unlock(&inode->i_mutex);
Carsten Otteceffc072005-06-23 22:05:25 -0700395 return ret;
396}
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700397EXPORT_SYMBOL_GPL(xip_file_write);
Carsten Otteceffc072005-06-23 22:05:25 -0700398
399/*
400 * truncate a page used for execute in place
Nick Piggin70688e42008-04-28 02:13:02 -0700401 * functionality is analog to block_truncate_page but does use get_xip_mem
Carsten Otteceffc072005-06-23 22:05:25 -0700402 * to get the page instead of page cache
403 */
404int
405xip_truncate_page(struct address_space *mapping, loff_t from)
406{
407 pgoff_t index = from >> PAGE_CACHE_SHIFT;
408 unsigned offset = from & (PAGE_CACHE_SIZE-1);
409 unsigned blocksize;
410 unsigned length;
Nick Piggin70688e42008-04-28 02:13:02 -0700411 void *xip_mem;
412 unsigned long xip_pfn;
413 int err;
Carsten Otteceffc072005-06-23 22:05:25 -0700414
Nick Piggin70688e42008-04-28 02:13:02 -0700415 BUG_ON(!mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -0700416
417 blocksize = 1 << mapping->host->i_blkbits;
418 length = offset & (blocksize - 1);
419
420 /* Block boundary? Nothing to do */
421 if (!length)
422 return 0;
423
424 length = blocksize - length;
425
Nick Piggin70688e42008-04-28 02:13:02 -0700426 err = mapping->a_ops->get_xip_mem(mapping, index, 0,
427 &xip_mem, &xip_pfn);
428 if (unlikely(err)) {
429 if (err == -ENODATA)
Carsten Otteceffc072005-06-23 22:05:25 -0700430 /* Hole? No need to truncate */
431 return 0;
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700432 else
Nick Piggin70688e42008-04-28 02:13:02 -0700433 return err;
Carsten Otteafa597b2005-07-15 03:56:30 -0700434 }
Nick Piggin70688e42008-04-28 02:13:02 -0700435 memset(xip_mem + offset, 0, length);
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700436 return 0;
Carsten Otteceffc072005-06-23 22:05:25 -0700437}
438EXPORT_SYMBOL_GPL(xip_truncate_page);