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
e16404ed
Commit
e16404ed
authored
Feb 20, 2009
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
constify dentry_operations: misc filesystems
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
f786aa90
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
22 additions
and
23 deletions
+22
-23
fs/adfs/adfs.h
fs/adfs/adfs.h
+1
-1
fs/adfs/dir.c
fs/adfs/dir.c
+1
-1
fs/affs/affs.h
fs/affs/affs.h
+1
-2
fs/affs/namei.c
fs/affs/namei.c
+2
-2
fs/coda/dir.c
fs/coda/dir.c
+1
-1
fs/hfs/hfs_fs.h
fs/hfs/hfs_fs.h
+1
-1
fs/hfs/sysdep.c
fs/hfs/sysdep.c
+1
-1
fs/hfsplus/hfsplus_fs.h
fs/hfsplus/hfsplus_fs.h
+1
-1
fs/hfsplus/inode.c
fs/hfsplus/inode.c
+1
-1
fs/hostfs/hostfs_kern.c
fs/hostfs/hostfs_kern.c
+2
-2
fs/hpfs/dentry.c
fs/hpfs/dentry.c
+1
-1
fs/isofs/inode.c
fs/isofs/inode.c
+1
-1
fs/ncpfs/dir.c
fs/ncpfs/dir.c
+2
-2
fs/reiserfs/xattr.c
fs/reiserfs/xattr.c
+1
-1
fs/smbfs/dir.c
fs/smbfs/dir.c
+2
-2
fs/sysv/namei.c
fs/sysv/namei.c
+1
-1
fs/sysv/sysv.h
fs/sysv/sysv.h
+1
-1
include/linux/ncp_fs.h
include/linux/ncp_fs.h
+1
-1
No files found.
fs/adfs/adfs.h
View file @
e16404ed
...
@@ -86,7 +86,7 @@ void __adfs_error(struct super_block *sb, const char *function,
...
@@ -86,7 +86,7 @@ void __adfs_error(struct super_block *sb, const char *function,
/* dir_*.c */
/* dir_*.c */
extern
const
struct
inode_operations
adfs_dir_inode_operations
;
extern
const
struct
inode_operations
adfs_dir_inode_operations
;
extern
const
struct
file_operations
adfs_dir_operations
;
extern
const
struct
file_operations
adfs_dir_operations
;
extern
struct
dentry_operations
adfs_dentry_operations
;
extern
const
struct
dentry_operations
adfs_dentry_operations
;
extern
struct
adfs_dir_ops
adfs_f_dir_ops
;
extern
struct
adfs_dir_ops
adfs_f_dir_ops
;
extern
struct
adfs_dir_ops
adfs_fplus_dir_ops
;
extern
struct
adfs_dir_ops
adfs_fplus_dir_ops
;
...
...
fs/adfs/dir.c
View file @
e16404ed
...
@@ -263,7 +263,7 @@ adfs_compare(struct dentry *parent, struct qstr *entry, struct qstr *name)
...
@@ -263,7 +263,7 @@ adfs_compare(struct dentry *parent, struct qstr *entry, struct qstr *name)
return
0
;
return
0
;
}
}
struct
dentry_operations
adfs_dentry_operations
=
{
const
struct
dentry_operations
adfs_dentry_operations
=
{
.
d_hash
=
adfs_hash
,
.
d_hash
=
adfs_hash
,
.
d_compare
=
adfs_compare
,
.
d_compare
=
adfs_compare
,
};
};
...
...
fs/affs/affs.h
View file @
e16404ed
...
@@ -199,8 +199,7 @@ extern const struct address_space_operations affs_symlink_aops;
...
@@ -199,8 +199,7 @@ extern const struct address_space_operations affs_symlink_aops;
extern
const
struct
address_space_operations
affs_aops
;
extern
const
struct
address_space_operations
affs_aops
;
extern
const
struct
address_space_operations
affs_aops_ofs
;
extern
const
struct
address_space_operations
affs_aops_ofs
;
extern
struct
dentry_operations
affs_dentry_operations
;
extern
const
struct
dentry_operations
affs_dentry_operations
;
extern
struct
dentry_operations
affs_dentry_operations_intl
;
static
inline
void
static
inline
void
affs_set_blocksize
(
struct
super_block
*
sb
,
int
size
)
affs_set_blocksize
(
struct
super_block
*
sb
,
int
size
)
...
...
fs/affs/namei.c
View file @
e16404ed
...
@@ -19,12 +19,12 @@ static int affs_intl_toupper(int ch);
...
@@ -19,12 +19,12 @@ static int affs_intl_toupper(int ch);
static
int
affs_intl_hash_dentry
(
struct
dentry
*
,
struct
qstr
*
);
static
int
affs_intl_hash_dentry
(
struct
dentry
*
,
struct
qstr
*
);
static
int
affs_intl_compare_dentry
(
struct
dentry
*
,
struct
qstr
*
,
struct
qstr
*
);
static
int
affs_intl_compare_dentry
(
struct
dentry
*
,
struct
qstr
*
,
struct
qstr
*
);
struct
dentry_operations
affs_dentry_operations
=
{
const
struct
dentry_operations
affs_dentry_operations
=
{
.
d_hash
=
affs_hash_dentry
,
.
d_hash
=
affs_hash_dentry
,
.
d_compare
=
affs_compare_dentry
,
.
d_compare
=
affs_compare_dentry
,
};
};
static
struct
dentry_operations
affs_intl_dentry_operations
=
{
static
const
struct
dentry_operations
affs_intl_dentry_operations
=
{
.
d_hash
=
affs_intl_hash_dentry
,
.
d_hash
=
affs_intl_hash_dentry
,
.
d_compare
=
affs_intl_compare_dentry
,
.
d_compare
=
affs_intl_compare_dentry
,
};
};
...
...
fs/coda/dir.c
View file @
e16404ed
...
@@ -59,7 +59,7 @@ static int coda_return_EIO(void)
...
@@ -59,7 +59,7 @@ static int coda_return_EIO(void)
}
}
#define CODA_EIO_ERROR ((void *) (coda_return_EIO))
#define CODA_EIO_ERROR ((void *) (coda_return_EIO))
static
struct
dentry_operations
coda_dentry_operations
=
static
const
struct
dentry_operations
coda_dentry_operations
=
{
{
.
d_revalidate
=
coda_dentry_revalidate
,
.
d_revalidate
=
coda_dentry_revalidate
,
.
d_delete
=
coda_dentry_delete
,
.
d_delete
=
coda_dentry_delete
,
...
...
fs/hfs/hfs_fs.h
View file @
e16404ed
...
@@ -213,7 +213,7 @@ extern void hfs_mdb_put(struct super_block *);
...
@@ -213,7 +213,7 @@ extern void hfs_mdb_put(struct super_block *);
extern
int
hfs_part_find
(
struct
super_block
*
,
sector_t
*
,
sector_t
*
);
extern
int
hfs_part_find
(
struct
super_block
*
,
sector_t
*
,
sector_t
*
);
/* string.c */
/* string.c */
extern
struct
dentry_operations
hfs_dentry_operations
;
extern
const
struct
dentry_operations
hfs_dentry_operations
;
extern
int
hfs_hash_dentry
(
struct
dentry
*
,
struct
qstr
*
);
extern
int
hfs_hash_dentry
(
struct
dentry
*
,
struct
qstr
*
);
extern
int
hfs_strcmp
(
const
unsigned
char
*
,
unsigned
int
,
extern
int
hfs_strcmp
(
const
unsigned
char
*
,
unsigned
int
,
...
...
fs/hfs/sysdep.c
View file @
e16404ed
...
@@ -31,7 +31,7 @@ static int hfs_revalidate_dentry(struct dentry *dentry, struct nameidata *nd)
...
@@ -31,7 +31,7 @@ static int hfs_revalidate_dentry(struct dentry *dentry, struct nameidata *nd)
return
1
;
return
1
;
}
}
struct
dentry_operations
hfs_dentry_operations
=
const
struct
dentry_operations
hfs_dentry_operations
=
{
{
.
d_revalidate
=
hfs_revalidate_dentry
,
.
d_revalidate
=
hfs_revalidate_dentry
,
.
d_hash
=
hfs_hash_dentry
,
.
d_hash
=
hfs_hash_dentry
,
...
...
fs/hfsplus/hfsplus_fs.h
View file @
e16404ed
...
@@ -327,7 +327,7 @@ void hfsplus_file_truncate(struct inode *);
...
@@ -327,7 +327,7 @@ void hfsplus_file_truncate(struct inode *);
/* inode.c */
/* inode.c */
extern
const
struct
address_space_operations
hfsplus_aops
;
extern
const
struct
address_space_operations
hfsplus_aops
;
extern
const
struct
address_space_operations
hfsplus_btree_aops
;
extern
const
struct
address_space_operations
hfsplus_btree_aops
;
extern
struct
dentry_operations
hfsplus_dentry_operations
;
extern
const
struct
dentry_operations
hfsplus_dentry_operations
;
void
hfsplus_inode_read_fork
(
struct
inode
*
,
struct
hfsplus_fork_raw
*
);
void
hfsplus_inode_read_fork
(
struct
inode
*
,
struct
hfsplus_fork_raw
*
);
void
hfsplus_inode_write_fork
(
struct
inode
*
,
struct
hfsplus_fork_raw
*
);
void
hfsplus_inode_write_fork
(
struct
inode
*
,
struct
hfsplus_fork_raw
*
);
...
...
fs/hfsplus/inode.c
View file @
e16404ed
...
@@ -137,7 +137,7 @@ const struct address_space_operations hfsplus_aops = {
...
@@ -137,7 +137,7 @@ const struct address_space_operations hfsplus_aops = {
.
writepages
=
hfsplus_writepages
,
.
writepages
=
hfsplus_writepages
,
};
};
struct
dentry_operations
hfsplus_dentry_operations
=
{
const
struct
dentry_operations
hfsplus_dentry_operations
=
{
.
d_hash
=
hfsplus_hash_dentry
,
.
d_hash
=
hfsplus_hash_dentry
,
.
d_compare
=
hfsplus_compare_dentry
,
.
d_compare
=
hfsplus_compare_dentry
,
};
};
...
...
fs/hostfs/hostfs_kern.c
View file @
e16404ed
...
@@ -31,12 +31,12 @@ static inline struct hostfs_inode_info *HOSTFS_I(struct inode *inode)
...
@@ -31,12 +31,12 @@ static inline struct hostfs_inode_info *HOSTFS_I(struct inode *inode)
#define FILE_HOSTFS_I(file) HOSTFS_I((file)->f_path.dentry->d_inode)
#define FILE_HOSTFS_I(file) HOSTFS_I((file)->f_path.dentry->d_inode)
int
hostfs_d_delete
(
struct
dentry
*
dentry
)
static
int
hostfs_d_delete
(
struct
dentry
*
dentry
)
{
{
return
1
;
return
1
;
}
}
struct
dentry_operations
hostfs_dentry_ops
=
{
st
atic
const
st
ruct
dentry_operations
hostfs_dentry_ops
=
{
.
d_delete
=
hostfs_d_delete
,
.
d_delete
=
hostfs_d_delete
,
};
};
...
...
fs/hpfs/dentry.c
View file @
e16404ed
...
@@ -49,7 +49,7 @@ static int hpfs_compare_dentry(struct dentry *dentry, struct qstr *a, struct qst
...
@@ -49,7 +49,7 @@ static int hpfs_compare_dentry(struct dentry *dentry, struct qstr *a, struct qst
return
0
;
return
0
;
}
}
static
struct
dentry_operations
hpfs_dentry_operations
=
{
static
const
struct
dentry_operations
hpfs_dentry_operations
=
{
.
d_hash
=
hpfs_hash_dentry
,
.
d_hash
=
hpfs_hash_dentry
,
.
d_compare
=
hpfs_compare_dentry
,
.
d_compare
=
hpfs_compare_dentry
,
};
};
...
...
fs/isofs/inode.c
View file @
e16404ed
...
@@ -114,7 +114,7 @@ static const struct super_operations isofs_sops = {
...
@@ -114,7 +114,7 @@ static const struct super_operations isofs_sops = {
};
};
static
struct
dentry_operations
isofs_dentry_ops
[]
=
{
static
const
struct
dentry_operations
isofs_dentry_ops
[]
=
{
{
{
.
d_hash
=
isofs_hash
,
.
d_hash
=
isofs_hash
,
.
d_compare
=
isofs_dentry_cmp
,
.
d_compare
=
isofs_dentry_cmp
,
...
...
fs/ncpfs/dir.c
View file @
e16404ed
...
@@ -79,7 +79,7 @@ static int ncp_hash_dentry(struct dentry *, struct qstr *);
...
@@ -79,7 +79,7 @@ static int ncp_hash_dentry(struct dentry *, struct qstr *);
static
int
ncp_compare_dentry
(
struct
dentry
*
,
struct
qstr
*
,
struct
qstr
*
);
static
int
ncp_compare_dentry
(
struct
dentry
*
,
struct
qstr
*
,
struct
qstr
*
);
static
int
ncp_delete_dentry
(
struct
dentry
*
);
static
int
ncp_delete_dentry
(
struct
dentry
*
);
static
struct
dentry_operations
ncp_dentry_operations
=
static
const
struct
dentry_operations
ncp_dentry_operations
=
{
{
.
d_revalidate
=
ncp_lookup_validate
,
.
d_revalidate
=
ncp_lookup_validate
,
.
d_hash
=
ncp_hash_dentry
,
.
d_hash
=
ncp_hash_dentry
,
...
@@ -87,7 +87,7 @@ static struct dentry_operations ncp_dentry_operations =
...
@@ -87,7 +87,7 @@ static struct dentry_operations ncp_dentry_operations =
.
d_delete
=
ncp_delete_dentry
,
.
d_delete
=
ncp_delete_dentry
,
};
};
struct
dentry_operations
ncp_root_dentry_operations
=
const
struct
dentry_operations
ncp_root_dentry_operations
=
{
{
.
d_hash
=
ncp_hash_dentry
,
.
d_hash
=
ncp_hash_dentry
,
.
d_compare
=
ncp_compare_dentry
,
.
d_compare
=
ncp_compare_dentry
,
...
...
fs/reiserfs/xattr.c
View file @
e16404ed
...
@@ -1136,7 +1136,7 @@ xattr_lookup_poison(struct dentry *dentry, struct qstr *q1, struct qstr *name)
...
@@ -1136,7 +1136,7 @@ xattr_lookup_poison(struct dentry *dentry, struct qstr *q1, struct qstr *name)
return
1
;
return
1
;
}
}
static
struct
dentry_operations
xattr_lookup_poison_ops
=
{
static
const
struct
dentry_operations
xattr_lookup_poison_ops
=
{
.
d_compare
=
xattr_lookup_poison
,
.
d_compare
=
xattr_lookup_poison
,
};
};
...
...
fs/smbfs/dir.c
View file @
e16404ed
...
@@ -277,7 +277,7 @@ static int smb_hash_dentry(struct dentry *, struct qstr *);
...
@@ -277,7 +277,7 @@ static int smb_hash_dentry(struct dentry *, struct qstr *);
static
int
smb_compare_dentry
(
struct
dentry
*
,
struct
qstr
*
,
struct
qstr
*
);
static
int
smb_compare_dentry
(
struct
dentry
*
,
struct
qstr
*
,
struct
qstr
*
);
static
int
smb_delete_dentry
(
struct
dentry
*
);
static
int
smb_delete_dentry
(
struct
dentry
*
);
static
struct
dentry_operations
smbfs_dentry_operations
=
static
const
struct
dentry_operations
smbfs_dentry_operations
=
{
{
.
d_revalidate
=
smb_lookup_validate
,
.
d_revalidate
=
smb_lookup_validate
,
.
d_hash
=
smb_hash_dentry
,
.
d_hash
=
smb_hash_dentry
,
...
@@ -285,7 +285,7 @@ static struct dentry_operations smbfs_dentry_operations =
...
@@ -285,7 +285,7 @@ static struct dentry_operations smbfs_dentry_operations =
.
d_delete
=
smb_delete_dentry
,
.
d_delete
=
smb_delete_dentry
,
};
};
static
struct
dentry_operations
smbfs_dentry_operations_case
=
static
const
struct
dentry_operations
smbfs_dentry_operations_case
=
{
{
.
d_revalidate
=
smb_lookup_validate
,
.
d_revalidate
=
smb_lookup_validate
,
.
d_delete
=
smb_delete_dentry
,
.
d_delete
=
smb_delete_dentry
,
...
...
fs/sysv/namei.c
View file @
e16404ed
...
@@ -38,7 +38,7 @@ static int sysv_hash(struct dentry *dentry, struct qstr *qstr)
...
@@ -38,7 +38,7 @@ static int sysv_hash(struct dentry *dentry, struct qstr *qstr)
return
0
;
return
0
;
}
}
struct
dentry_operations
sysv_dentry_operations
=
{
const
struct
dentry_operations
sysv_dentry_operations
=
{
.
d_hash
=
sysv_hash
,
.
d_hash
=
sysv_hash
,
};
};
...
...
fs/sysv/sysv.h
View file @
e16404ed
...
@@ -170,7 +170,7 @@ extern const struct file_operations sysv_file_operations;
...
@@ -170,7 +170,7 @@ extern const struct file_operations sysv_file_operations;
extern
const
struct
file_operations
sysv_dir_operations
;
extern
const
struct
file_operations
sysv_dir_operations
;
extern
const
struct
address_space_operations
sysv_aops
;
extern
const
struct
address_space_operations
sysv_aops
;
extern
const
struct
super_operations
sysv_sops
;
extern
const
struct
super_operations
sysv_sops
;
extern
struct
dentry_operations
sysv_dentry_operations
;
extern
const
struct
dentry_operations
sysv_dentry_operations
;
enum
{
enum
{
...
...
include/linux/ncp_fs.h
View file @
e16404ed
...
@@ -204,7 +204,7 @@ void ncp_update_inode2(struct inode *, struct ncp_entry_info *);
...
@@ -204,7 +204,7 @@ void ncp_update_inode2(struct inode *, struct ncp_entry_info *);
/* linux/fs/ncpfs/dir.c */
/* linux/fs/ncpfs/dir.c */
extern
const
struct
inode_operations
ncp_dir_inode_operations
;
extern
const
struct
inode_operations
ncp_dir_inode_operations
;
extern
const
struct
file_operations
ncp_dir_operations
;
extern
const
struct
file_operations
ncp_dir_operations
;
extern
struct
dentry_operations
ncp_root_dentry_operations
;
extern
const
struct
dentry_operations
ncp_root_dentry_operations
;
int
ncp_conn_logged_in
(
struct
super_block
*
);
int
ncp_conn_logged_in
(
struct
super_block
*
);
int
ncp_date_dos2unix
(
__le16
time
,
__le16
date
);
int
ncp_date_dos2unix
(
__le16
time
,
__le16
date
);
void
ncp_date_unix2dos
(
int
unix_date
,
__le16
*
time
,
__le16
*
date
);
void
ncp_date_unix2dos
(
int
unix_date
,
__le16
*
time
,
__le16
*
date
);
...
...
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