From: Jens Axboe Date: Tue, 27 Oct 2015 08:44:01 +0000 (+0900) Subject: Unbreak output buffer logging over the network X-Git-Tag: fio-2.2.11~10 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=ee92054faa594769a9c2afbaec9683f8fc508986;ds=sidebyside Unbreak output buffer logging over the network log_local_buf() is for the server to log locally, use log_info_buf() to log over the specified channel. Signed-off-by: Jens Axboe --- diff --git a/lib/output_buffer.c b/lib/output_buffer.c index da708747..03cd848b 100644 --- a/lib/output_buffer.c +++ b/lib/output_buffer.c @@ -39,7 +39,7 @@ size_t buf_output_flush(struct buf_output *out) size_t ret = 0; if (out->buflen) { - ret = log_local_buf(out->buf, out->buflen); + ret = log_info_buf(out->buf, out->buflen); memset(out->buf, 0, out->max_buflen); out->buflen = 0; }