Loading arch/ia64/kernel/perfmon.c +1 −1 Original line number Diff line number Diff line Loading @@ -2196,7 +2196,7 @@ pfmfs_delete_dentry(struct dentry *dentry) return 1; } static struct dentry_operations pfmfs_dentry_operations = { static const struct dentry_operations pfmfs_dentry_operations = { .d_delete = pfmfs_delete_dentry, }; Loading fs/anon_inodes.c +1 −1 Original line number Diff line number Diff line Loading @@ -48,7 +48,7 @@ static struct file_system_type anon_inode_fs_type = { .get_sb = anon_inodefs_get_sb, .kill_sb = kill_anon_super, }; static struct dentry_operations anon_inodefs_dentry_operations = { static const struct dentry_operations anon_inodefs_dentry_operations = { .d_delete = anon_inodefs_delete_dentry, }; Loading fs/libfs.c +1 −1 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ static int simple_delete_dentry(struct dentry *dentry) */ struct dentry *simple_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd) { static struct dentry_operations simple_dentry_operations = { static const struct dentry_operations simple_dentry_operations = { .d_delete = simple_delete_dentry, }; Loading fs/pipe.c +1 −1 Original line number Diff line number Diff line Loading @@ -870,7 +870,7 @@ static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen) dentry->d_inode->i_ino); } static struct dentry_operations pipefs_dentry_operations = { static const struct dentry_operations pipefs_dentry_operations = { .d_delete = pipefs_delete_dentry, .d_dname = pipefs_dname, }; Loading kernel/cgroup.c +1 −1 Original line number Diff line number Diff line Loading @@ -1627,7 +1627,7 @@ static struct inode_operations cgroup_dir_inode_operations = { static int cgroup_create_file(struct dentry *dentry, int mode, struct super_block *sb) { static struct dentry_operations cgroup_dops = { static const struct dentry_operations cgroup_dops = { .d_iput = cgroup_diput, }; Loading Loading
arch/ia64/kernel/perfmon.c +1 −1 Original line number Diff line number Diff line Loading @@ -2196,7 +2196,7 @@ pfmfs_delete_dentry(struct dentry *dentry) return 1; } static struct dentry_operations pfmfs_dentry_operations = { static const struct dentry_operations pfmfs_dentry_operations = { .d_delete = pfmfs_delete_dentry, }; Loading
fs/anon_inodes.c +1 −1 Original line number Diff line number Diff line Loading @@ -48,7 +48,7 @@ static struct file_system_type anon_inode_fs_type = { .get_sb = anon_inodefs_get_sb, .kill_sb = kill_anon_super, }; static struct dentry_operations anon_inodefs_dentry_operations = { static const struct dentry_operations anon_inodefs_dentry_operations = { .d_delete = anon_inodefs_delete_dentry, }; Loading
fs/libfs.c +1 −1 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ static int simple_delete_dentry(struct dentry *dentry) */ struct dentry *simple_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd) { static struct dentry_operations simple_dentry_operations = { static const struct dentry_operations simple_dentry_operations = { .d_delete = simple_delete_dentry, }; Loading
fs/pipe.c +1 −1 Original line number Diff line number Diff line Loading @@ -870,7 +870,7 @@ static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen) dentry->d_inode->i_ino); } static struct dentry_operations pipefs_dentry_operations = { static const struct dentry_operations pipefs_dentry_operations = { .d_delete = pipefs_delete_dentry, .d_dname = pipefs_dname, }; Loading
kernel/cgroup.c +1 −1 Original line number Diff line number Diff line Loading @@ -1627,7 +1627,7 @@ static struct inode_operations cgroup_dir_inode_operations = { static int cgroup_create_file(struct dentry *dentry, int mode, struct super_block *sb) { static struct dentry_operations cgroup_dops = { static const struct dentry_operations cgroup_dops = { .d_iput = cgroup_diput, }; Loading