From 9b5f5cf168da25ea6fac4d50c5deee1b61a8e63b Mon Sep 17 00:00:00 2001 From: hi-rajat-kumar Date: Mon, 29 Sep 2025 09:22:57 +0530 Subject: [PATCH] Revert "add --reuseaddr to rr binaries" --- define_all_flags.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/define_all_flags.c b/define_all_flags.c index 3387ecf..cf9ea82 100644 --- a/define_all_flags.c +++ b/define_all_flags.c @@ -93,9 +93,8 @@ struct flags_parser *add_flags_rr(struct flags_parser *fp) DEFINE_FLAG(fp, struct percentiles, percentiles, {}, 'p', "Set reported latency percentiles (list)"); DEFINE_FLAG_PARSER(fp, percentiles, percentiles_parse); DEFINE_FLAG_PRINTER(fp, percentiles, percentiles_print); - DEFINE_FLAG(fp, int, test_length, 10, 'l', "Test length, >0 seconds, <0 transactions"); - DEFINE_FLAG(fp, int, buffer_size, 65536, 'B', "Number of bytes that each read()/send() can transfer at once"); - DEFINE_FLAG(fp, bool, reuseaddr, false, 'R', "Use SO_REUSEADDR on sockets"); + DEFINE_FLAG(fp, int, test_length, 10, 'l', "Test length, >0 seconds, <0 transactions"); + DEFINE_FLAG(fp, int, buffer_size, 65536, 'B', "Number of bytes that each read()/send() can transfer at once"); /* Return the updated fp */ return (fp);