From 4d735aaf77c1f059cede7688678cbab9efc9ab83 Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Wed, 4 Jun 2014 01:54:21 +0000 Subject: [PATCH] Decrease max WRITE SAME length for better latencies git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@5562 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/src/scst_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scst/src/scst_main.c b/scst/src/scst_main.c index 867e7f6b5..ef0b82989 100644 --- a/scst/src/scst_main.c +++ b/scst/src/scst_main.c @@ -2089,7 +2089,7 @@ assign: dev->threads_num = handler->threads_num; dev->threads_pool_type = handler->threads_pool_type; - dev->max_write_same_len = 512 * 1024 * 1024; /* 512 MB */ + dev->max_write_same_len = 256 * 1024 * 1024; /* 256 MB */ if (handler->attach) { TRACE_DBG("Calling new dev handler's attach(%p)", dev);