[Accel-config] [PATCH v1 02/11] accel-config/test: Modify max_transfer_size in config file
Li Zhang <li4.zhang at intel.com> Tue, 17 May 2022 18:48:24 +0800
| Newsgroups | dev.linux.lists.accel-config |
|---|---|
| Message-ID | <[email protected]> |
In config file, modify max_transfer_size from 2097152 to 4194304,
because when the input data of Zcompress doesn't has any 0 field
and the input size is close to 2097152, it may cause destination
size overflow.
Signed-off-by: Li Zhang <li4.zhang(a)intel.com>
---
test/configs/2g2q_user_2.conf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/configs/2g2q_user_2.conf b/test/configs/2g2q_user_2.conf
index 704c4f1..9b1e922 100644
--- a/test/configs/2g2q_user_2.conf
+++ b/test/configs/2g2q_user_2.conf
@@ -19,7 +19,7 @@
"group_id":1,
"priority":10,
"block_on_fault":0,
- "max_transfer_size":2097152,
+ "max_transfer_size":4194304,
"type":"user",
"name":"wq1.1",
"driver_name":"user",
@@ -46,7 +46,7 @@
"group_id":2,
"priority":10,
"block_on_fault":0,
- "max_transfer_size":2097152,
+ "max_transfer_size":4194304,
"type":"user",
"name":"wq1.4",
"driver_name":"user",
--
2.25.1