git » nmdb » commit 9e6762d

Fix bogus comment in udp.c

author Alberto Bertogli
2007-06-10 09:24:35 UTC
committer Alberto Bertogli
2007-06-10 09:24:35 UTC
parent acdce0911bfad42f580a28be2347b4dcd9ce973f

Fix bogus comment in udp.c

The comment was copied from tipc.c, it shouldn't be exactly the same one
because numbers are different.

Signed-off-by: Alberto Bertogli <albertito@gmail.com>

nmdb/udp.c +2 -5

diff --git a/nmdb/udp.c b/nmdb/udp.c
index 7f69bdb..29cb789 100644
--- a/nmdb/udp.c
+++ b/nmdb/udp.c
@@ -193,11 +193,8 @@ void udp_close(int fd)
 }
 
 
-/* Static common buffer to avoid unnecessary allocations.
- * Originally, this was malloc()ed, but making it static made it go from 27
- * usec for each set operation, to 23 usec: it made test1 go from 3.213s to
- * 2.345s for 37618 operations.
- * Allocate enough to hold the max msg length of 64kbytes. */
+/* Static common buffer to avoid unnecessary allocations. See the comments on
+ * this same variable in tipc.c. */
 #define SBSIZE (68 * 1024)
 static unsigned char static_buf[SBSIZE];