dect
/
linux-2.6
Archived
13
0
Fork 0

cifs: add deprecation warnings to strictcache and forcedirectio

Leave them in for 2 releases and remove for 3.7.

Reviewed-by: Pavel Shilovsky <piastry@etersoft.ru>
Signed-off-by: Jeff Layton <jlayton@redhat.com>
This commit is contained in:
Jeff Layton 2012-05-16 07:53:00 -04:00 committed by Steve French
parent 15b6a47322
commit 09983b2fab
1 changed files with 6 additions and 0 deletions

View File

@ -1457,10 +1457,16 @@ cifs_parse_mount_options(const char *mountdata, const char *devname,
case Opt_direct:
vol->direct_io = true;
vol->strict_io = false;
cERROR(1, "The \"directio\" option will be removed in "
"3.7. Please switch to the \"cache=none\" "
"option.");
break;
case Opt_strictcache:
vol->direct_io = false;
vol->strict_io = true;
cERROR(1, "The \"strictcache\" option will be removed "
"in 3.7. Please switch to the \"cache=strict\" "
"option.");
break;
case Opt_noac:
printk(KERN_WARNING "CIFS: Mount option noac not "