9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] 9pserv leaking?
@ 2005-10-01 19:24 erik quanstrom
  2005-10-02 14:52 ` Russ Cox
  0 siblings, 1 reply; 3+ messages in thread
From: erik quanstrom @ 2005-10-01 19:24 UTC (permalink / raw)
  To: 9fans

; ps auxwww | grep 9pserv
quanstro  4432  0.0  0.4 137036  1140 tty1     Sl   Sep17   0:42 9pserve -u unix!/tmp/ns.quanstro.:0/plumb
quanstro 19386  0.2  0.2  84180   760 pts/32   Sl   14:09   0:00 9pserve -u unix!/tmp/ns.quanstro.:0/acme
quanstro 19453  0.0  0.1   1524   500 pts/4    S+   14:10   0:00 grep 9pserv


i looked into this the other day, but didn't get very far.
the only thing i did notice is that in sendq() the allocated
bytes for the Qel* are not freed if q->hungup:

int
sendq(Queue *q, void *p)
{
	Qel *e;

	e = emalloc(sizeof(Qel));
	qlock(&q->lk);
	if(q->hungup){
		werrstr("hungup queue");
		qunlock(&q->lk);
		return -1;
	}
[...]

any ideas?

erik


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-10-05 12:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-10-01 19:24 [9fans] 9pserv leaking? erik quanstrom
2005-10-02 14:52 ` Russ Cox
2005-10-05 12:17   ` erik quanstrom

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).