X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ircd%2Fmsgq.c;h=379ffae6a873261e63620d17e8b1a81ff8048e80;hb=refs%2Fheads%2Fupstream;hp=1119214e2d9a1c938bef5c8330c9b49e002f46e4;hpb=fc21303989a07d6091ef684150db29c49f682614;p=ircu2.10.12-pk.git diff --git a/ircd/msgq.c b/ircd/msgq.c index 1119214..379ffae 100644 --- a/ircd/msgq.c +++ b/ircd/msgq.c @@ -258,7 +258,7 @@ msgq_alloc(struct MsgBuf *in_mb, int length) struct MsgBuf *mb; int power; - /* Find the power of two size that will accomodate the message */ + /* Find the power of two size that will accommodate the message */ for (power = MB_BASE_SHIFT; power < MB_MAX_SHIFT + 1; power++) if ((length - 1) >> power == 0) break; @@ -359,10 +359,12 @@ msgq_vmake(struct Client *dest, const char *format, va_list vl) } if (!mb) { /* OK, try killing a client */ kill_highest_sendq(0); /* Don't kill any server connections */ + msgq_clear_freembs(); /* Release whatever was just freelisted */ mb = msgq_alloc(0, BUFSIZE); } if (!mb) { /* hmmm... */ kill_highest_sendq(1); /* Try killing a server connection now */ + msgq_clear_freembs(); /* Clear freelist again */ mb = msgq_alloc(0, BUFSIZE); } if (!mb) /* AIEEEE! */ @@ -564,9 +566,10 @@ msgq_count_memory(struct Client *cptr, size_t *msg_alloc, size_t *msgbuf_alloc) /* Data for Msg's is simple, so just send it */ send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, - ":Msgs allocated %d(%zu) used %d(%zu)", MQData.msgs.alloc, - MQData.msgs.alloc * sizeof(struct Msg), MQData.msgs.used, - MQData.msgs.used * sizeof(struct Msg)); + ":Msgs allocated %d(%zu) used %d(%zu) text %zu", + MQData.msgs.alloc, MQData.msgs.alloc * sizeof(struct Msg), + MQData.msgs.used, MQData.msgs.used * sizeof(struct Msg), + MQData.tot_bufsize); /* count_memory() wants to know the total */ *msg_alloc = MQData.msgs.alloc * sizeof(struct Msg); @@ -614,8 +617,8 @@ msgq_histogram(struct Client *cptr, const struct StatDesc *sd, char *param) send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":Histogram of message lengths (%lu messages)", tmp.msgs); for (i = 0; i + 16 <= BUFSIZE; i += 16) - send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":% 4d: %lu %lu %lu %lu " - "%lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu", i + 1, + send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":% 4d: %u %u %u %u " + "%u %u %u %u %u %u %u %u %u %u %u %u", i + 1, tmp.sizes[i + 0], tmp.sizes[i + 1], tmp.sizes[i + 2], tmp.sizes[i + 3], tmp.sizes[i + 4], tmp.sizes[i + 5], tmp.sizes[i + 6], tmp.sizes[i + 7], tmp.sizes[i + 8],