fs/hugetlbfs/inode.c: use static const for dentry_operations

...like other filesystems.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Fabian Frederick 2014-06-04 16:10:39 -07:00 committed by Linus Torvalds
parent 422b2448fc
commit be1d2cf5e3
1 changed files with 1 additions and 1 deletions

View File

@ -938,7 +938,7 @@ static int get_hstate_idx(int page_size_log)
return h - hstates;
}
static struct dentry_operations anon_ops = {
static const struct dentry_operations anon_ops = {
.d_dname = simple_dname
};