Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
bc5b6e24
Commit
bc5b6e24
authored
Mar 11, 2008
by
Steve French
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CIFS] Fix build problem
Signed-off-by:
Steve French
<
sfrench@us.ibm.com
>
parent
5b4d4771
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
fs/cifs/inode.c
fs/cifs/inode.c
+4
-0
No files found.
fs/cifs/inode.c
View file @
bc5b6e24
...
...
@@ -57,9 +57,13 @@ static void cifs_set_ops(struct inode *inode, const bool is_dfs_referral)
inode
->
i_data
.
a_ops
=
&
cifs_addr_ops
;
break
;
case
S_IFDIR
:
#ifdef CONFIG_CIFS_DFS_UPCALL
if
(
is_dfs_referral
)
{
inode
->
i_op
=
&
cifs_dfs_referral_inode_operations
;
}
else
{
#else
/* NO DFS support, treat as a directory */
{
#endif
inode
->
i_op
=
&
cifs_dir_inode_ops
;
inode
->
i_fop
=
&
cifs_dir_ops
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment