summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarlos Maiolino <cmaiolino@redhat.com>2017-01-03 20:34:17 -0800
committerDarrick J. Wong <darrick.wong@oracle.com>2017-01-03 20:34:17 -0800
commitff97f2399edac1e0fb3fa7851d5fbcbdf04717cf (patch)
tree31e3a2c58fc6abbd933dd44403f172724aa4f834
parent721a0edfbe1f302b93274ce75e0d62843ca63e0d (diff)
downloadlinux-ff97f2399edac1e0fb3fa7851d5fbcbdf04717cf.tar.gz
linux-ff97f2399edac1e0fb3fa7851d5fbcbdf04717cf.tar.xz
xfs: fix max_retries _show and _store functions
max_retries _show and _store functions should test against cfg->max_retries, not cfg->retry_timeout Signed-off-by: Carlos Maiolino <cmaiolino@redhat.com> Reviewed-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
-rw-r--r--fs/xfs/xfs_sysfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_sysfs.c b/fs/xfs/xfs_sysfs.c
index 276d3023d60f..de6195e38910 100644
--- a/fs/xfs/xfs_sysfs.c
+++ b/fs/xfs/xfs_sysfs.c
@@ -396,7 +396,7 @@ max_retries_show(
int retries;
struct xfs_error_cfg *cfg = to_error_cfg(kobject);
- if (cfg->retry_timeout == XFS_ERR_RETRY_FOREVER)
+ if (cfg->max_retries == XFS_ERR_RETRY_FOREVER)
retries = -1;
else
retries = cfg->max_retries;
@@ -422,7 +422,7 @@ max_retries_store(
return -EINVAL;
if (val == -1)
- cfg->retry_timeout = XFS_ERR_RETRY_FOREVER;
+ cfg->max_retries = XFS_ERR_RETRY_FOREVER;
else
cfg->max_retries = val;
return count;