summaryrefslogtreecommitdiffstats
path: root/fs/orangefs/super.c
diff options
context:
space:
mode:
authorMartin Brandenburg2016-09-21 18:37:23 +0200
committerMartin Brandenburg2016-09-21 18:37:23 +0200
commit0c95ad76361f1d75a1ffdf82deafbcec44d19c42 (patch)
treebe66f4beb9de1b2fecbf1e59950fe714184c8ecb /fs/orangefs/super.c
parentorangefs: do not allow client readahead cache without feature bit (diff)
downloadkernel-qcow2-linux-0c95ad76361f1d75a1ffdf82deafbcec44d19c42.tar.gz
kernel-qcow2-linux-0c95ad76361f1d75a1ffdf82deafbcec44d19c42.tar.xz
kernel-qcow2-linux-0c95ad76361f1d75a1ffdf82deafbcec44d19c42.zip
orangefs: bump minimum userspace version
OrangeFS 2.9.6 was released without support for the features op. Thus OrangeFS 2.9.7 will be required to use it. Signed-off-by: Martin Brandenburg <martin@omnibond.com>
Diffstat (limited to 'fs/orangefs/super.c')
-rw-r--r--fs/orangefs/super.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/orangefs/super.c b/fs/orangefs/super.c
index 3e484a667340..b4ab1c1e8278 100644
--- a/fs/orangefs/super.c
+++ b/fs/orangefs/super.c
@@ -251,7 +251,7 @@ int orangefs_remount(struct orangefs_sb_info_s *orangefs_sb)
op_release(new_op);
- if (orangefs_userspace_version >= 20906) {
+ if (orangefs_userspace_version >= 20907) {
new_op = op_alloc(ORANGEFS_VFS_OP_FEATURES);
if (!new_op)
return -ENOMEM;
@@ -507,7 +507,7 @@ struct dentry *orangefs_mount(struct file_system_type *fst,
spin_unlock(&orangefs_superblocks_lock);
op_release(new_op);
- if (orangefs_userspace_version >= 20906) {
+ if (orangefs_userspace_version >= 20907) {
new_op = op_alloc(ORANGEFS_VFS_OP_FEATURES);
if (!new_op)
return ERR_PTR(-ENOMEM);