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
ad28b4ef
Commit
ad28b4ef
authored
Feb 20, 2009
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
constify dentry_operations: JFS
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
d8fba0ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
fs/jfs/jfs_inode.h
fs/jfs/jfs_inode.h
+1
-1
fs/jfs/namei.c
fs/jfs/namei.c
+2
-2
No files found.
fs/jfs/jfs_inode.h
View file @
ad28b4ef
...
...
@@ -47,5 +47,5 @@ extern const struct file_operations jfs_dir_operations;
extern
const
struct
inode_operations
jfs_file_inode_operations
;
extern
const
struct
file_operations
jfs_file_operations
;
extern
const
struct
inode_operations
jfs_symlink_inode_operations
;
extern
struct
dentry_operations
jfs_ci_dentry_operations
;
extern
const
struct
dentry_operations
jfs_ci_dentry_operations
;
#endif
/* _H_JFS_INODE */
fs/jfs/namei.c
View file @
ad28b4ef
...
...
@@ -35,7 +35,7 @@
/*
* forward references
*/
struct
dentry_operations
jfs_ci_dentry_operations
;
const
struct
dentry_operations
jfs_ci_dentry_operations
;
static
s64
commitZeroLink
(
tid_t
,
struct
inode
*
);
...
...
@@ -1595,7 +1595,7 @@ static int jfs_ci_compare(struct dentry *dir, struct qstr *a, struct qstr *b)
return
result
;
}
struct
dentry_operations
jfs_ci_dentry_operations
=
const
struct
dentry_operations
jfs_ci_dentry_operations
=
{
.
d_hash
=
jfs_ci_hash
,
.
d_compare
=
jfs_ci_compare
,
...
...
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