Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

[CIFS] Fix build problem

Signed-off-by: Steve French <sfrench@us.ibm.com>

+4
+4
fs/cifs/inode.c
··· 57 57 inode->i_data.a_ops = &cifs_addr_ops; 58 58 break; 59 59 case S_IFDIR: 60 + #ifdef CONFIG_CIFS_DFS_UPCALL 60 61 if (is_dfs_referral) { 61 62 inode->i_op = &cifs_dfs_referral_inode_operations; 62 63 } else { 64 + #else /* NO DFS support, treat as a directory */ 65 + { 66 + #endif 63 67 inode->i_op = &cifs_dir_inode_ops; 64 68 inode->i_fop = &cifs_dir_ops; 65 69 }