summaryrefslogtreecommitdiffstats
path: root/fs/befs/linuxvfs.c
diff options
context:
space:
mode:
authorAl Viro2016-05-10 20:24:06 +0200
committerAl Viro2016-05-10 20:24:06 +0200
commit22341d8f33084c575ce5b7ea63b07d7290b68e2d (patch)
tree7366752dec4d59fd15b25a9f56ea09cd78c023e9 /fs/befs/linuxvfs.c
parentisofs: switch to ->iterate_shared() (diff)
downloadkernel-qcow2-linux-22341d8f33084c575ce5b7ea63b07d7290b68e2d.tar.gz
kernel-qcow2-linux-22341d8f33084c575ce5b7ea63b07d7290b68e2d.tar.xz
kernel-qcow2-linux-22341d8f33084c575ce5b7ea63b07d7290b68e2d.zip
befs: constify stuff a bit
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/befs/linuxvfs.c')
-rw-r--r--fs/befs/linuxvfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
index cc0e08252913..f168bc8f6212 100644
--- a/fs/befs/linuxvfs.c
+++ b/fs/befs/linuxvfs.c
@@ -157,7 +157,7 @@ befs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
{
struct inode *inode = NULL;
struct super_block *sb = dir->i_sb;
- befs_data_stream *ds = &BEFS_I(dir)->i_data.ds;
+ const befs_data_stream *ds = &BEFS_I(dir)->i_data.ds;
befs_off_t offset;
int ret;
int utfnamelen;
@@ -207,7 +207,7 @@ befs_readdir(struct file *file, struct dir_context *ctx)
{
struct inode *inode = file_inode(file);
struct super_block *sb = inode->i_sb;
- befs_data_stream *ds = &BEFS_I(inode)->i_data.ds;
+ const befs_data_stream *ds = &BEFS_I(inode)->i_data.ds;
befs_off_t value;
int result;
size_t keysize;