Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
4269590a
Commit
4269590a
authored
Feb 20, 2009
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
constify dentry_operations: FUSE
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
d72f71eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
fs/fuse/dir.c
fs/fuse/dir.c
+1
-1
fs/fuse/fuse_i.h
fs/fuse/fuse_i.h
+1
-1
No files found.
fs/fuse/dir.c
View file @
4269590a
...
...
@@ -224,7 +224,7 @@ static int invalid_nodeid(u64 nodeid)
return
!
nodeid
||
nodeid
==
FUSE_ROOT_ID
;
}
struct
dentry_operations
fuse_dentry_operations
=
{
const
struct
dentry_operations
fuse_dentry_operations
=
{
.
d_revalidate
=
fuse_dentry_revalidate
,
};
...
...
fs/fuse/fuse_i.h
View file @
4269590a
...
...
@@ -493,7 +493,7 @@ static inline u64 get_node_id(struct inode *inode)
/** Device operations */
extern
const
struct
file_operations
fuse_dev_operations
;
extern
struct
dentry_operations
fuse_dentry_operations
;
extern
const
struct
dentry_operations
fuse_dentry_operations
;
/**
* Get a filled in inode
...
...
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