"ndp -s" doesn't join the solicited node multicast group (9.1-RELEASE)

2013-02-18 Thread Craig Leres
x27;s no surprise the host doesn't respond properly. Anybody know what I'm doing wrong? Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "freebsd-hackers-unsubscr...@freebsd.org"

Re: [patch] nmount ro, rw and negated option handling

2011-01-19 Thread Craig Rodrigues
t;pos = -1; - noro_opt->seen = 1; - TAILQ_INSERT_TAIL(optlist, noro_opt, link); - } - - /* * Be ultra-paranoid about making sure the type and fspath * variables will fit in our mp buffers, including the * terminating NUL. ZFS c

xterm -C and TIOCCONS vs. PRIV_TTY_CONSOLE

2011-01-06 Thread Craig Leres
user logs onto /dev/ttyvX? Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "freebsd-hackers-unsubscr...@freebsd.org"

Re: Suggestion: rename "killall" to "fkill", but wait five years to phase the new name in

2009-12-22 Thread Craig Small
more of people getting very used to killall doing what it does and being called killall. I know of the problem you refer to having administered Solaris servers before, but changing the name now will cause more problems than it solves. > Craig, and hackers, are you both willing to do this? I'

Re: iSCSI Target and raw devices

2007-09-26 Thread Craig Boston
On Wed, Sep 26, 2007 at 06:20:14PM +0200, Michael Reifenberger wrote: > That issue is fixed. Just looked at netbsd-iscsi-20070908 and it does look fixed in that version. Thanks, Craig ___ freebsd-hackers@freebsd.org mailing list h

Re: iSCSI Target and raw devices

2007-09-26 Thread Craig Boston
nd does not support anything > newer then 4.9-RELEASE . Does anyone know what else could possibly be > used on 6-STABLE ? I'm not sure about 6-STABLE, though a kernel initiator was added to 7 not too long ago. Craig ___ freebsd-hackers@f

Re: process freeze (state *inp)

2007-08-21 Thread Craig Boston
> deprecated. FYI, 5.5 is officially supported until May 31, 2008. See http://www.freebsd.org/security/#adv Only security fixes would go into the 5.5 release branch, however. If you have to run 5.x I'd recommend 5-STABLE as regular bug fixes can be committed there. Craig _

Re: Using userland library in Kernel

2007-08-08 Thread Craig Boston
ework both use it. You may want to check out sys/net/zlib.[ch] and see if it can do what you're after. You'll need to make sure to include a dependency on the zlib module and/or add it to your kernel configuration. Good luck, Craig ___ fre

Re: Device drivers to be commited.

2007-07-02 Thread Craig Boston
On Sun, Jul 01, 2007 at 01:26:09AM -0700, Josef Grosch wrote: > 3) 3ware's new SATA RAID controller (9500) Latest -stable seems to have this already; at least one that's recent enough for a shiny new 9650SE to work (which doesn't work in 6.

Re: Open FIFO non-blocking but have write() block(?)

2007-06-02 Thread Craig Boston
FIFOs won't do what you want. I suspect unix sockets are closer to the behavior you're after. IIRC using them in datagram mode may give you the ability to write whether or not anyone is listening. Otherwise you'll have to do the normal listen, accept

Re: GPT boot loader?

2007-05-22 Thread Craig Boston
dresses, which means > that if we allow it to be used to sub-partition partitions, it would > not have the same problem as the BSD label. I suppose we're being nonstandard either way, so I'll keep my fingers crossed that this continues to be the case :)

Re: GPT boot loader?

2007-05-22 Thread Craig Boston
go away. But it seems the GPT designers made the same mistake :( It's quite annoying to not be able to simply dd a partition without having to fix up the offsets. The GEOM container-like metaphor is very nice but it sucks that the on-disk format

Re: Resources and ACPI

2007-04-11 Thread Craig Boston
ing to be below a particular address comes to mind, or bounce buffers for PAE), the OS will take care of most of the nitty gritty details for you and allow the driver to contain higher-level code. Craig ___ freebsd-hackers@freebsd.org mailing list http:/

Re: Resources and ACPI

2007-04-11 Thread Craig Boston
If you need to know the IRQ number for some reason, rman_get_start() should work on that as well. There are lots of examples of using the busdma API in the kernel tree (virtually every driver). Hope this helps, Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Resources and ACPI

2007-04-11 Thread Craig Boston
if some mad scientist attaches the hardware to the PCI bus on a SPARC64 instead (with only minimal driver changes). Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Resources and ACPI

2007-04-11 Thread Craig Boston
On Wed, Apr 11, 2007 at 09:02:14AM -0500, Craig Boston wrote: > If it seems like magic, that's because it is. :) For PnP busses like > PCI, ISAPnP, and ISA-ACPI/LPC-ACPI, the OS takes care of figuring out > what resources to use and allocates them. I almost forgot, the busdma func

Re: Progress on scaling of FreeBSD on 8 CPU systems

2007-03-01 Thread Craig Boston
cially as PostgreSQL uses a multi-process model rather than threads. It seems like it would benefit more from optimization of the Sys-V semaphores and shared memory. Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listin

Re: Best practices for using gjournal with gmirror?

2007-01-11 Thread Craig Boston
st in case, but it's unlikely that gjournal will be the reason you have to use them. Craig * NOTE: I'm running the gjournal backport to RELENG_6. YMMV if running -CURRENT. ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mai

Re: [patch] rm can have undesired side-effects

2006-11-02 Thread Craig Boston
es for removing the -P misfeature altogether Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: checking zip file corruption

2006-06-26 Thread Craig Rodrigues
ich tests the integrity of a zip file? You can call "unzip -t" from Perl. InfoZip is in ports, archivers/unzip and archivers/zip. -- Craig Rodrigues [EMAIL PROTECTED] ___ freebsd-hackers@freebsd.org mailing list http://lists.freeb

Re: Weird PCI interrupt delivery problem (resolution, sort of)

2006-01-25 Thread Craig Boston
ry, but the APIC thing is independent of that) apic2.txt is a verbose dmesg with my current kernel (stock 6.0-STABLE + read-after-write change to local_apic.c). Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/li

Re: Weird PCI interrupt delivery problem (resolution, sort of)

2006-01-24 Thread Craig Boston
On Tue, Jan 24, 2006 at 10:43:49AM -0500, John Baldwin wrote: > What if you do a read of the lapic before the write? Maybe doing 'x = > lapic->eoi; lapic->eoi = 0;'? Reading the lapic before the write has no effect. Reading the lapic after the write

Re: Weird PCI interrupt delivery problem (resolution, sort of)

2006-01-23 Thread Craig Boston
m probably missing something, but if bad cache behavior was causing writes to the lapic EOI register to not always take effect, wouldn't the _next_ irq (even if it's a different line) cause the one that's currently pending to be acknowledged? Craig __

Re: Weird PCI interrupt delivery problem (resolution, sort of)

2006-01-20 Thread Craig Boston
works fine. (yes, I tried reverting all my local patches and testing the memory) Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Weird PCI interrupt delivery problem (resolution, sort of)

2006-01-20 Thread Craig Boston
with me on the problem before. For some reason the Cc: header got wiped out when it went to the list (but I checked my server logs and it did deliver a copy of the message to him). Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freeb

Weird PCI interrupt delivery problem (resolution, sort of)

2006-01-19 Thread Craig Boston
rted the same problem, I'm content with a local workaround. It's just... wierd. Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Toshiba Satellite L25 followup

2005-12-10 Thread Craig Boston
l, but at least everything works. I hope that all this is helpful to any others who have one of these machines. I'll be attempting to contact Toshiba about these issues and see if we can't get some of them addressed in a future BIOS update. Craig --- tos

Re: Weird PCI interrupt delivery problem

2005-12-05 Thread Craig Boston
On Mon, Dec 05, 2005 at 07:51:29PM -0600, Craig Boston wrote: > With the ACPI timer disabled (debug.acpi.disabled=timer), the ACPI+APIC > case now behaves the same as the plain APIC case. Each IRQ gets > anywhere from 10,000-500,000 interrupts before it simply stops working. And to fol

Re: Weird PCI interrupt delivery problem

2005-12-05 Thread Craig Boston
On Sat, Dec 03, 2005 at 06:41:31PM -0600, Craig Boston wrote: > I'll keep hacking on it and follow up here if I figure anything out. Following up, I have made some interesting progress. With the ACPI timer disabled (debug.acpi.disabled=timer), the ACPI+APIC case now behaves the same as t

Re: Weird PCI interrupt delivery problem

2005-12-03 Thread Craig Boston
tus: 5.0.0 Diagnostic-Code: X-mail; host mail.dcc-servers.net[204.152.184.184] said: 550 5.7.1 mail jB41YEJt015277 from 69.55.238.164 rejected by DCC (in reply to end of DATA command) Date: Sat, 3 Dec 2005 19:34:12 -0600 From: Craig Boston <[EMAIL PROTECTED]> To: Sam Leffler <[EMAIL PROT

Re: Weird PCI interrupt delivery problem

2005-12-03 Thread Craig Boston
dbus cards before ath0 was configured. Random tangent, it's kind of sad that one of the co-authors of the ACPI spec (Toshiba) would sell a machine that has so many problems with it. Though I think ATI deserves at least part of the blame as th

Re: Weird PCI interrupt delivery problem

2005-12-02 Thread Craig Boston
to edge/high, except IRQ 11 which is set to level/low. FreeBSD doesn't seem to be changing that as far as I can tell. (this is -APIC -ACPI) Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Weird PCI interrupt delivery problem

2005-12-02 Thread Craig Boston
t "works" with ACPI, in that cbb0 attaches. However by the time I'm able to insert a card, irq 11 has already died so nothing happens. Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Weird PCI interrupt delivery problem

2005-12-01 Thread Craig Boston
On Thu, Dec 01, 2005 at 07:11:10PM -0700, M. Warner Losh wrote: > In message: <[EMAIL PROTECTED]> > Craig Boston <[EMAIL PROTECTED]> writes: > : I suspect that really old 16-bit PCMCIA cards with non-sharable > : interrupts wouldn't work, but does NEWC

Re: Weird PCI interrupt delivery problem

2005-12-01 Thread Craig Boston
On Thu, Dec 01, 2005 at 07:31:46PM -0600, Craig Boston wrote: > If I'm reading the code correctly, it appears that we call _PIC and set > the interrupt model to APIC, *if an MADT table exists*, regardless if > we're actually using the I/O APIC or not. This is what initially had

Re: Weird PCI interrupt delivery problem

2005-12-01 Thread Craig Boston
oser inspection the SCI interrupt (9) gets reprogrammed to level/low. I can read the ACPI status all day long and the count for IRQ 9 goes up and up without freezing... Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Weird PCI interrupt delivery problem

2005-11-30 Thread Craig Boston
for - ACPI + APIC as it panics on bootup and this machine doesn't have a serial port. I did post a verbose boot with my patched kernel for that under apic+patches.txt. Also in there is mptable.txt, which shows the broken mptable. mptable-fixed.txt is the output of the mptable command when ru

Weird PCI interrupt delivery problem

2005-11-29 Thread Craig Boston
x27;t work. Any ideas on things to try to debug this? First thing that comes to mind is to see if the IRQ is being intentionally masked for some reason, but I can't think of an easy way to check that. Thanks, Craig P.S. Yes, it does sound like a wonky PC

Re: [PATCH] IPv6 support for ggate

2005-11-10 Thread Craig Boston
ss binding) * ggated now allows binding to an arbitrary number of local addresses, just specify -a for each one you want to use * Eliminates most cases of conditional code on AF_*. The only ones left deal with network masks for access control that can't really be generalized Craig

[PATCH] IPv6 support for ggate

2005-10-27 Thread Craig Boston
Now I just need to write a kernel mode ggatec so I can mount root over ggate :P -- Craig diff -ruN ggate.orig/ggatec/ggatec.c ggate/ggatec/ggatec.c --- ggate.orig/ggatec/ggatec.c Thu Oct 27 22:12:19 2005 +++ ggate/ggatec/ggatec.c Thu Oct 27 22:28:22 2005 @@ -244,21 +244,27 @@ struct g_

Re: [patch] rc.d/tmp (silly mkdir usage)

2005-08-02 Thread Craig Boston
Sigh, that's what I get for editing before I finish writing. On Tue, Aug 02, 2005 at 12:44:45PM -0500, Craig Boston wrote: > It's a very remote chance yes, but why ...but why take that chance when mkdir works perfectly fine? Chances are mkdir will be used at some point during the

Re: [patch] rc.d/tmp (silly mkdir usage)

2005-08-02 Thread Craig Boston
dangerous because it could nuke a random file if a symlink exists. Even >> or touch can mess with timestamps or create files that don't exist, all with the power of root. Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: ATA security commands, bug in atacontrol

2005-04-04 Thread Craig Boston
doesn't freeze all the drives on startup. Craig ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: organization

2005-03-29 Thread Craig Boston
lease > with locking. Oh, I've been running 1.1.3 on both client and server since it went into ports (many dump/loads later). Just haven't taken the time to see what's new and compare to older versions. :) Craig ___ fr

Re: organization

2005-03-29 Thread Craig Boston
be able to help too. I tried it for a while but eventually gave up because getting the perl bindings installed and working was a bit of a black art. Probably time to try the port again. Craig ___ freebsd-hackers@freebsd.org mailing list http://lis

Re: organization

2005-03-29 Thread Craig Boston
ted 1.3GB of CVS > repository to about 1.5GB in Subversion. For the curious, the > back-end was FSFS, and an earlier test conversion using the BDB > back-end took about 2.1GB. I know this is smaller than the FreeBSD > repository. Ah, I haven't played with FSFS yet.

Re: organization

2005-03-29 Thread Craig Boston
a big issue (no pun intended). If adding a few hundred megs for repo-copies is prohibitively expensive, I don't think increasing the repo size by many gigabytes would go over very well. Subversion repositories can easily be several times the size of a CVS repository containing the s

Re: Rebooting the kernel without resetting uptime?

2004-12-05 Thread Craig Boston
user, load averages: 0.24, 0.12, 0.12 the-cheat# sysctl kern.boottime kern.boottime: { sec = 80112, usec = 345099 } Mon May 22 00:20:00 1995 the-cheat# :-P Craig ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebs

Re: SSE vs. stack alignment vs. pthread

2004-11-23 Thread Craig Boston
tack (after the frame is set up by the thread function) is now 16-byte aligned and everything works just fine ... no bus error anymore. Craig ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send

SSE vs. stack alignment vs. pthread

2004-11-23 Thread Craig Boston
bout ready to throw in the towel and just force "-mno-sse -mno-sse2" compiler flags in the makefile... Thanks, Craig ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: USB developer please look at cdce driver -- (Was: Driver for Yopy PDA)

2004-11-23 Thread Craig Boston
t; > > > would really appreciate it if a committer glanced at the code. > > (...and, if meritorious, eventually ported this piece over) Heh, funny you should mention a port. The cdce driver in OpenBSD was ported _FROM_ FreeBSD -- by Daniel

Re: USB developer please look at cdce driver -- (Was: Driver for Yopy PDA)

2004-11-23 Thread Craig Boston
When did you pull down that tarball? I updated the driver at that location a few days ago to make it compile on 5.3 (though I haven't tested it with a real device yet). Thanks to Dave Smith for pointing out to me last week that it wasn't working. Craig ___

m4 is broken -- can't rename builtins (patch in PR)

2004-08-13 Thread Craig Boston
lly as they are the last couple people to touch the code in a while. I hope I'm sending this to the right place :) Thanks! Craig ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: USB ethernet CDC driver

2004-05-23 Thread Craig Boston
sed to sometimes get panics on detach, but I think the problem is fixed now. Haven't had one in quite a while, even if I unplug it while transferring something. Good luck! Craig ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: USB ethernet CDC driver

2004-05-23 Thread Craig Boston
. I've never tested it on anything else -- I suspect it wouldn't be too hard to adapt though. If you're interested in looking at it I'll send you a copy or post it somewhere. Craig ___ [EMAIL PROTECTED] mailing list http://lists.f

Re: C code for parsing rc.conf?

2004-04-16 Thread Craig Rodrigues
certain cases. An analogy for this would be the API that is used to read/write settings to the Windows registry. On a side note, is there any code in sysinstall that could be reused outside of the sysinstall application in order to parse rc.conf? -- Craig Rodrigues htt

C code for parsing rc.conf?

2004-04-14 Thread Craig Rodrigues
le library existed in FreeBSD 4.x or 5.x for doing this. Thanks. -- Craig Rodrigues http://crodrigues.org [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail

Re: FreeBSD and Debugging?

2004-04-10 Thread Craig Rodrigues
On Fri, Apr 09, 2004 at 10:17:08PM -0700, Lev Walkin wrote: > Valgrind is available for FreeBSD. > > http://eirikn.kerneled.com/valgrind/ Wow!! This is excellent. Is anyone planning to add this to the ports collection? -- Craig Rodrigues http://crodrigues.org [EMAIL

XFree86 Install Monitor and Card for Sony Laptop?

2004-04-08 Thread Craig Booth
For XFree86, what do I enter as the monitor and video card for my Sony laptop? During the initial SYSINSTALL setup of Xfree86 on my Sony VAIO PCG-FRV27 laptop under FreeBSD 4.9, the setup goes through the configuration menus, then says it failed and do I want to try again. I exited SYSINSTALL

Kernel debugging with a multiport serial card

2004-04-07 Thread Craig Rodrigues
problems? Thanks. -- Craig Rodrigues http://crodrigues.org [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

RE: Wireless Card Issue AFTER Install

2004-04-03 Thread Craig Booth
Anton, thank you for taking time to help. I have answered your questions within your text at the bottom of this email as best as I know how to as a raw BSD Unix user. -Original Message- From: Anton Alin-Adrian [mailto:[EMAIL PROTECTED] Sent: Saturday, April 03, 2004 4:18 PM To: Craig

Wireless Card Issue AFTER Install

2004-04-02 Thread Craig Booth
Any guru out there that has the knowledge to provide some advice to persist the use of the Linksys card beyond the first install? I tried this question on the Questions mailing list, but no one could tackle it, unfortunately. Situation: I have set up my Sony VAIO PCG-FRV27 laptop as a dual boo

Re: GCC include files conundrum.

2004-03-15 Thread Craig Rodrigues
and adding `using namespace std;' liberally. I've fixed a few ports by doing exactly what you have outlined. Admittedly, it's grunt work, but. :) -- Craig Rodrigues http://crodrigues.org [EMAIL PROTECTED] ___ [EMAIL PRO

Re: GCC include files conundrum.

2004-03-14 Thread Craig Rodrigues
elopers are not too interested in supporting. (3) In the Makefile for the audio/tclmidi port, mark it as broken on FreeBSD 5.x: .if ${OSVERSION} > 50 BROKEN= "Does not build on 5.x" .endif -- Craig Rodrigues http://crodrigues.org [EMAIL PROTECTED] __

Subversion follow-up

2004-03-10 Thread Craig Boston
ARTEDTIME COMMAND craig 19802 80.5 2.1 15600 10848 pv RN+ 9Feb04 33187:46.67 python ./cvs2svn.py and is still processing commits from mid-2001. Each commit has gotten progressively slower. As my other experiment (importing periodic snapshots from certain branches) has been working beauti

Re: SPAM/virii apparently from freeBSD addresses.

2004-03-01 Thread Craig Boston
hackers, I was getting Swen sent to me within an hour of posting to the list for the first time. I filter it but it still wastes bandwidth... Craig ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubsc

Questions about CPU related sysctls

2004-02-25 Thread Craig Rodrigues
x27;t show anything for them). Would it be a good idea to add some text to these syctls? kern.ccpu: hw.acpi.cpu.cx_history: machdep.hlt_cpus: -- Craig Rodrigues http://crodrigues.org [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing

Subversion/CVS experiment update

2004-02-12 Thread Craig Boston
ncreasing. I started the import Monday night, so it's been running for about 60 hours now. python has amassed about 40 hours worth of CPU time: PID USERNAME PRI NICE SIZERES STATETIME WCPUCPU COMMAND 19802 craig139 10 12920K 9292K RUN 40.5H 78.91% 78.91% pytho

Re: Subversion/CVS experiment summary

2004-02-09 Thread Craig Boston
18576. * Dumped revision 18577. * Dumped revision 18578. * Dumped revision 18579. * Dumped revision 18580. svn: Invalid change ordering: non-add change on deleted path If it's really invalid I wonder how it ended up in the repo in the first place. Not good. I'll have to do some diggi

Re: Subversion/CVS experiment summary

2004-02-09 Thread Craig Boston
gt; > I'll have to take a look at it and see if any of the problems noted above > > have been resolved. > > Please let me know the results! Will do! My local Subversion server (one running Apache, not the machine I've been doing the tests on) had just finished upgrading t

Subversion/CVS experiment summary

2004-02-09 Thread Craig Boston
. It also looks as if Subversion 0.37 (aka 1.0-RC) has just been released. I'll have to take a look at it and see if any of the problems noted above have been resolved. Any comments / corrections / arguments are welcome :) Craig -- "A 'No Parking' sign at a certain location me

Re: Realtime signal

2004-01-30 Thread Craig Rodrigues
On Thu, Jan 29, 2004 at 08:41:39PM +0200, Aliaxandr Pinchuk wrote: > FreeBSD 5.1 have a realtime signal support (signal queue)? Not right now. See: http://lists.freebsd.org/pipermail/freebsd-threads/2003-April/68.html -- Craig Rodrigues http://crodrigues.org [EMAIL PROTEC

Re: kernel enviroment in sysctl MIB

2004-01-27 Thread Craig Boston
ant to look at the source for kenv(1) to see how it gets its information. Craig ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: An experiment: 64-bit time_t on IA-32 (5.2-RC)

2003-12-23 Thread Craig Boston
sizeof(long) #define readTimeTNum readLongNum #elif sizeof(time_t) == sizeof(long long) #define readTimeTNum readLongLongNum ... but that's really ugly. Surely there's a better way? Craig ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: FreeBSD VFS System?

2003-12-16 Thread Craig Rodrigues
se, David Malone http://citeseer.nj.nec.com/dowse02recent.html "The Design and Implementation of the 4.4 BSD Operating System" http://www.aw-bc.com/catalog/academic/product/0,4096,0201549794-TOC,00.html -- Craig Rodrigues http://crodrigues.org [EMAIL PROTECTED] ___

Netgraph-ATM used in Masters thesis

2003-11-12 Thread Craig Rodrigues
private patches from Harti - I benefited a lot from it being in the tree (a bit selfish to say, but true) I would like to thank Harti for his hard work on Netgraph-ATM, and all of the FreeBSD committers for producing a great OS and a great piece of software that let me get my work done!!

Driver question

2003-11-08 Thread Craig StJean
t may help me along the way aswell. Thanks! Craig St. Jean [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Linux vs FreeBSD clusters (was: how are the Redhat product changes affecting existing and future plans?)

2003-11-06 Thread Craig Rodrigues
e same company that Brooks works for (Aerospace), has apparently set up an internal testbed based on the Emulab software developed at Utah. I use the Emulab every day as party of my research work at BBN, and it is an excellent facility. -- Craig Rodrigue

Benchmarking kqueue() performance?

2003-10-17 Thread Craig Rodrigues
number of events. I am interested in seeing the scalability of kqueue() as the number of events increases. I am also interested in looking at kqueue() performance in multithreaded environmentsmaybe with the new KSE implementation in CURRENT. Thanks. -- Craig Rodrigues http

#warning must be protected by #if __GNUC__ in headers?

2003-03-08 Thread Craig Rodrigues
h as , but does not. Thanks. -- Craig Rodrigues http://home.attbi.com/~rodrigc [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Makefiles to modify for adding new sys/*.h header files?

2003-03-08 Thread Craig Rodrigues
Hi, If I add new headers file in the directories /usr/src/sys/sys and /usr/src/sys/{arch}/include, then which Makefiles do I need to modify in order to make sure that my new header files get installed properly when I do a make installworld? Thanks. -- Craig Rodrigues http

Re: FreeBSD device driver question

2003-02-10 Thread Craig Rodrigues
at appropriate references/documentation (4.*) or URL? FreeBSD Developer's Handbook: http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/ section 24 "PCI Devices" -- Craig Rodrigues http://home.attbi.com/~rodrigc [EMAIL PROTECTED] To Unsubscribe: send mail to [E

FWD: Re: mounting a pen drive

2003-02-06 Thread Craig Sebenik
In a nutshell, I have a usb "pen drive" that I can't mount. 4.7 seems to recognize it just fine. So, it must be some silly little thing I need to do. Ideally, I would love to put a ufs filesystem on this thing as well. Any pointers would be greatly appreciated. TIA! Craig

Re: freebsd running on a cdrom

2003-01-02 Thread Craig Rodrigues
On Thu, Jan 02, 2003 at 02:03:50PM -0800, Joe wrote: > Without building the entire FreeBSD distro how do I make my > own boot.flp file and what goes on it? See if this article can help you: "Building a CD Bootable Firewall" http://www.bsdtoday.com/2002/March/Features64

Re: pw(8): $ (dollar sign) in username

2002-12-27 Thread Craig Rodrigues
c change for samba": http://docs.freebsd.org/mail/archive/2002/freebsd-current/20021201.freebsd-current.html http://docs.freebsd.org/mail/archive/2002/freebsd-current/20021208.freebsd-current.html I'm not sure what the outcome of the discussion was. -- Craig Rodrigues http://www.gis.n

Re: Memory corruption in -STABLE on P4/2GHz

2002-11-17 Thread Craig Rodrigues
ine, 2 lines/tag, 2-way associative Write Allocate Enable Limit: 384M bytes Write Allocate 15-16M bytes: Enable I am seeing make or /usr/libexec/cc1 intermittently coredump with SIG 11 or SIG 10 errors when trying to do a buildworld. I wasn't sure if it was because I had flaky hardware or not.

Re: C-2(Security) blues and the like

2002-10-10 Thread Craig Rodrigues
uick google search of "Common Criteria" yields: http://csrc.nist.gov/cc/ccv20/ccv2list.htm It has PDF files for download which are not the same as the ISO standard, but are supposed to be "aligned with ISO 15408". -- Craig Rodrigues http://www.gis.net/~craigr [EMAIL

Re: Problem detecting POSIX symbolic constants

2002-10-10 Thread Craig Rodrigues
t. This patch works for me. I think it is just as easy to just remove cruft from the header file entirely, but since your patch effectively does the same thing and has informative comments, that is fine. If your patch (or some equivalent variant) is committed, then I think PR 35924 can be close

Re: Problem detecting POSIX symbolic constants

2002-10-09 Thread Craig Rodrigues
estrict, stack_t * __restrict); At some point in the future when POSIX RT signals are implemented in FreeBSD (I'm not volunteering :), then _POSIX_REALTIME_SIGNALS can be defined to 200112L in unistd.h, and these three prototypes can be put back into . Is this OK? Thanks. -- Craig Ro

Problem detecting POSIX symbolic constants

2002-10-09 Thread Craig Rodrigues
MAXSIG - 1) 223 #endif /* SIGRTMAX */ 224 #endif /* _POSIX_REALTIME_SIGNALS */ Thanks. -- Craig Rodrigues http://www.gis.net/~craigr [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: FreeBSD usage in safety-critical environments

2002-10-09 Thread Craig Rodrigues
S-MAIL freebsd-security or freebsd-security-notifications might be appropriate for your needs. There is a lot of FreeBSD security-related work going on in the TrustedBSD project ( http://www.trustedbsd.org ). Another BSD project, OpenBSD ( http://www.openbsd.org ), has security and safe

Re: FreeBSD usage in safety-critical environments

2002-10-09 Thread Craig Rodrigues
anies have the resources to submit to such an SIL certification and jump through all the hoops? - is there enough of a financial incentive to do so? - has the UK govt heard of BSD, and would they even care if someone wanted to certify it? Unfortunately marketing and mindshare plays a lot in these k

How to remote debug a network device driver?

2002-10-05 Thread Craig Rodrigues
brandt/ngatm/ - fxp, the Intel EtherExpress Pro driver Can someone give me some hints as to where a good place to set the breakpoints would be, or pointers to further information about FreeBSD networking? Thanks. -- Craig Rodrigues http://www.gis.net/~craigr [EMAIL PROTECTED] To Unsub

ACPI programming under FreeBSD?

2002-10-01 Thread Craig Rodrigues
gather this information at the user-level? How stable is ACPI support in -STABLE and -CURRENT for this kind of work? Thanks. -- Craig Rodrigues http://www.gis.net/~craigr [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in t

Comments on new Linux threading implementation?

2002-09-30 Thread Craig Rodrigues
FreeBSD ( http://people.freebsd.org/~julian/threads/ )? Thanks. -- Craig Rodrigues http://www.gis.net/~craigr [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: POSIX message queue

2002-09-30 Thread Craig Rodrigues
On Mon, Sep 30, 2002 at 12:21:40AM -0400, Craig Rodrigues wrote: > On Sun, Sep 15, 2002 at 11:14:20PM -0400, Dmitriy Fitisov wrote: > > Hi, > > I cannot find implementation of POSIX message queues > > (mq_open, mq_xxx, ...). Even though there is a message header > >

Re: kqueue

2002-09-29 Thread Craig Rodrigues
hich has pointers to further references: http://people.freebsd.org/~jlemon/ -- Craig Rodrigues http://www.gis.net/~craigr [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: POSIX message queue

2002-09-29 Thread Craig Rodrigues
#x27;m not sure if this stuff works, or is maintained. You may want to check on the [EMAIL PROTECTED] mailing list. I just asked about p1003_1b and POSIX message queues on that list. -- Craig Rodrigues http://www.gis.net/~craigr [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL

SMP+SE7500CW2

2002-08-28 Thread Craig Hawco
Hello, I tried the changes outlined on the list, but SMP still fails at the same point. Any further suggestions? There's quite a few users with this issue. A friend of mine went through the lists and counted 18 the other day. Thanks, Craig To Unsubscribe: send mail to [EMAIL PROT

Re: SMP on Intel SE7500CW2

2002-08-27 Thread Craig Hawco
Alright, I'll fill in the missing info. It's a 4.6.2-RELEASE system, but I've seen nothing committed to -STABLE to fix the problem. Compile options: (from make.conf) CPUTYPE=p4 CFLAGS = -O -pipe Attached is the output of mptable. Anything else you guys could use? --Craig At

  1   2   >