diff options
| author | Hans Petter Selasky <hselasky@FreeBSD.org> | 2017-11-23 13:57:44 +0000 |
|---|---|---|
| committer | Hans Petter Selasky <hselasky@FreeBSD.org> | 2017-11-23 13:57:44 +0000 |
| commit | 9ac7c5a64ca5728ea0ed15fc3c191695938f226d (patch) | |
| tree | 87475c8e84583d18aa13ca91a277cb0d59d1b7b6 /sys/dev/iser | |
| parent | dd62bb6aeb3d35f252bd6c51a0039d158dbee54e (diff) | |
Notes
Diffstat (limited to 'sys/dev/iser')
| -rw-r--r-- | sys/dev/iser/icl_iser.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/iser/icl_iser.c b/sys/dev/iser/icl_iser.c index bd65077ab7a7..226177af4ffd 100644 --- a/sys/dev/iser/icl_iser.c +++ b/sys/dev/iser/icl_iser.c @@ -486,7 +486,11 @@ iser_conn_task_done(struct icl_conn *ic, void *prv) static int iser_limits(struct icl_drv_limits *idl) { + idl->idl_max_recv_data_segment_length = 128 * 1024; + idl->idl_max_send_data_segment_length = 128 * 1024; + idl->idl_max_burst_length = 262144; + idl->idl_first_burst_length = 65536; return (0); } |
