NET.ISR and CPU utilization performance w/ HP DL 585 using FreeBSD 7.1 Beta2

2008-11-15 Thread Won De Erick
Hello, I tested HP DL 585 (16 CPUs, w/ built-in Broadcom NICs) running FreeBSD 7.1 Beta2 under heavy network traffic (TCP). SCENARIO A : Bombarded w/ TCP traffic: When net.isr.direct=1, PID USERNAME THR PRI NICE SIZERES STATE C TIME WCPU COMMAND 52 root1 -68-

Re: NET.ISR and CPU utilization performance w/ HP DL 585 using FreeBSD 7.1 Beta2

2008-11-15 Thread Jeremy Chadwick
On Sat, Nov 15, 2008 at 04:59:16AM -0800, Won De Erick wrote: Hello, I tested HP DL 585 (16 CPUs, w/ built-in Broadcom NICs) running FreeBSD 7.1 Beta2 under heavy network traffic (TCP). SCENARIO A : Bombarded w/ TCP traffic: When net.isr.direct=1, PID USERNAME THR PRI NICE SIZE

Re: looking for something like a union file system

2008-11-15 Thread Ulrich Spoerlein
On Fri, 14.11.2008 at 17:44:39 -0500, Aryeh M. Friedman wrote: I am using a dev tool that maintains a split source tree for currently worked on files and those in the repo (aegis which is slightly different then how svn or cvs does it) and my the default build system assumes it is all in one

Re: assigning interrupts

2008-11-15 Thread John Baldwin
On Friday 14 November 2008 03:23:06 am Ronnel P. Maglasang wrote: John Baldwin wrote: On Thursday 13 November 2008 05:03:20 am Ronnel P. Maglasang wrote: Hi All, Is there a way to explicitly assign an interrupt of a device? I'm running on 6.3 and the two NICs share the same

Request for individuals interested in reviewing test / python topics

2008-11-15 Thread Garrett Cooper
Hello Hackers and Porters, I'm currently working on a proposal to the FreeBSD foundation to use Python Nose as a testing framework for writing tests. If there are any individuals who are experienced and interested helping review and provide insight into my plans for using nose as a testing

KLD loading, liking

2008-11-15 Thread Alexej Sokolov
Hello, i am looking for some infos (may be papers) about how KLD linker works. After kompiling the KLD contain two important sections: % readelf -S mymod.ko | grep set [ 7] set_sysinit_set PROGBITS0560 000560 04 00 A 0 0 4 [ 8] set_modmetadata_s PROGBITS0564

vm_map_find

2008-11-15 Thread Alexej Sokolov
Hello, my question is about vm_map_find (9) int vm_map_find(vm_map_t map, vm_object_t object, vm_ooffset_t offset, vm_offset_t *addr, vm_size_t length, boolean_t find_space, vm_prot_t prot, vm_prot_t max, int cow); Could anyone explain what exactly parameter cow for ? Which

Make files for /usr/src/sys/dev/*

2008-11-15 Thread Alexej Sokolov
hello, where are the Makefiles for drivers in /usr/src/dev/* % uname -v FreeBSD 7.0-RELEASE-p5 Thanks ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL

Re: vm_map_find

2008-11-15 Thread Robert Noland
On Sun, 2008-11-16 at 04:42 +0059, Alexej Sokolov wrote: Hello, my question is about vm_map_find (9) int vm_map_find(vm_map_t map, vm_object_t object, vm_ooffset_t offset, vm_offset_t *addr, vm_size_t length, boolean_t find_space, vm_prot_t prot, vm_prot_t max, int cow);

Re: vm_map_find

2008-11-15 Thread Alexej Sokolov
On Sat, Nov 15, 2008 at 11:10:25PM -0500, Robert Noland wrote: On Sun, 2008-11-16 at 04:42 +0059, Alexej Sokolov wrote: Hello, my question is about vm_map_find (9) int vm_map_find(vm_map_t map, vm_object_t object, vm_ooffset_t offset, vm_offset_t *addr, vm_size_t length,

Re: Make files for /usr/src/sys/dev/*

2008-11-15 Thread Bruce Cran
On Sun, 16 Nov 2008 04:10:31 +0059 Alexej Sokolov [EMAIL PROTECTED] wrote: where are the Makefiles for drivers in /usr/src/dev/* For drivers which can be built as modules, they're in /usr/src/sys/modules/* -- Bruce Cran ___