diff options
author | Nicholas Mc Guire <hofrat@osadl.org> | 2016-08-22 18:51:36 +0200 |
---|---|---|
committer | Jon Mason <jdmason@kudzu.us> | 2016-11-13 16:48:29 -0500 |
commit | cdc08982a5f334cecc15d802464588115512cc36 (patch) | |
tree | e3ace761f166c89620d7849e0c0ce6c0be9f2c3a /drivers/ntb/test | |
parent | c0a88032ef8e6814d4dd84551e5f333c1de639b3 (diff) | |
download | linux-stable-cdc08982a5f334cecc15d802464588115512cc36.tar.gz linux-stable-cdc08982a5f334cecc15d802464588115512cc36.tar.bz2 linux-stable-cdc08982a5f334cecc15d802464588115512cc36.zip |
ntb: make DMA_OUT_RESOURCE_TO HZ independent
schedule_timeout_* takes a timeout in jiffies but the code currently is
passing in a constant which makes this timeout HZ dependent, so pass it
through msecs_to_jiffies() to fix this up.
Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
Acked-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Diffstat (limited to 'drivers/ntb/test')
-rw-r--r-- | drivers/ntb/test/ntb_perf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ntb/test/ntb_perf.c b/drivers/ntb/test/ntb_perf.c index 6a50f20bf1cd..e065b695200d 100644 --- a/drivers/ntb/test/ntb_perf.c +++ b/drivers/ntb/test/ntb_perf.c @@ -72,7 +72,7 @@ #define MAX_THREADS 32 #define MAX_TEST_SIZE SZ_1M #define MAX_SRCS 32 -#define DMA_OUT_RESOURCE_TO 50 +#define DMA_OUT_RESOURCE_TO msecs_to_jiffies(50) #define DMA_RETRIES 20 #define SZ_4G (1ULL << 32) #define MAX_SEG_ORDER 20 /* no larger than 1M for kmalloc buffer */ |