File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ MODULE_PARM_DESC(pq_sources,
62
62
static int timeout = 3000 ;
63
63
module_param (timeout , uint , S_IRUGO | S_IWUSR );
64
64
MODULE_PARM_DESC (timeout , "Transfer Timeout in msec (default: 3000), "
65
- "Pass 0xFFFFFFFF (4294967295) for maximum timeout" );
65
+ "Pass -1 for infinite timeout" );
66
66
67
67
static bool noverify ;
68
68
module_param (noverify , bool , S_IRUGO | S_IWUSR );
@@ -98,7 +98,7 @@ MODULE_PARM_DESC(transfer_size, "Optional custom transfer size in bytes (default
98
98
* @iterations: iterations before stopping test
99
99
* @xor_sources: number of xor source buffers
100
100
* @pq_sources: number of p+q source buffers
101
- * @timeout: transfer timeout in msec, 0 - 0xFFFFFFFF (4294967295)
101
+ * @timeout: transfer timeout in msec, -1 for infinite timeout
102
102
*/
103
103
struct dmatest_params {
104
104
unsigned int buf_size ;
@@ -109,7 +109,7 @@ struct dmatest_params {
109
109
unsigned int iterations ;
110
110
unsigned int xor_sources ;
111
111
unsigned int pq_sources ;
112
- unsigned int timeout ;
112
+ int timeout ;
113
113
bool noverify ;
114
114
bool norandom ;
115
115
int alignment ;
You can’t perform that action at this time.
0 commit comments