cifs: warn about deprecation of /proc/fs/cifs/OplockEnabled interface
authorSuresh Jayaraman <sjayaraman@suse.com>
Wed, 12 Oct 2011 06:21:53 +0000 (11:51 +0530)
committerSteve French <smfrench@gmail.com>
Thu, 13 Oct 2011 04:42:13 +0000 (23:42 -0500)
The plan is to deprecate this interface by kernel version 3.4.

Changes since v1
   - add a '\n' to the printk.

Reported-by: Alexander Swen <alex@swen.nu>
Cc: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Suresh Jayaraman <sjayaraman@suse.de>
Signed-off-by: Steve French <smfrench@gmail.com>
fs/cifs/cifs_debug.c

index e171531..84e8c07 100644 (file)
@@ -526,6 +526,9 @@ static ssize_t cifs_oplock_proc_write(struct file *file,
        char c;
        int rc;
 
+       printk(KERN_WARNING "CIFS: The /proc/fs/cifs/OplockEnabled interface "
+              "will be removed in kernel version 3.4. Please migrate to "
+              "using the 'enable_oplocks' module parameter in cifs.ko.\n");
        rc = get_user(c, buffer);
        if (rc)
                return rc;