summaryrefslogtreecommitdiffstats
path: root/fs/orangefs/super.c
diff options
context:
space:
mode:
authorMartin Brandenburg2016-03-18 18:36:45 +0100
committerMike Marshall2016-03-23 22:36:15 +0100
commit05d31c5cb34cbdf05f9326b276be03756abb4b70 (patch)
tree837b869658aa0e8fd283b8728e7e5775d42921ef /fs/orangefs/super.c
parentorangefs: remove wrapper around mutex_lock(&inode->i_mutex) (diff)
downloadkernel-qcow2-linux-05d31c5cb34cbdf05f9326b276be03756abb4b70.tar.gz
kernel-qcow2-linux-05d31c5cb34cbdf05f9326b276be03756abb4b70.tar.xz
kernel-qcow2-linux-05d31c5cb34cbdf05f9326b276be03756abb4b70.zip
orangefs: remove needless wrapper around GFP_KERNEL
Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/super.c')
-rw-r--r--fs/orangefs/super.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/orangefs/super.c b/fs/orangefs/super.c
index eac24eb7fe80..1eeb0093b62c 100644
--- a/fs/orangefs/super.c
+++ b/fs/orangefs/super.c
@@ -360,8 +360,7 @@ static int orangefs_fill_sb(struct super_block *sb,
struct orangefs_object_kref root_object;
/* alloc and init our private orangefs sb info */
- sb->s_fs_info =
- kzalloc(sizeof(struct orangefs_sb_info_s), ORANGEFS_GFP_FLAGS);
+ sb->s_fs_info = kzalloc(sizeof(struct orangefs_sb_info_s), GFP_KERNEL);
if (!ORANGEFS_SB(sb))
return -ENOMEM;
ORANGEFS_SB(sb)->sb = sb;