diff options
author | Marco Stornelli <marco.stornelli@gmail.com> | 2012-12-15 11:59:20 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-12-20 18:46:29 -0500 |
commit | d30357f2f0ec0bfb67fd39f8f76d22d02d78631e (patch) | |
tree | 0923a2f8276af03293410cb2b78b2457d7fc6996 | |
parent | 9014da7525dffef69131f717decf262e08ff3d58 (diff) | |
download | op-kernel-dev-d30357f2f0ec0bfb67fd39f8f76d22d02d78631e.zip op-kernel-dev-d30357f2f0ec0bfb67fd39f8f76d22d02d78631e.tar.gz |
vfs: drop vmtruncate
Removed vmtruncate
Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | fs/libfs.c | 2 | ||||
-rw-r--r-- | include/linux/fs.h | 1 |
2 files changed, 0 insertions, 3 deletions
@@ -369,8 +369,6 @@ int simple_setattr(struct dentry *dentry, struct iattr *iattr) struct inode *inode = dentry->d_inode; int error; - WARN_ON_ONCE(inode->i_op->truncate); - error = inode_change_ok(inode, iattr); if (error) return error; diff --git a/include/linux/fs.h b/include/linux/fs.h index a823d4b..a0c5ba5 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1565,7 +1565,6 @@ struct inode_operations { int (*mknod) (struct inode *,struct dentry *,umode_t,dev_t); int (*rename) (struct inode *, struct dentry *, struct inode *, struct dentry *); - void (*truncate) (struct inode *); int (*setattr) (struct dentry *, struct iattr *); int (*getattr) (struct vfsmount *mnt, struct dentry *, struct kstat *); int (*setxattr) (struct dentry *, const char *,const void *,size_t,int); |