From 8788812e996dedad65fc0d529555a972aa661dfb Mon Sep 17 00:00:00 2001 From: isaac Date: Wed, 4 Mar 2009 04:34:51 +0000 Subject: [PATCH] - corrected a chunk misplaced by fuzzy patching. --- lnet/ulnds/ptllnd/ptllnd.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/lnet/ulnds/ptllnd/ptllnd.c b/lnet/ulnds/ptllnd/ptllnd.c index b0ed0ce..c0fc41a 100644 --- a/lnet/ulnds/ptllnd/ptllnd.c +++ b/lnet/ulnds/ptllnd/ptllnd.c @@ -292,9 +292,8 @@ ptllnd_get_tunables(lnet_ni_t *ni) "PTLLND_PEERCREDITS", PTLLND_PEERCREDITS); if (rc != 0) return rc; - /* kptl_msg_t::ptlm_credits is only a __u8 */ - if (plni->plni_peer_credits > 255) { - CERROR("PTLLND_PEERCREDITS must be <= 255\n"); + if (plni->plni_peer_credits > PTLLND_MSG_MAX_CREDITS) { + CERROR("PTLLND_PEERCREDITS must be <= %d\n", PTLLND_MSG_MAX_CREDITS); return -EINVAL; } @@ -303,10 +302,6 @@ ptllnd_get_tunables(lnet_ni_t *ni) PTLLND_MAX_ULND_MSG_SIZE); if (rc != 0) return rc; - if (plni->plni_peer_credits > PTLLND_MSG_MAX_CREDITS) { - CERROR("PTLLND_PEERCREDITS must be <= %d\n", PTLLND_MSG_MAX_CREDITS); - return -EINVAL; - } rc = ptllnd_parse_int_tunable(&msgs_per_buffer, "PTLLND_MSGS_PER_BUFFER", 64); -- 1.8.3.1