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
Kirill Smelkov
linux
Commits
a488257c
Commit
a488257c
authored
Feb 20, 2009
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
constify dentry_operations: 9p
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
e16404ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
fs/9p/v9fs_vfs.h
fs/9p/v9fs_vfs.h
+2
-2
fs/9p/vfs_dentry.c
fs/9p/vfs_dentry.c
+2
-2
No files found.
fs/9p/v9fs_vfs.h
View file @
a488257c
...
...
@@ -41,8 +41,8 @@ extern struct file_system_type v9fs_fs_type;
extern
const
struct
address_space_operations
v9fs_addr_operations
;
extern
const
struct
file_operations
v9fs_file_operations
;
extern
const
struct
file_operations
v9fs_dir_operations
;
extern
struct
dentry_operations
v9fs_dentry_operations
;
extern
struct
dentry_operations
v9fs_cached_dentry_operations
;
extern
const
struct
dentry_operations
v9fs_dentry_operations
;
extern
const
struct
dentry_operations
v9fs_cached_dentry_operations
;
struct
inode
*
v9fs_get_inode
(
struct
super_block
*
sb
,
int
mode
);
ino_t
v9fs_qid2ino
(
struct
p9_qid
*
qid
);
...
...
fs/9p/vfs_dentry.c
View file @
a488257c
...
...
@@ -104,12 +104,12 @@ void v9fs_dentry_release(struct dentry *dentry)
}
}
struct
dentry_operations
v9fs_cached_dentry_operations
=
{
const
struct
dentry_operations
v9fs_cached_dentry_operations
=
{
.
d_delete
=
v9fs_cached_dentry_delete
,
.
d_release
=
v9fs_dentry_release
,
};
struct
dentry_operations
v9fs_dentry_operations
=
{
const
struct
dentry_operations
v9fs_dentry_operations
=
{
.
d_delete
=
v9fs_dentry_delete
,
.
d_release
=
v9fs_dentry_release
,
};
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