Browse Source

locks: consolidate "nolease" routines

GFS2 and NFS have setlease routines that always just return -EINVAL.
Turn that into a generic routine that can live in fs/libfs.c.

Cc: <linux-nfs@vger.kernel.org>
Cc: Steven Whitehouse <swhiteho@redhat.com>
Cc: <cluster-devel@redhat.com>
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Acked-by: Trond Myklebust <trond.myklebust@primarydata.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Jeff Layton 11 years ago
parent
commit
1c994a0909
6 changed files with 20 additions and 35 deletions
  1. 1 21
      fs/gfs2/file.c
  2. 16 0
      fs/libfs.c
  3. 1 12
      fs/nfs/file.c
  4. 0 1
      fs/nfs/internal.h
  5. 1 1
      fs/nfs/nfs4file.c
  6. 1 0
      include/linux/fs.h

+ 1 - 21
fs/gfs2/file.c

@@ -912,26 +912,6 @@ out_uninit:
 
 
 #ifdef CONFIG_GFS2_FS_LOCKING_DLM
 #ifdef CONFIG_GFS2_FS_LOCKING_DLM
 
 
-/**
- * gfs2_setlease - acquire/release a file lease
- * @file: the file pointer
- * @arg: lease type
- * @fl: file lock
- *
- * We don't currently have a way to enforce a lease across the whole
- * cluster; until we do, disable leases (by just returning -EINVAL),
- * unless the administrator has requested purely local locking.
- *
- * Locking: called under i_lock
- *
- * Returns: errno
- */
-
-static int gfs2_setlease(struct file *file, long arg, struct file_lock **fl)
-{
-	return -EINVAL;
-}
-
 /**
 /**
  * gfs2_lock - acquire/release a posix lock on a file
  * gfs2_lock - acquire/release a posix lock on a file
  * @file: the file pointer
  * @file: the file pointer
@@ -1069,7 +1049,7 @@ const struct file_operations gfs2_file_fops = {
 	.flock		= gfs2_flock,
 	.flock		= gfs2_flock,
 	.splice_read	= generic_file_splice_read,
 	.splice_read	= generic_file_splice_read,
 	.splice_write	= iter_file_splice_write,
 	.splice_write	= iter_file_splice_write,
-	.setlease	= gfs2_setlease,
+	.setlease	= simple_nosetlease,
 	.fallocate	= gfs2_fallocate,
 	.fallocate	= gfs2_fallocate,
 };
 };
 
 

+ 16 - 0
fs/libfs.c

@@ -1075,3 +1075,19 @@ struct inode *alloc_anon_inode(struct super_block *s)
 	return inode;
 	return inode;
 }
 }
 EXPORT_SYMBOL(alloc_anon_inode);
 EXPORT_SYMBOL(alloc_anon_inode);
+
+/**
+ * simple_nosetlease - generic helper for prohibiting leases
+ * @filp: file pointer
+ * @arg: type of lease to obtain
+ * @flp: new lease supplied for insertion
+ *
+ * Generic helper for filesystems that do not wish to allow leases to be set.
+ * All arguments are ignored and it just returns -EINVAL.
+ */
+int
+simple_nosetlease(struct file *filp, long arg, struct file_lock **flp)
+{
+	return -EINVAL;
+}
+EXPORT_SYMBOL(simple_nosetlease);

+ 1 - 12
fs/nfs/file.c

@@ -891,17 +891,6 @@ int nfs_flock(struct file *filp, int cmd, struct file_lock *fl)
 }
 }
 EXPORT_SYMBOL_GPL(nfs_flock);
 EXPORT_SYMBOL_GPL(nfs_flock);
 
 
-/*
- * There is no protocol support for leases, so we have no way to implement
- * them correctly in the face of opens by other clients.
- */
-int nfs_setlease(struct file *file, long arg, struct file_lock **fl)
-{
-	dprintk("NFS: setlease(%pD2, arg=%ld)\n", file, arg);
-	return -EINVAL;
-}
-EXPORT_SYMBOL_GPL(nfs_setlease);
-
 const struct file_operations nfs_file_operations = {
 const struct file_operations nfs_file_operations = {
 	.llseek		= nfs_file_llseek,
 	.llseek		= nfs_file_llseek,
 	.read		= new_sync_read,
 	.read		= new_sync_read,
@@ -918,6 +907,6 @@ const struct file_operations nfs_file_operations = {
 	.splice_read	= nfs_file_splice_read,
 	.splice_read	= nfs_file_splice_read,
 	.splice_write	= iter_file_splice_write,
 	.splice_write	= iter_file_splice_write,
 	.check_flags	= nfs_check_flags,
 	.check_flags	= nfs_check_flags,
-	.setlease	= nfs_setlease,
+	.setlease	= simple_nosetlease,
 };
 };
 EXPORT_SYMBOL_GPL(nfs_file_operations);
 EXPORT_SYMBOL_GPL(nfs_file_operations);

+ 0 - 1
fs/nfs/internal.h

@@ -346,7 +346,6 @@ int nfs_file_release(struct inode *, struct file *);
 int nfs_lock(struct file *, int, struct file_lock *);
 int nfs_lock(struct file *, int, struct file_lock *);
 int nfs_flock(struct file *, int, struct file_lock *);
 int nfs_flock(struct file *, int, struct file_lock *);
 int nfs_check_flags(int);
 int nfs_check_flags(int);
-int nfs_setlease(struct file *, long, struct file_lock **);
 
 
 /* inode.c */
 /* inode.c */
 extern struct workqueue_struct *nfsiod_workqueue;
 extern struct workqueue_struct *nfsiod_workqueue;

+ 1 - 1
fs/nfs/nfs4file.c

@@ -131,5 +131,5 @@ const struct file_operations nfs4_file_operations = {
 	.splice_read	= nfs_file_splice_read,
 	.splice_read	= nfs_file_splice_read,
 	.splice_write	= iter_file_splice_write,
 	.splice_write	= iter_file_splice_write,
 	.check_flags	= nfs_check_flags,
 	.check_flags	= nfs_check_flags,
-	.setlease	= nfs_setlease,
+	.setlease	= simple_nosetlease,
 };
 };

+ 1 - 0
include/linux/fs.h

@@ -2599,6 +2599,7 @@ extern int simple_write_end(struct file *file, struct address_space *mapping,
 			struct page *page, void *fsdata);
 			struct page *page, void *fsdata);
 extern int always_delete_dentry(const struct dentry *);
 extern int always_delete_dentry(const struct dentry *);
 extern struct inode *alloc_anon_inode(struct super_block *);
 extern struct inode *alloc_anon_inode(struct super_block *);
+extern int simple_nosetlease(struct file *, long, struct file_lock **);
 extern const struct dentry_operations simple_dentry_operations;
 extern const struct dentry_operations simple_dentry_operations;
 
 
 extern struct dentry *simple_lookup(struct inode *, struct dentry *, unsigned int flags);
 extern struct dentry *simple_lookup(struct inode *, struct dentry *, unsigned int flags);