:> hmm.. ok, there are some subsystems using sbuf's: :>=20 :> linprocfs :> procfs :> pseudofs :>=20 :> I think someone may have broken something in pseudofs, procfs, :> and/or linprocfs that is causing the VFS cache and sbuf MALLOC :> area to run away. :>=20 :> Anybody have any ideas? : :This certainly appear to be the case. I've unmounted procfs and :linprocfs and I've got an uptime of 5 hours now. Result! :) : :Joe
Excellent! Can you narrow the problem down further, to either procfs or linprocfs? I think I *may* have found it. Or at least I've found one error. There could be more: void sbuf_delete(struct sbuf *s) { assert_sbuf_integrity(s); /* don't care if it's finished or not */ if (SBUF_ISDYNAMIC(s)) SBFREE(s->s_buf); bzero(s, sizeof *s); if (SBUF_ISDYNSTRUCT(s)) SBFREE(s); } The structure is being bzero()'d before its dynamic flag gets checked. I've included a patch below. Josef, I would appreciate it if you would apply the patch and try your system with the various procfs devices mounted again. It's an obvious bug so I'm comitting it to -current now, the question is: Is it the *only* bug? -Matt Index: kern/subr_sbuf.c =================================================================== RCS file: /home/ncvs/src/sys/kern/subr_sbuf.c,v retrieving revision 1.13 diff -u -r1.13 subr_sbuf.c --- kern/subr_sbuf.c 10 Dec 2001 05:51:45 -0000 1.13 +++ kern/subr_sbuf.c 19 Dec 2001 19:01:26 -0000 @@ -461,12 +461,15 @@ void sbuf_delete(struct sbuf *s) { + int isdyn; + assert_sbuf_integrity(s); /* don't care if it's finished or not */ if (SBUF_ISDYNAMIC(s)) SBFREE(s->s_buf); + isdyn = SBUF_ISDYNSTRUCT(s); bzero(s, sizeof *s); - if (SBUF_ISDYNSTRUCT(s)) + if (isdyn) SBFREE(s); } To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message