locks: consolidate "nolease" routines
[cascardo/linux.git] / fs / libfs.c
index 88e3e00..29012a3 100644 (file)
@@ -1075,3 +1075,19 @@ struct inode *alloc_anon_inode(struct super_block *s)
        return 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);