From 4c0b2d16844fc8e132b5558643e2249722f14be1 Mon Sep 17 00:00:00 2001 From: Ben Walker Date: Wed, 5 Apr 2023 13:10:29 -0700 Subject: [PATCH] util/pipe: Fix documentation on spdk_pipe_create The pipe can now be entirely filled Change-Id: Ib3ec7057224c9239800c1f2877f0441d29c64374 Signed-off-by: Ben Walker Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17506 Reviewed-by: Jim Harris Tested-by: SPDK CI Jenkins Community-CI: Mellanox Build Bot Reviewed-by: Aleksey Marchuk --- include/spdk/pipe.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/spdk/pipe.h b/include/spdk/pipe.h index 3de8bcd79..d09c276b5 100644 --- a/include/spdk/pipe.h +++ b/include/spdk/pipe.h @@ -23,9 +23,6 @@ struct spdk_pipe; * Construct a pipe around the given memory buffer. The pipe treats the memory * buffer as a circular ring of bytes. * - * The available size for writing will be one less byte than provided. A single - * byte must be reserved to distinguish queue full from queue empty conditions. - * * \param buf The data buffer that backs this pipe. * \param sz The size of the data buffer. *