aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 7e0501895f35..3ae8e37bdfc8 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1500,18 +1500,14 @@ extern int generic_file_open(struct inode * inode, struct file * filp);
1500extern int nonseekable_open(struct inode * inode, struct file * filp); 1500extern int nonseekable_open(struct inode * inode, struct file * filp);
1501 1501
1502#ifdef CONFIG_FS_XIP 1502#ifdef CONFIG_FS_XIP
1503extern ssize_t xip_file_aio_read(struct kiocb *iocb, char __user *buf, 1503extern ssize_t xip_file_read(struct file *filp, char __user *buf, size_t len,
1504 size_t count, loff_t pos); 1504 loff_t *ppos);
1505extern ssize_t xip_file_readv(struct file *filp, const struct iovec *iov,
1506 unsigned long nr_segs, loff_t *ppos);
1507extern ssize_t xip_file_sendfile(struct file *in_file, loff_t *ppos, 1505extern ssize_t xip_file_sendfile(struct file *in_file, loff_t *ppos,
1508 size_t count, read_actor_t actor, 1506 size_t count, read_actor_t actor,
1509 void *target); 1507 void *target);
1510extern int xip_file_mmap(struct file * file, struct vm_area_struct * vma); 1508extern int xip_file_mmap(struct file * file, struct vm_area_struct * vma);
1511extern ssize_t xip_file_aio_write(struct kiocb *iocb, const char __user *buf, 1509extern ssize_t xip_file_write(struct file *filp, const char __user *buf,
1512 size_t count, loff_t pos); 1510 size_t len, loff_t *ppos);
1513extern ssize_t xip_file_writev(struct file *file, const struct iovec *iov,
1514 unsigned long nr_segs, loff_t *ppos);
1515extern int xip_truncate_page(struct address_space *mapping, loff_t from); 1511extern int xip_truncate_page(struct address_space *mapping, loff_t from);
1516#else 1512#else
1517static inline int xip_truncate_page(struct address_space *mapping, loff_t from) 1513static inline int xip_truncate_page(struct address_space *mapping, loff_t from)