From: Jens Axboe Date: Tue, 26 Jan 2016 18:19:16 +0000 (-0700) Subject: server: disable pdu length check for now X-Git-Tag: fio-2.6~2 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=9b88d5e9928a27db5476118c02907794c688c232;ds=sidebyside server: disable pdu length check for now Vectored entries don't always honor it. Allow longer payloads, until we fix the breakdown again. Signed-off-by: Jens Axboe --- diff --git a/server.c b/server.c index ab4069c7..02481648 100644 --- a/server.c +++ b/server.c @@ -324,11 +324,6 @@ static int verify_convert_cmd(struct fio_net_cmd *cmd) return 1; } - if (cmd->pdu_len > FIO_SERVER_MAX_FRAGMENT_PDU) { - log_err("fio: command payload too large: %u\n", cmd->pdu_len); - return 1; - } - return 0; }