aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-06-09 16:40:38 -0700
committerAl Viro <viro@zeniv.linux.org.uk>2008-06-23 11:52:30 -0400
commitf9f48ec72bfc9489a30bc6ddbfcf27d86a8bc651 (patch)
treeb04720f8c5eaf69a94d134793ff83b78324142fa /include/linux/fs.h
parent[patch 3/4] vfs: fix ERR_PTR abuse in generic_readlink (diff)
downloadlinux-dev-f9f48ec72bfc9489a30bc6ddbfcf27d86a8bc651.tar.xz
linux-dev-f9f48ec72bfc9489a30bc6ddbfcf27d86a8bc651.zip
[patch 4/4] flock: remove unused fields from file_lock_operations
fl_insert and fl_remove are not used right now in the kernel. Remove them. Signed-off-by: Denis V. Lunev <den@openvz.org> Cc: Matthew Wilcox <matthew@wil.cx> Cc: Alexander Viro <viro@zeniv.linux.org.uk> Cc: "J. Bruce Fields" <bfields@fieldses.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index d490779f18d9..7c1080826832 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -894,8 +894,6 @@ static inline int file_check_writeable(struct file *filp)
typedef struct files_struct *fl_owner_t;
struct file_lock_operations {
- void (*fl_insert)(struct file_lock *); /* lock insertion callback */
- void (*fl_remove)(struct file_lock *); /* lock removal callback */
void (*fl_copy_lock)(struct file_lock *, struct file_lock *);
void (*fl_release_private)(struct file_lock *);
};