aboutgitcodebugslistschat
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2024-06-06 20:09:44 +1000
committerStefano Brivio <sbrivio@redhat.com>2024-06-07 20:44:44 +0200
commit7094b91d1085d2262b09abc2be389db0b25bfe8c (patch)
tree54a86ba6763a859167dda2006067bc576dfdea34
parentc80fa6a6bb4415ad48f9e11424310875d0d99bc7 (diff)
downloadpasst-7094b91d1085d2262b09abc2be389db0b25bfe8c.tar
passt-7094b91d1085d2262b09abc2be389db0b25bfe8c.tar.gz
passt-7094b91d1085d2262b09abc2be389db0b25bfe8c.tar.bz2
passt-7094b91d1085d2262b09abc2be389db0b25bfe8c.tar.lz
passt-7094b91d1085d2262b09abc2be389db0b25bfe8c.tar.xz
passt-7094b91d1085d2262b09abc2be389db0b25bfe8c.tar.zst
passt-7094b91d1085d2262b09abc2be389db0b25bfe8c.zip
Remove pointless macro parameters in CALL_PROTO_HANDLER
The 'c' parameter is always passed exactly 'c'. The 'now' parameter is always passed exactly 'now'. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r--passt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/passt.c b/passt.c
index a8c4cd3..dabd86e 100644
--- a/passt.c
+++ b/passt.c
@@ -84,7 +84,7 @@ static_assert(ARRAY_SIZE(epoll_type_str) == EPOLL_NUM_TYPES,
*/
static void post_handler(struct ctx *c, const struct timespec *now)
{
-#define CALL_PROTO_HANDLER(c, now, lc, uc) \
+#define CALL_PROTO_HANDLER(lc, uc) \
do { \
extern void \
lc ## _defer_handler (struct ctx *c) \
@@ -103,9 +103,9 @@ static void post_handler(struct ctx *c, const struct timespec *now)
} while (0)
/* NOLINTNEXTLINE(bugprone-branch-clone): intervals can be the same */
- CALL_PROTO_HANDLER(c, now, tcp, TCP);
+ CALL_PROTO_HANDLER(tcp, TCP);
/* NOLINTNEXTLINE(bugprone-branch-clone): intervals can be the same */
- CALL_PROTO_HANDLER(c, now, udp, UDP);
+ CALL_PROTO_HANDLER(udp, UDP);
flow_defer_handler(c, now);
#undef CALL_PROTO_HANDLER