Re: smp_rendezvous_cpus() vs sched_bind()

2010-11-25 Thread Max Laier
Am 22.11.2010 22:16, schrieb Andriy Gapon: If I need to call a function func on a specific CPU which one of the following I should use? 1. smp_rendezvous_cpus(1 cpuid, ..., func, ...); 2. sched_bind(cpuid); func(); sched_unbind(); Or does it depend on some additional factors? What are the

Re: arp(8) performance w/ many aliases assigned to an interface

2010-06-17 Thread Max Laier
Hello Nick, On Wednesday 09 June 2010 23:56:27 Nick Rogers wrote: Can this change make it into 8.1-RELEASE? just MFCed it to stable/8. It will, however, not make it to 8.1-Release. As it is not a bug fix, just a performance improvement, it is not considered a candidate for the release

Re: arp(8) performance w/ many aliases assigned to an interface

2010-06-10 Thread Max Laier
On Thursday 10 June 2010 10:05:24 Adrian Chadd wrote: On 10 June 2010 05:21, Max Laier m...@love2party.net wrote: Is there something that can be done to speedup the call to if_indextoname(), or would it be worthwhile for me to submit a patch that adds the ability to skip the interface

Re: arp(8) performance w/ many aliases assigned to an interface

2010-06-09 Thread Max Laier
Hello Nick, On Wednesday 09 June 2010 20:17:43 Nick Rogers wrote: Is there something that can be done to speedup the call to if_indextoname(), or would it be worthwhile for me to submit a patch that adds the ability to skip the interface lookup as an arp(8) option? how about the attached: #

Re: arp(8) performance w/ many aliases assigned to an interface

2010-06-09 Thread Max Laier
On Wednesday 09 June 2010 23:21:05 Max Laier wrote: Hello Nick, On Wednesday 09 June 2010 20:17:43 Nick Rogers wrote: Is there something that can be done to speedup the call to if_indextoname(), or would it be worthwhile for me to submit a patch that adds the ability to skip

Re: arp(8) performance w/ many aliases assigned to an interface

2010-06-09 Thread Max Laier
it was more the right timing, than the right list :-) Can this change make it into 8.1-RELEASE? It looks like it might be too late, I'll ask once the HEAD commit is done, but I wouldn't count on it. On Wed, Jun 9, 2010 at 5:30 PM, Max Laier m...@love2party.net wrote: On Wednesday 09 June 2010

Re: sysbench / fileio - Linux vs. FreeBSD

2010-06-05 Thread Max Laier
On Saturday 05 June 2010 01:58:35 Adam PAPAI wrote: Why FreeBSD is supreme with 1 and 2 thread. And why is it 2 and 3 times slower with 4-8-16-32 threads compared to Debian? The first two tests (1 thread and 2 thread) showed me that FreeBSD is supreme in I/O, but later tests showed me, that it

Re: proposed change to style(9): require yoda style if statements

2010-05-11 Thread Max Laier
On Tuesday 11 May 2010 21:36:11 Eitan Adler wrote: My proposal is simple: require that any if statement that compares a constant to a mutable variable be written as if (constant == variable) instead of if (variable == constant) this prevents an extremely common programming error if

Re: 2 bytes allocated problems

2010-02-25 Thread Max Laier
On Thursday 25 February 2010 23:46:03 Dag-Erling Smørgrav wrote: Matthias Andree matthias.and...@gmx.de writes: Dag-Erling Smørgrav d...@des.no writes: char a[9] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i' }; char a[9] = abcdefghi; suffices. The compiler knows there isn't room

Re: 2 bytes allocated problems

2010-02-24 Thread Max Laier
On Wednesday 24 February 2010 14:44:35 Andrey Zonov wrote: Hi, When I try allocated pointer to a pointer, and in it some pointers (important: size is 2 bytes), the pointers lose their boundaries. Why it can happen? Test program in attach. Your test program is broken: #define S1 ab

Re: Q:possibility PFIL+mbuf use for packet spawning

2010-01-15 Thread Max Laier
On Friday 15 January 2010 12:26:06 q q wrote: I'm using pfil as packet filter for packet modifications. Is it possible to spawn new packets to network from pfil using mbuf? You can call into ip_output with a new mbuf to send a new packet. See for example pf_send_tcp in contrib/pf/net/pf.c

Re: uiomove and mutex

2010-01-11 Thread Max Laier
On Monday 11 January 2010 20:22:39 H.Fazaeli wrote: dear gurus man mutex(9) states that: No mutexes should be held (except for Giant) across functions which access memory in userspace, such as copyin(9), copyout(9), uiomove(9), fuword(9), etc. No locks are needed when calling these

Re: bus_dmamap_load_uio() and user data

2010-01-10 Thread Max Laier
On Friday 08 January 2010 17:13:29 John Baldwin wrote: On Friday 08 January 2010 9:14:36 am Mark Tinguely wrote: You should use the pmap from the thread in the uio structure. Similar to this from the x86 bus_dma code: if (uio-uio_segflg == UIO_USERSPACE) {

Re: Make process title - % complete

2009-10-20 Thread Max Laier
, go for it Ivan. Anyway, the feature looks nice! I'd like to have it... [1] I'm unsure how expensive it is compared to fork(1)-ing etc; I'd expect it's negligable but who knows... -- /\ Best regards, | mla...@freebsd.org \ / Max Laier

Re: sx locks and memory barriers

2009-09-29 Thread Max Laier
in annex C.) I might be reading this wrong, of course. -- /\ Best regards, | mla...@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mla...@efnet / \ ASCII Ribbon Campaign | Against HTML Mail and News

Re: memchr() strangeness

2009-09-04 Thread Max Laier
the package build run jailed. And then I created a jail and in fact I could reproduce this but only in the jail. LC_* set to a locale not available in the jail? Just a wild guess. -- /\ Best regards, | mla...@freebsd.org \ / Max Laier | ICQ #67774661 X

Re: Need help trying to to use the ntohl() call with in_addr

2009-08-14 Thread Max Laier
= 1; inet_aton(ip, ipaddr); myjail.ip4 = ipaddr; You don't have to switch byte order. -- /\ Best regards, | mla...@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mla...@efnet / \ ASCII Ribbon

Re: Was system rebooted by power fail or by kernel panic?

2009-08-07 Thread Max Laier
). Will FreeBSD report about panic somehow if it cannot create core dump? You can try textdumps: http://www.freebsd.org/cgi/man.cgi?query=textdumpmanpath=FreeBSD+8-current -- /\ Best regards, | mla...@freebsd.org \ / Max Laier | ICQ #67774661 X http

Re: sosend() and mbuf

2009-08-03 Thread Max Laier
what I wrote further down. Just ignore it. IIRC, kernel threads don't have root. -- /\ Best regards, | mla...@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mla...@efnet / \ ASCII Ribbon Campaign

Re: How to increase the max pty's on Freebsd 7.0?

2009-04-08 Thread Max Laier
(still needs four more, but avoids ridiculously large UT_HOSTSIZE ;) -- /\ Best regards, | mla...@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mla...@efnet / \ ASCII Ribbon Campaign | Against HTML

Re: Tyan S2895 7.1 amd64 4Gb RAM support?

2009-02-13 Thread Max Laier
in it :( Any more details on how it fails would help. -- /\ Best regards, | mla...@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mla...@efnet / \ ASCII Ribbon Campaign | Against HTML Mail

Re: pahole - Finding holes in kernel structs

2009-02-12 Thread Max Laier
a wasted effort. However, if you take a good look at the 2000 holes, identify an interesting subset and submit a patch to fix that subset ... that would be a worthwhile effort ... IMHO. -- /\ Best regards, | mla...@freebsd.org \ / Max Laier | ICQ

Re: pahole - Finding holes in kernel structs

2009-02-12 Thread Max Laier
On Thursday 12 February 2009 17:42:19 Sam Leffler wrote: Max Laier wrote: On Thursday 12 February 2009 15:08:22 Andrew Brampton wrote: So I ran the tool pahole over a 7.1 FreeBSD Kernel, and found that many of the struct had holes, and some of which could be rearranged to fill the gap

Re: CFT: Graphics support for /boot/loader

2009-02-05 Thread Max Laier
, | mla...@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mla...@efnet / \ ASCII Ribbon Campaign | Against HTML Mail and News ___ freebsd-hackers@freebsd.org mailing list http

Re: write-only variables in src/sys/ - possible bugs

2009-02-02 Thread Max Laier
with switch/case-statements as gcc. saddr is read from in all but the default case. -- /\ Best regards, | mla...@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mla...@efnet / \ ASCII Ribbon Campaign

Re: how ipfw firewall is implemented in the kernel

2009-01-14 Thread Max Laier
there the call path goes on to the ipfw_check_* functions defined in netinet/ip_fw_pfil.c Finally ipfw_chk() in netinet/ip_fw2.c where the ruleset is processed and where you should add your required processing. -- /\ Best regards, | mla...@freebsd.org \ / Max Laier

Re: ntpd

2008-12-15 Thread Max Laier
context, but it looks like you are looking for ntp_proto.c - convenient name, isn't it? ;) -- /\ Best regards, | mla...@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mla...@efnet / \ ASCII Ribbon Campaign

Re: keeping track of local modifications

2008-11-30 Thread Max Laier
a project you care about - no matter how difficult it might seem - and start reading code hacking. If you are truly passionate about your project you can learn quite a bit in short time./generic-advise -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier

Re: keeping track of local modifications

2008-11-30 Thread Max Laier
, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News ___ freebsd-hackers

Re: keeping track of local modifications

2008-11-29 Thread Max Laier
on as a beginner C coder? Check http://www.freebsd.org/projects/ideas/ -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign

Re: New C compiler and analyzer lang/cparser in ports

2008-11-27 Thread Max Laier
of this code staying under GPL2? I suppose there is no chance to get it dual-licensed under BSDL as well? In addition, how much work is it to build missing backends? It seems like there is no amd64 or sparc support at the moment? -- /\ Best regards, | [EMAIL PROTECTED] \ / Max

Re: copy, copyin, copyout

2008-11-25 Thread Max Laier
the kernel. copyinstr() handles page faults. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News

Re: VLAN offloads on FreeBSD 6.3 7.0

2008-11-16 Thread Max Laier
. Simply EVENTHANDLER_REGISTER a function in your driver to update the hw-table on config/unconfig events. I hope this helps. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL

Re: Intel 5100 WiFi

2008-11-16 Thread Max Laier
identify all firmware(9) modules in the tree that require a license ack, by grepping for FIRMWARE_LICENSE in the module Makefiles. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL

Re: du -A / -B options [Re: zfs quota question]

2008-11-04 Thread Max Laier
.html -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News Index: du.1

Re: du -A / -B options [Re: zfs quota question]

2008-11-04 Thread Max Laier
On Wednesday 05 November 2008 03:31:26 Giorgos Keramidas wrote: On Tue, 4 Nov 2008 23:42:49 +0100, Max Laier [EMAIL PROTECTED] wrote: Hi again, On Saturday 01 November 2008 21:14:42 I wrote: a thread on freebsd-stable@ [1] about problems with du(1) and compressed zfs filesystems got me

du -A / -B options [Re: zfs quota question]

2008-11-01 Thread Max Laier
PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News Index: du.1 === --- du.1(revision

Re: conf/128030: [request] Isn't it time to enable IPsec in GENERIC?

2008-10-18 Thread Max Laier
go to the project page? It's a good junior kernel hacker project, I believe. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign

Re: tracing pf code

2008-10-14 Thread Max Laier
: http://homepage.mac.com/quension/pf/flow.png Is this the information you are looking for? -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign

Re: svn rev. number

2008-10-01 Thread Max Laier
/bin or /usr/local/bin 2) there is a .svn directory in your SRCDIR If that's the case, newvers.sh will add the output of it to uname: FreeBSD fbsd8 8.0-CURRENT FreeBSD 8.0-CURRENT #4 r180876:183019M:... -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier

Re: What file on FreeBSD acts like autoexec.bat?

2008-09-28 Thread Max Laier
, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News ___ freebsd-hackers@freebsd.org mailing list http

cosum: Checkout verification PoC

2008-09-22 Thread Max Laier
, the script is ready to checksum cvs and svn checkouts. If you obtain your checkout from some local git/hg/svk/... mirror you must modify the find excludes accordingly. Let me know what you think. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier

MFC of r180753: ABI problems?

2008-08-21 Thread Max Laier
, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News Index: dev/pci/pci_pci.c

Re: Acquiring a mtx after an sx lock

2008-08-18 Thread Max Laier
^ | rw_lock okok no ok-2okno-3 rm_lock okok no ok ok-2 no -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier

Re: High syscall rate

2008-08-17 Thread Max Laier
, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News ___ freebsd-hackers@freebsd.org mailing list

Re: Fwd: Q: case studies about scalable, enterprise-class firewall w/ IPFilter

2008-08-05 Thread Max Laier
, but all your other feature requests get a check mark. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News

Re: General questions about virtual memory

2008-07-30 Thread Max Laier
if there are other resources (people, mailing lists, books, web pages, etc.) that you want to recommend instead of taking some time to help teach me. google, wikipedia, the FreeBSD articles, ... all there at your fingertips. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier

Re: General questions about virtual memory

2008-07-30 Thread Max Laier
this. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News ___ freebsd

Re: Sysinstall is still inadequate after all of these years

2008-07-02 Thread Max Laier
http://www.pcbsd.org/ ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: kmem_alloc_wait and memory pools questions

2008-06-27 Thread Max Laier
(9). Whether or not this is what you are looking for - I don't know. I wonder if this applies to FreeBSD too so I am investigating it a little. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http

New Mailinglist: freebsd-wip-status@

2008-06-09 Thread Max Laier
, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News ___ freebsd-hackers@freebsd.org

Re: Standard byteorder functions across BSD / Linux

2008-06-04 Thread Max Laier
and it will probably take some fixing to hunt down all ported code that does define betoh64 on its own. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign

Re: hashinit versus phashinit

2008-05-06 Thread Max Laier
. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News

Re: indent(1) support for gcc(1) 0b prefix

2008-04-26 Thread Max Laier
your opinion about this? Thank you in advance, Romain PS: I also took a look at GNU indent (gindent(1) from the ports), but it does not support 0b notation too. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http

Re: Perforce and `p4 diff2' against the origin

2008-04-05 Thread Max Laier
message. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News

Re: features of objcopy

2008-03-21 Thread Max Laier
objcopy at first, but it didn't give what we were looking for - don't recall details, though. Let me know if you have questions about this. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net

Re: Building in /usr/src copied to $HOME

2008-03-19 Thread Max Laier
of the source tree have you checked out? -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News

Re: Review please: pfil FIRST/LAST

2008-03-17 Thread Max Laier
On Monday 17 March 2008 11:29:15 Vadim Goncharov wrote: On Sun, 16 Mar 2008 00:05:36 +0100; Max Laier wrote about 'Review please: pfil FIRST/LAST': attached is a small diff to allow pfil(9) consumers to force a sticky position on the head/tail of the processing queue. This can be used

Review please: pfil FIRST/LAST

2008-03-15 Thread Max Laier
I also removed a few paragraphs in BUGS which are no longer true (since we are using rmlocks for pfil(9)). I'd appreciate review of the logic in pfil_list_add - just to make sure I didn't botch it. Thanks. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier

Re: Documentation on writing a custom socket

2008-03-08 Thread Max Laier
in the kernel ? src/sys/netgraph/bluetooth/socket/ng_btsocket.c (and the rest of the .c files in there) are a good reference. Depeding on your needs netgraph might even be the right place for the whole project. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier

Re: if_start() and sending packets problem

2008-02-16 Thread Max Laier
- - ib01500 Link#4 00:c0:ee:22:03:14 40 2 0 0 ib01500 192.168.0 192.168.0.5 0- 3 - - Any ideas are highly appreciated. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier

Re: Memory allocation performance

2008-02-02 Thread Max Laier
of M_ZERO vs. UMA_ZONE_MALLOC etc. ... just a crazy idea. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail

Re: How long is a hz?

2008-01-28 Thread Max Laier
; /* usec per tick (100 / hz) */ sys/kernel.h:extern int hz; /* system clock's frequency */ The actual value for hz comes from your kernel configuration. The default is options HZ=1000 at the moment. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier

Re: Some diffs

2007-12-20 Thread Max Laier
include (other than cdefs.h) according to style. The rest seems fine from a quick glance. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign

Re: How to get filename of an open file descriptor

2007-11-14 Thread Max Laier
to [EMAIL PROTECTED] -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News signature.asc Description

Re: TCP/IP redundant connections

2007-09-12 Thread Max Laier
to get it back. I think you should rather look at session management in the application and move away from long-lived TCP connections for that purpose. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http

Re: Exclusive binary files

2007-09-02 Thread Max Laier
... http://perforce.freebsd.org/fileLogView.cgi?FSPC=//depot/projects/trustedbsd/mac/sys/security/mac%5fchkexec/mac%5fchkexec.c ... not sure what became of it, though. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http

Re: what happened to make world?

2007-08-30 Thread Max Laier
complaint would be ... what exactly? -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News signature.asc

Re: is there any up to date info on how to write simple drivers for the FBSD 6.1 kernel ?

2007-08-28 Thread Max Laier
I suggest looking at John-Mark Gurney's 2006 BSDCan presentation: http://www.bsdcan.org/2006/papers/freebsd.device.driver.slides.pdf http://www.bsdcan.org/2006/papers/freebsd.driver.pdf -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ

Re: FreeBSD status reports due: July 7, 2007

2007-07-05 Thread Max Laier
Hello again, kind reminder that the repdigit date is on this Saturday! So far we have received only 18 reports - I know there is more going on out there. Please let the world know what kind of cool stuff is going on in FreeBSD! On Sunday 24 June 2007, Max Laier wrote: it's that time again

FreeBSD status reports due: July 7, 2007

2007-06-24 Thread Max Laier
-- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News pgpq0lbzySxB1.pgp Description: PGP signature

FreeBSD Status Reports due Saturday (04/07)

2007-04-02 Thread Max Laier
to your reports. [1] http://www.freebsd.org/cgi/monthly.cgi [2] http://www.freebsd.org/news/status/report-sample.xml -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED

Re: FreeBSD panics...

2007-03-23 Thread Max Laier
? -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News pgpWa7Y8eHspB.pgp Description: PGP signature

Re: i am facing these issues after my FreeBSD 6.2 installation.

2007-03-13 Thread Max Laier
simple questions like this by your self, you will have a hard time to do actual development. We provide a large amount of documentation, but you must use it yourself! -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http

Re: how to deny reading of several sysctls (for a set of uids, f.e.)

2007-01-24 Thread Max Laier
On Wednesday 24 January 2007 14:23, you wrote: On Tue, 23 Jan 2007 14:10:19 +0100 Max Laier [EMAIL PROTECTED] wrote: [..] td-td_proc-p_ucred has the user credentials. You probably want to do your checks in userland_sysctl() according to the comment just above. Thanks, it is really

Re: ipw3945 assistance?

2007-01-23 Thread Max Laier
this working (and are not used to applying non-standard drivers.) Many thanks -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against

Re: how to deny reading of several sysctls (for a set of uids, f.e.)

2007-01-23 Thread Max Laier
to the comment just above. I also thought about passing control variable from libc to kernel, but it seems to be bad idea. Any other ways? -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http

Re: Updated Driver for 3945ABG Intel 3945ABG Wireless LAN controller

2007-01-07 Thread Max Laier
On Sunday 07 January 2007 14:35, Benjamin Close wrote: Massimo Lusetti wrote: On 1/5/07, Max Laier [EMAIL PROTECTED] wrote: Thoughts? Volunteers? I can say that the first attempt still running fine here on my laptop on a -STABLE as of yesterday. I use it on a daily basis without any

Call for FreeBSD Status Reports

2007-01-07 Thread Max Laier
/news/status/ -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News pgp8FAYgR76x6.pgp Description: PGP

Re: Updated Driver for 3945ABG Intel 3945ABG Wireless LAN controller

2007-01-05 Thread Max Laier
] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News pgpJwRS6CI5lR.pgp Description: PGP signature

Re: Updated Driver for 3945ABG Intel 3945ABG Wireless LAN controller

2007-01-05 Thread Max Laier
On Friday 05 January 2007 16:58, Florent Thoumie wrote: Max Laier wrote: On Friday 05 January 2007 15:45, Benjamin Close wrote: Hi All, After getting a new laptop I discovered being tied to a wire when your used to wireless is extremely annoying. Hence I've done a port

Re: freebsd programming

2006-12-15 Thread Max Laier
PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News pgpCm027XfcBO.pgp Description: PGP signature

Re: Forcing C program to core dump

2006-12-06 Thread Max Laier
, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News pgp7Tja5B2ZqY.pgp Description: PGP signature

Re: ipv6 connection hash function wanted ...

2006-11-15 Thread Max Laier
On Wednesday 15 November 2006 12:26, Oliver Fromme wrote: Max Laier wrote: David Malone wrote: Assuming you don't want to use one of the standard cryptographic ones (which I can imagine being a bit slow for something done per-packet), then one option might be to use a simpler hash

ipv6 connection hash function wanted ...

2006-11-14 Thread Max Laier
, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News pgpspYaBpu9CL.pgp Description: PGP signature

Re: ipv6 connection hash function wanted ...

2006-11-14 Thread Max Laier
On Tuesday 14 November 2006 20:09, David Malone wrote: On Tue, Nov 14, 2006 at 05:09:20PM +0100, Max Laier wrote: Any ideas? Any papers that deal with this problem? Assuming you don't want to use one of the standard cryptographic ones (which I can imagine being a bit slow for something done

Re: New wpi driver

2006-11-10 Thread Max Laier
On Friday 10 November 2006 10:37, Massimo Lusetti wrote: On Thu, 2006-11-09 at 22:39 +0100, Gábor Kövesdán wrote: Unfortunately, it seems that this is still that unfinished driver from Damien, that circulates on the net everywhere, but it only works for some lucky people. As for me, I get

Re: Where was that iSCSI initiator?

2006-10-18 Thread Max Laier
/freebsd/iscsi-17.5.tar.bz2 is that the one you were thinking about? -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML

Spam protection foo [Re: installkernel target.]

2006-10-04 Thread Max Laier
increases the frustration of everybody. Thanks. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News

Re: PRO/wireless scanning

2006-09-06 Thread Max Laier
to net/iwi-firmware-kmod from ports - as described in UPDATING. The latest firmware version - IIRC is 3.0. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII

Re: style(9)-like guide for man pages

2006-08-21 Thread Max Laier
On Monday 21 August 2006 18:26, Kostik Belousov wrote: is there style(9)-like guide for writing FreeBSD man pages ? man mdoc aka GROFF_MDOC(7) is the closest one I can think of. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ

Re: Packet filtering on tap interfaces

2006-08-12 Thread Max Laier
our packet filters normally hook into). You can try to use if_bridge(4) to bridge tap0 and fxp0. if_bridge(4) offers extensive means of packet filtering described in the man page in great detail. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier

FreeBSD Status Report Second Quarter 2006

2006-07-11 Thread Max Laier
fixing and improving legacy drivers. Max Laier and I worked on improving support for Intel wireless cards. The results of this work included significant improvements to the iwi(4) driver (for 2195/2200 parts) and the firmware(9) facility for managing loadable device firmware. There is also

Re: Call for Status Reports: 07/07

2006-07-08 Thread Max Laier
, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News pgpxfb3KRcJoH.pgp Description: PGP signature

Re: Alternative compiler toolchain ?

2006-07-01 Thread Max Laier
hardware and do the installation on the target. It has the downside for __asm and the like. I might be all wrong, though. -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL

Re: Call for Status Reports: 07/07

2006-06-27 Thread Max Laier
/ -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News pgpzrFj3qtUWv.pgp Description: PGP signature

Call for Status Reports: 07/07

2006-06-25 Thread Max Laier
://www.freebsd.org/news/status/ -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News pgpMXe8O6Olt7.pgp

FreeBSD Status Report First Quarter 2006

2006-04-13 Thread Max Laier
. _ OpenBSD packet filter - pf Contact: Max Laier [EMAIL PROTECTED] Work towards importing the upcoming OpenBSD 3.9 version of pf is starting slowly. There are a couple of infrastructural changes (e.g. interface groups) that need to be imported beforehand

Re: Call for FreeBSD Status Reports

2006-04-09 Thread Max Laier
regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL PROTECTED] / \ ASCII Ribbon Campaign | Against HTML Mail and News pgpWR0YVRrXB3.pgp Description: PGP signature

Re: Call for FreeBSD Status Reports

2006-01-21 Thread Max Laier
know so we can do something about it. If you want to submit a report - deadline is extended to Wednesday (25th). Thanks! -- /\ Best regards, | [EMAIL PROTECTED] \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | [EMAIL

  1   2   >