aboutgitcodebugslistschat
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2025-11-03 11:16:10 +0100
committerStefano Brivio <sbrivio@redhat.com>2025-12-08 04:47:21 +0100
commitb9cd36fa1f306ed2a1cc5c1a0c38ce05202afaaa (patch)
treeb95c973cc8d0fa49e40edeb8098fd3b1a9c6fc9a
parente3e8af7c7b533ec220a769e8dcab22d2c42f647c (diff)
downloadpasst-b9cd36fa1f306ed2a1cc5c1a0c38ce05202afaaa.tar
passt-b9cd36fa1f306ed2a1cc5c1a0c38ce05202afaaa.tar.gz
passt-b9cd36fa1f306ed2a1cc5c1a0c38ce05202afaaa.tar.bz2
passt-b9cd36fa1f306ed2a1cc5c1a0c38ce05202afaaa.tar.lz
passt-b9cd36fa1f306ed2a1cc5c1a0c38ce05202afaaa.tar.xz
passt-b9cd36fa1f306ed2a1cc5c1a0c38ce05202afaaa.tar.zst
passt-b9cd36fa1f306ed2a1cc5c1a0c38ce05202afaaa.zip
udp: Fix coding style for comment to enum udp_iov_idx
...as I'm going to add a new value to it. Fixes: 3f9bd867b585 ("udp: Split tap-bound UDP packets into multiple buffers using io vector") 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--udp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/udp.c b/udp.c
index 4b625b7..b93c18b 100644
--- a/udp.c
+++ b/udp.c
@@ -164,11 +164,11 @@ udp_meta[UDP_MAX_FRAMES];
/**
* enum udp_iov_idx - Indices for the buffers making up a single UDP frame
- * @UDP_IOV_TAP tap specific header
- * @UDP_IOV_ETH Ethernet header
- * @UDP_IOV_IP IP (v4/v6) header
- * @UDP_IOV_PAYLOAD IP payload (UDP header + data)
- * @UDP_NUM_IOVS the number of entries in the iovec array
+ * @UDP_IOV_TAP tap specific header
+ * @UDP_IOV_ETH Ethernet header
+ * @UDP_IOV_IP IP (v4/v6) header
+ * @UDP_IOV_PAYLOAD IP payload (UDP header + data)
+ * @UDP_NUM_IOVS the number of entries in the iovec array
*/
enum udp_iov_idx {
UDP_IOV_TAP,