* somewhere between 1 and 65536 and it depends on the system.
         */
        MAX_SESS_QUEUE_DEPTH = 65536,
+       MIN_CHUNK_SIZE = 8192,
 
        RTRS_HB_INTERVAL_MS = 5000,
        RTRS_HB_MISSED_MAX = 5,
 
                       sess_queue_depth, 1, MAX_SESS_QUEUE_DEPTH);
                return -EINVAL;
        }
-       if (max_chunk_size < 4096 || !is_power_of_2(max_chunk_size)) {
+       if (max_chunk_size < MIN_CHUNK_SIZE || !is_power_of_2(max_chunk_size)) {
                pr_err("Invalid max_chunk_size value %d, has to be >= %d and should be power of two.\n",
-                      max_chunk_size, 4096);
+                      max_chunk_size, MIN_CHUNK_SIZE);
                return -EINVAL;
        }