Commit 7df818b2 authored by Al Viro's avatar Al Viro

constify vfs_truncate()

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 81f4c506
...@@ -65,7 +65,7 @@ int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs, ...@@ -65,7 +65,7 @@ int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
return ret; return ret;
} }
long vfs_truncate(struct path *path, loff_t length) long vfs_truncate(const struct path *path, loff_t length)
{ {
struct inode *inode; struct inode *inode;
long error; long error;
......
...@@ -2253,7 +2253,7 @@ struct filename { ...@@ -2253,7 +2253,7 @@ struct filename {
const char iname[]; const char iname[];
}; };
extern long vfs_truncate(struct path *, loff_t); extern long vfs_truncate(const struct path *, loff_t);
extern int do_truncate(struct dentry *, loff_t start, unsigned int time_attrs, extern int do_truncate(struct dentry *, loff_t start, unsigned int time_attrs,
struct file *filp); struct file *filp);
extern int vfs_fallocate(struct file *file, int mode, loff_t offset, extern int vfs_fallocate(struct file *file, int mode, loff_t offset,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment