[Accel-config] [PATCH v1 1/1] accel-config/test: Fix description timeout calculation to overflow

Tony Zhu <tony.zhu at intel.com> Thu, 28 Apr 2022 09:31:30 +0800
Newsgroups dev.linux.lists.accel-config
Message-ID <[email protected]>
Dsa_test application will fail when when utilizing memory sizes larger
than 128MiB against multiple devices. The init of timeout should use
the input msec_timeout.

Signed-off-by: Tony Zhu <tony.zhu(a)intel.com>
---
 test/accel_test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/accel_test.c b/test/accel_test.c
index 8487099..0468a00 100644
--- a/test/accel_test.c
+++ b/test/accel_test.c
@@ -331,7 +331,7 @@ int acctest_wait_on_desc_timeout(struct completion_record *comp,
 			j++;
 		}
 	} else {
-		unsigned long timeout = (ms_timeout * 1000000) * 3;
+		unsigned long timeout = (msec_timeout * 1000000ul) * 3;
 		int r = 1;
 		unsigned long t = 0;
 
-- 
2.27.0