Skip to content

Commit

Permalink
Revert "orangefs: bump minimum userspace version"
Browse files Browse the repository at this point in the history
The features op did make it into OrangeFS 2.9.6 after all.

This reverts commit 0c95ad7.
  • Loading branch information
hubcapsc committed Oct 3, 2016
1 parent 5891b4f commit f60fbdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/orangefs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ int orangefs_remount(struct orangefs_sb_info_s *orangefs_sb)

op_release(new_op);

if (orangefs_userspace_version >= 20907) {
if (orangefs_userspace_version >= 20906) {
new_op = op_alloc(ORANGEFS_VFS_OP_FEATURES);
if (!new_op)
return -ENOMEM;
Expand Down Expand Up @@ -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 >= 20907) {
if (orangefs_userspace_version >= 20906) {
new_op = op_alloc(ORANGEFS_VFS_OP_FEATURES);
if (!new_op)
return ERR_PTR(-ENOMEM);
Expand Down

0 comments on commit f60fbdb

Please sign in to comment.