diff options
| author | Stefano Brivio <sbrivio@redhat.com> | 2025-11-03 11:16:09 +0100 |
|---|---|---|
| committer | Stefano Brivio <sbrivio@redhat.com> | 2025-12-08 04:47:16 +0100 |
| commit | e3e8af7c7b533ec220a769e8dcab22d2c42f647c (patch) | |
| tree | 98ad4f60584eb2fb2bc05a33a5fa8e1d34d563e9 | |
| parent | 1e519715240eb8b7ca5ae1b1b0a796a337aa1620 (diff) | |
| download | passt-e3e8af7c7b533ec220a769e8dcab22d2c42f647c.tar passt-e3e8af7c7b533ec220a769e8dcab22d2c42f647c.tar.gz passt-e3e8af7c7b533ec220a769e8dcab22d2c42f647c.tar.bz2 passt-e3e8af7c7b533ec220a769e8dcab22d2c42f647c.tar.lz passt-e3e8af7c7b533ec220a769e8dcab22d2c42f647c.tar.xz passt-e3e8af7c7b533ec220a769e8dcab22d2c42f647c.tar.zst passt-e3e8af7c7b533ec220a769e8dcab22d2c42f647c.zip | |
tcp: Fix coding style for comment to enum tcp_iov_parts
...as I'm going to add a new value to it.
Fixes: 95601237ef82 ("tcp: Replace TCP buffer structure by an iovec array")
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Laurent Vivier <lvivier@redhat.com>
| -rw-r--r-- | tcp_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcp_internal.h b/tcp_internal.h index f55025c..19e8922 100644 --- a/tcp_internal.h +++ b/tcp_internal.h @@ -57,7 +57,7 @@ #define CONN_V4(conn) (!!inany_v4(&TAPFLOW(conn)->oaddr)) #define CONN_V6(conn) (!CONN_V4(conn)) -/* +/** * enum tcp_iov_parts - I/O vector parts for one TCP frame * @TCP_IOV_TAP tap backend specific header * @TCP_IOV_ETH Ethernet header |
