f2fs: super: constify fscrypt_operations structure
commit2ad0ef846b38288103d8373d1196c465df2c4d7d
authorBhumika Goyal <bhumirks@gmail.com>
Sat, 11 Feb 2017 10:20:46 +0000 (11 15:50 +0530)
committerJaegeuk Kim <jaegeuk@kernel.org>
Thu, 23 Feb 2017 18:10:51 +0000 (23 10:10 -0800)
tree45bf665c840bd1146afa374ab2341d184b427e39
parent1200abb26f8287e723e79e134b66d0041c095b73
f2fs: super: constify fscrypt_operations structure

Declare fscrypt_operations structure as const as it is only stored in
the s_cop field of a super_block structure. This field is of type const,
so fscrypt_operations structure having this property can be made const
too.

File size before: fs/f2fs/super.o
   text    data     bss     dec     hex filename
  54131   31355     184   85670   14ea6 fs/f2fs/super.o

File size after: fs/f2fs/super.o
   text    data     bss     dec     hex filename
  54227   31259     184   85670   14ea6 fs/f2fs/super.o

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/super.c