Re: FreeBSD and MySQL - mysqld eats CPU alive

2004-08-04 Thread Peter Schuller
> I've experienced this exact problem, all the way from 4.4-STABLE as well. > The time period where the issue starts happening is very erradic, but I'm > having the exact issue on one of my servers at this very moment. I thought > it was just an issue with my box, and not anyone elses. I've seen t

Compiling Kernel Module with Current Kernel Options

2004-08-04 Thread cd_freebsd
I have an SMP machine, so after installing the GENERIC version of FreeBSD 4.7, I created my own version of the kernel that included SMP support and DDB. Being a device driver writer, I created my Makefile just as perscribed, but when I compiled my code, the SMP define was not set. It appears tha

Re: One OR MORE of source and destination addresses?

2004-08-04 Thread Bill Moran
Mark <[EMAIL PROTECTED]> wrote: > Mark wrote: > > > Bill Moran wrote: > > > >> How about using skipto instead of allow? Thus, if it passes the > >> first one, it can just skipto the next rule to be checked. i.e.: > >> > >> ipfw add 11 skipto 12 tcp from any to me 25 setup limit dst-addr 32 > >>

RE: One OR MORE of source and destination addresses?

2004-08-04 Thread Ralph Hempel
> I just took a look at the code: > > if (q != NULL) { /* should never occur */ > if (last_log != time_second) { >last_log = time_second; >printf("ipfw: install_state: entry already present, done\n"); > } > return 0; > } > > What if I just hack the "printf ..." line out of there?