[openib-general] [PATCH] rping: Erroneous check for minumum ping buffer size
Pradipta Kumar Banerjee
bpradip at in.ibm.com
Sat Jun 10 10:34:27 PDT 2006
This includes the changes suggested by Tom.
Signed-off-by: Pradipta Kumar Banerjee <bpradipt at in.ibm.com>
---
Index: rping.c
=================================================================
--- rping.org 2006-06-09 10:57:43.000000000 +0530
+++ rping.c.new 2006-06-10 22:48:53.000000000 +0530
@@ -96,6 +96,15 @@ struct rping_rdma_info {
#define RPING_BUFSIZE 64*1024
#define RPING_SQ_DEPTH 16
+/* Default string for print data and
+ * minimum buffer size
+ */
+#define _stringify( _x ) # _x
+#define stringify( _x ) _stringify( _x )
+
+#define RPING_MSG_FMT "rdma-ping-%d: "
+#define RPING_MIN_BUFSIZE sizeof(stringify(INT_MAX)) + sizeof(RPING_MSG_FMT)
+
/*
* Control block struct.
*/
@@ -774,7 +783,7 @@ static void rping_test_client(struct rpi
cb->state = RDMA_READ_ADV;
/* Put some ascii text in the buffer. */
- cc = sprintf(cb->start_buf, "rdma-ping-%d: ", ping);
+ cc = sprintf(cb->start_buf, RPING_MSG_FMT, ping);
for (i = cc, c = start; i < cb->size; i++) {
cb->start_buf[i] = c;
c++;
@@ -977,11 +986,11 @@ int main(int argc, char *argv[])
break;
case 'S':
cb->size = atoi(optarg);
- if ((cb->size < 1) ||
+ if ((cb->size < RPING_MIN_BUFSIZE) ||
(cb->size > (RPING_BUFSIZE - 1))) {
fprintf(stderr, "Invalid size %d "
- "(valid range is 1 to %d)\n",
- cb->size, RPING_BUFSIZE);
+ "(valid range is %d to %d)\n",
+ cb->size, RPING_MIN_BUFSIZE, RPING_BUFSIZE);
ret = EINVAL;
} else
DEBUG_LOG("size %d\n", (int) atoi(optarg));
More information about the general
mailing list