diff options
author | Shirish Pargaonkar | 2011-02-25 17:48:55 +0100 |
---|---|---|
committer | Steve French | 2011-05-19 16:10:49 +0200 |
commit | 257208736acc694def83627fa0de2892490a5d42 (patch) | |
tree | fefef8ec91edec3d38082977d079663e21032706 /fs/cifs/cifsfs.c | |
parent | Introduce SMB2 Kconfig option (diff) | |
download | kernel-qcow2-linux-257208736acc694def83627fa0de2892490a5d42.tar.gz kernel-qcow2-linux-257208736acc694def83627fa0de2892490a5d42.tar.xz kernel-qcow2-linux-257208736acc694def83627fa0de2892490a5d42.zip |
cifs: cleanup: Rename and remove config flags
Remove config flag CIFS_EXPERIMENTAL.
Do export operations under new config flag CIFS_NFSD_EXPORT
Signed-off-by: Shirish Pargaonkar <shirishpargaonkar@gmail.com>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r-- | fs/cifs/cifsfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index b45d38b89116..30fc505b7ef1 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -184,12 +184,12 @@ cifs_read_super(struct super_block *sb, void *data, else sb->s_d_op = &cifs_dentry_ops; -#ifdef CONFIG_CIFS_EXPERIMENTAL +#ifdef CIFS_NFSD_EXPORT if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { cFYI(1, "export ops supported"); sb->s_export_op = &cifs_export_ops; } -#endif /* EXPERIMENTAL */ +#endif /* CIFS_NFSD_EXPORT */ return 0; |