Re: device probe re-tried for failed isa device

2006-01-13 Thread Matthew N. Dodd
On Fri, 13 Jan 2006, Norbert Koch wrote: 4. A_probe(unit 1) -- fails with ENXIO because hardware is not present Your IDENTIFY method allows device enumeration. You should not create devices in IDENTIFY that do not exist. Consider use /boot/device.hints add ISA devices. An IDENTIFY method

Re: Parking disk drive heads

2005-08-26 Thread Matthew N. Dodd
On Fri, 26 Aug 2005 [EMAIL PROTECTED] wrote: Is there a way to lock the drive in that state for some seconds? Not currently. It looks like the ATA driver will need to be extended to allow devices to be frozen and to expose a mechanism for submitting immediate commands, similar to how

Re: Parking disk drive heads

2005-08-21 Thread Matthew N. Dodd
On Wed, 17 Aug 2005 [EMAIL PROTECTED] wrote: which is the correct way to park the hd head? The documentation will refer to this operation as Unload. Standby (0xE2) or Standby Immediate (0xE0) would be the only way I can see to do this. (Sleep performs an unload as well, but is not useful

Re: preferable way to control kernel module

2005-08-11 Thread Matthew N. Dodd
On Thu, 11 Aug 2005, Julian Elischer wrote: In the past, I've used a sysctl to communicate out the syscall number. you only need to do the syscall once, and it confirms to the program that the syscall is correctly installed. Why not just use a sysctl period? Think of it as syscall by name.

RE: how to use the function copyout()

2005-07-25 Thread Matthew N. Dodd
On Mon, 25 Jul 2005, Felix-KM wrote: In the Linux driver Ioctl is realized with the macroses _put_user _get_user all over it. As I understand in FreeBSD their analogues are functions described in store(9), copy(9) and fetch(9). Linux doesn't provide any help for driver IOCTL routines, FreeBSD

Re: Opening raw disk while mounted in 5.x?

2005-06-05 Thread Matthew N. Dodd
On Mon, 6 Jun 2005, Jeremie Le Hen wrote: I made the small attached patch which creates the kern.geom.allow_foot_shooting This was proposed in ftp://ftp.jurai.net/users/winter/geom.foot.patch before debug flag 16 existed. The longer name doesn't really do anything to inform the user

Re: Asus a7v880 mobo integrated sound not working

2004-12-30 Thread Matthew N. Dodd
On Thu, 30 Dec 2004, Erik Udo wrote: And here's what i've done: Kldload snd_dirver (loaded all sound modules) Added the line { 0x41445368, 0x00, 0, AD1888,0 }, to ac97.c (dmesg changes) I tried FreeSBIE 1.1, it had the same problems too. So i guess this can be solved with a simple patch.

Re: Request for Review: UFS2 Snapshot Management Environment

2004-09-03 Thread Matthew N. Dodd
On Fri, 3 Sep 2004, Ralf S. Engelschall wrote: ... | $ cat /snap/home:hourly.1/rse/foo.txt /snap/home:hourly.0/rse/foo.txt foo.txt Now you just need to hack sys/kern/vfs_lookup.c to do the right thing when you ask for /path/.snapshot. -- 10 40 80 C0 00 FF FF FF FF C0 00 00 00 00 10 AA AA 03 00

Re: [PATCH] libusbhid(3) should not clear report_size field

2004-01-27 Thread Matthew N. Dodd
On Mon, 26 Jan 2004, Maksim Yevmenkin wrote: Index: src/lib/libusbhid/parse.c === RCS file: /home/ncvs/src/lib/libusbhid/parse.c,v retrieving revision 1.8 diff -u -r1.8 parse.c --- src/lib/libusbhid/parse.c 9 Apr 2003 01:52:48

Re: [CHECKER] bugs in FreeBSD

2004-01-18 Thread Matthew N. Dodd
On Sun, 18 Jan 2004, Ruslan Ermilov wrote: But we're missing the proper NULL checking, here's the fix: ... I've already dealt with this. -- 10 40 80 C0 00 FF FF FF FF C0 00 00 00 00 10 AA AA 03 00 00 00 08 00 ___ [EMAIL PROTECTED] mailing list

Re: utility to set idle timeout on ata drives

2004-01-01 Thread Matthew N. Dodd
On Thu, 1 Jan 2004, Bruce Cran wrote: If people are interested I can add more power management features and possibly create a package/port of it. It it really necessary to use a configure script and associated junk to build a utility that is less than 500 lines of code? -- 10 40 80 C0 00 FF

Re: pci registers for nforce2

2003-11-02 Thread Matthew N. Dodd
can without having physical access to the hardware. Good luck. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever

Re: Prebinding for DragonFly/FreeBSD-4

2003-09-12 Thread Matthew N. Dodd
solution (mostly because I haven't really worked on prebinding for some time.) Hopefully you get some use out of this though. :) -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http

Re: prism/2 firmware uploaddownload question

2003-06-22 Thread Matthew N. Dodd
this in? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | ___ [EMAIL PROTECTED] mailing

Re: le0 - DE203 kernel config problem

2003-04-03 Thread Matthew N. Dodd
On Thu, 3 Apr 2003, Christoph P. Kukulies wrote: It seems that whenever the device is properly probed and being used, the panic occurs. I can supply more panic data, if you want. I'd appreciate that. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL

Re: le0 - DE203 kernel config problem

2003-04-03 Thread Matthew N. Dodd
Ok, I know what the problem is; if_init isn't being initialized. I'm working on it. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice

Re: le0 - DE203 kernel config problem

2003-04-03 Thread Matthew N. Dodd
This should fix it: ftp://ftp.jurai.net/users/winter/patches/if_le.patch -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5

Re: le0 - DE203 kernel config problem

2003-04-02 Thread Matthew N. Dodd
are and use them. Trial and error is likely to produce the results you mentioned. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5

Re: [hackers] Re: Realtek

2003-03-31 Thread Matthew N. Dodd
to enable the serial ports with my utility. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever

Re: [hackers] Re: Realtek

2003-03-31 Thread Matthew N. Dodd
: type 8250 or not responding It won't work at all with ACPI; don't use it. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever

Re: [hackers] Re: Realtek

2003-03-31 Thread Matthew N. Dodd
. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | ___ [EMAIL PROTECTED] mailing list http

Re: bug in subr_bus.c?

2003-03-21 Thread Matthew N. Dodd
some operations but I don't believe any changes to subr_bus.c are needed. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever

Re: Network block device.

2003-01-29 Thread Matthew N. Dodd
(NBD). I'd like to know if someone has generated a similar FreeBSD facility. You could use NFS and 'mdconfig/vnconfig'. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net

Re: Network block device.

2003-01-29 Thread Matthew N. Dodd
and make a swap-backed filesystem. No reason to invent a totally new low level filesystem here. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice

Re: Network block device.

2003-01-29 Thread Matthew N. Dodd
chance of you testing Linux NBD and FreeBSD NFS/vnconfig/CCD? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever

Re: Network block device.

2003-01-29 Thread Matthew N. Dodd
and not to be trusted. I think that NFS is less of a hack than NBD though. Of course if Linux still suffers from poor NFS performance that might explain why they came up with NBD in the first place. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED

Re: Network block device.

2003-01-29 Thread Matthew N. Dodd
On Thu, 30 Jan 2003 [EMAIL PROTECTED] wrote: In message [EMAIL PROTECTED], Matthew N. Dodd writes: On Wed, 29 Jan 2003, David Gilbert wrote: So involving NFS isn't really going to make that much of a difference. Yes, it sure would. nfs1:/foo/foo1 - md1 nfs2:/foo/foo2 - md2 ccd0 64 none md1

Re: Network block device.

2003-01-29 Thread Matthew N. Dodd
this kind of requires 64 bit machines to be at all useful. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever

Re: Network block device.

2003-01-29 Thread Matthew N. Dodd
time, implement something that will actually be USEFUL over a wide variety of problem sets like SCSI over IP. Hacking around implementing anything else from scratch is a waste of time. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x

Re: Network block device.

2003-01-29 Thread Matthew N. Dodd
with less than 128mb of memory each that would be true. I suppose you could use some sort of PAE to allow every cluster member's address space to be mapped but a 64 bit address space means that you don't have to worry as much about this. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD

Re: patch to remove random #define MIN/MAX implementations fromaround the kernel

2003-01-21 Thread Matthew N. Dodd
with the abs() stuff. Consider this my objection. I don't think that it really stands in the way of the cleanup of all the definitions of min/max etc. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax

Re: patch to remove random #define MIN/MAX implementations fromaround the kernel

2003-01-21 Thread Matthew N. Dodd
be umin and umax or uimin and uimax). libkern.h defines them the same way as stand.h does. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice

Re: /rescue

2003-01-14 Thread Matthew N. Dodd
after this will be folding / and /usr into one filesystem right? How about just getting rid of /bin and /sbin in the dynamic case? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http

Re: About 5.0 and Nvidia drivers

2002-08-03 Thread Matthew N. Dodd
On Sat, 3 Aug 2002, Alp ATICI wrote: And what's the latest about the Nvidia drivers? It's mentioned that Nvidia has plans to produce the drivers for FreeBSD. I'd be happy to know what's going on in that issue too. Any day now. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E

Re: About 5.0 and Nvidia drivers

2002-08-03 Thread Matthew N. Dodd
On Sat, 3 Aug 2002, Thierry Herbelot wrote: Le Saturday 03 August 2002 22:09, Matthew N. Dodd a écrit : On Sat, 3 Aug 2002, Alp ATICI wrote: And what's the latest about the Nvidia drivers? It's mentioned that Nvidia has plans to produce the drivers for FreeBSD. I'd be happy to know

Re: About 5.0 and Nvidia drivers

2002-08-03 Thread Matthew N. Dodd
a driver from scratch... maybe something that works with X the X way (dri/drm) You're a funny guy. You'd be better off working with ATI or the PowerVR people. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86

Re: XFree86 4.2.0 GeForce4 440 Go in Dell Latitude C840

2002-06-02 Thread Matthew N. Dodd
deal with it you're out of luck until NVIDIA does something about FreeBSD support. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice

Re: tekram SCSI DC3x5 driver

2002-04-12 Thread Matthew N. Dodd
On Thu, 11 Apr 2002, Olivier Houchard wrote: It seems it is not in the FreeBSD source tree because none of the committers owns this card so I'll try to keep it up to date there. If you were a committer I'm guessing you'd keep it up to date in the source tree? -- | Matthew N. Dodd | '78

Re: Interesting sysctl variables in Mac OS X with hw info

2002-03-13 Thread Matthew N. Dodd
hw.cache.size.l1.d hw.cache.l2.settings hw.cache.size.l2 Right? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe

Re: Myson drivers for 4.x

2002-02-26 Thread Matthew N. Dodd
On Tue, 26 Feb 2002, Julian Elischer wrote: Was it copied from another driver? Given the code thats exactly line for line like Bill's other drivers I'd have to say yes, it was. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84

Re: ahc(4) reports PCI parity error interrupt

2001-11-03 Thread Matthew N. Dodd
of a similar nature. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to [EMAIL PROTECTED

Re: ep0 driver oddity

2001-11-02 Thread Matthew N. Dodd
for the 3c509; when it doubt always refresh settings with the 3c5x9cfg.exe utility. I've got code in my tree that adds checksum verification support to the driver but there are interaction issues with PCCARD attached devices. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD

Re: ep0 driver oddity

2001-11-01 Thread Matthew N. Dodd
to whatever settings you desire using the 3c5x9cfg util (get it from ftp.3com.com etc.) Don't use hints (if this is FreeBSD 4 or -CURRENT) -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http

RE: FYI

2001-10-16 Thread Matthew N. Dodd
with cash are gonna go with Cisco anyway so unless the host based solution has great support and lots of features I can't see how any vendor could justify getting into this market. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo

Re: arcnet support for FreeBSD (request for review)

2001-09-27 Thread Matthew N. Dodd
! -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-hackers

Re: arcnet support for FreeBSD (request for review)

2001-07-20 Thread Matthew N. Dodd
On Thu, 19 Jul 2001, Julian Elischer wrote: probably no committers had arcnet or could test it.. I have it and tried to test it last time with no success. I'll try and find some time to look at this stuff. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL

Re: ie ethernet device driver

2001-07-11 Thread Matthew N. Dodd
On Tue, 10 Jul 2001 [EMAIL PROTECTED] wrote: there is an intermittent bug (PR 16214) with the driver. There is a fix for both of these problems here: http://www.jfitz.com/tips/freebsd_etherexpress16.html I'll try to take care of this in a few days or so. -- | Matthew N. Dodd | '78

Re: FreeBSD Mall now BSDCentral

2001-07-11 Thread Matthew N. Dodd
-- neither of which is true of FreeBSD. Unless of course user writable space is mounted noexec. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice

Re: newbussifying drivers

2001-06-07 Thread Matthew N. Dodd
is silly. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe

Re: Fix for CDROM boot for IBM PC desktops

2001-04-07 Thread Matthew N. Dodd
On Fri, 6 Apr 2001, Doug Ambrisko wrote: I have confirmed that this works. So now we should be able to boot a FreeBSD CD on all IBM hardware that I can find around here. I will revise the PR. I wonder if this solves the PS/2 booting problem... Guess I should check. -- | Matthew N. Dodd

Re: kern/23620: Fore PCA200E driver

2001-03-25 Thread Matthew N. Dodd
cribe freebsd-hackers" in the body of the message -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe:

Re: driver: probe not called when smbus child

2001-03-21 Thread Matthew N. Dodd
totally misread your original post? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail

Re: NEED HELP: fiber card

2001-02-02 Thread Matthew N. Dodd
components but are configured differently. I've compared a few side by side but never gotten around to trying to make the fea/fpa drivers work with them. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc

Re: NEED HELP: fiber card

2001-02-01 Thread Matthew N. Dodd
doesn't work then you're pretty much out of luck. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe

Re: One thing linux does better than FreeBSD...

2001-01-17 Thread Matthew N. Dodd
On Tue, 16 Jan 2001, Alan Clegg wrote: http://www.svaha.net/daemon/index.html BUT HIS NAME IS NOT CHUCK, DAMNIT! Indeed. Its on her list of things to fix on the page. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo

Re: One thing linux does better than FreeBSD...

2001-01-16 Thread Matthew N. Dodd
On Tue, 16 Jan 2001, Poul-Henning Kamp wrote: Isn't there *anybody* here who has a SO/family member/neighbor in the graphic/design business ? Yes. http://www.svaha.net/daemon/index.html -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED

Re: SCSI DAT tape detection on Compaq DL380

2001-01-09 Thread Matthew N. Dodd
is paused while the passthrough interface is open. Granted, we don't have very current documentation... -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter

Re: SCSI DAT tape detection on Compaq DL380

2001-01-08 Thread Matthew N. Dodd
isn't supported by FreeBSD's 'ida' driver. My impression from reading various docs is that it is likely to be quite slow as well. Hook the DAT drive up to the internal SCSI adapter (I assume it has one since it would be fairly silly not to.) -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo

Re: Support for Syba pci multi i/o card?

2000-12-14 Thread Matthew N. Dodd
then yes, I'm done. That work is non-impacting and is only useful in that it provides a way to eliminate duplicated code. Or was it something else you were talking about? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL

Re: Legacy ethernet cards in FreeBSD

2000-11-10 Thread Matthew N. Dodd
? The 3c503 is supported. You're thinking of the 3c501 and the 3c505. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever

Re: We need your old laptop for a committer...

2000-10-09 Thread Matthew N. Dodd
think if you don't have a laptop to offer or cash to put towards the pool then you should just keep quiet. I'd love a laptop myself but I'll put up $50 towards the purchase of a laptop for said committer. Will you? PHK, where do I send my check? -- | Matthew N. Dodd | '78 Datsun 280Z | '75

Re: PnP 4.1 Release

2000-09-21 Thread Matthew N. Dodd
On Thu, 21 Sep 2000, Piotr Sroczynski wrote: Mine config utility is: MD5 (ezstart.exe) = 2f6511d72192cc5d899f5f517e5c35fa Have you different? If so, may I ask you, send it to me via e-mail. You should really just go to the SMC FTP/WEB site and get the right one. -- | Matthew N. Dodd | '78

Re: PnP 4.1 Release

2000-09-20 Thread Matthew N. Dodd
the card using the EZSetup DOS config utility? You need to get the right version of the utility and run it with the flags that tell it to disable PnP on ALL cards in the box. I've had problems disabling PnP with the wrong config utility version and wrong flags. -- | Matthew N. Dodd | '78

Re: PnP 4.1 Release

2000-09-18 Thread Matthew N. Dodd
.) -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubs

Re: Token Ring ??

2000-09-09 Thread Matthew N. Dodd
On Sat, 9 Sep 2000, Wes Peters wrote: UTSL: src/sys/dev/isa/if_tr{,ibm,tcm}_isa.c That would be the NetBSD source tree. :) -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http

Re: Anybody working on FreeBSD BIOS?

2000-06-16 Thread Matthew N. Dodd
On Fri, 16 Jun 2000, Stefan Molnar wrote: I delgated the remote-hands to being my human on-off switch, or a "blinky light" monitor. Buy a bunch of RPC-2s or RPC-4s http://baytechdcd.com/products/rpcseries.shtml -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | Free

Re: 4.0 - Isa devices not being probed

2000-05-31 Thread Matthew N. Dodd
with a wrapper that's also busspace compatible. And in fact, if your driver is well written in the first place, converting to bus_space should only involve a couple of lines of code, plus the code to manage the bus_space setup/teardown. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD

Re: further question to bus_alloc_resource

2000-05-20 Thread Matthew N. Dodd
. While some of the bus code for EISA/MCA busses could be loaded in a module there are other bits that must be compiled into the kernel. The current 'aha' module only includes support for the ISA bus front end. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL

Re: truss(1) with support for fork(2) and friends

2000-05-20 Thread Matthew N. Dodd
this without being able to easily diff it against a CVS tree. You might want to restrict your changes the functional ones and worry about style issues later. Could you submit a diff instead of a tarball? Thanks. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL

Re: request for review: bus_alloc_resource(9)

2000-05-18 Thread Matthew N. Dodd
of like resources. A resource is just a range; start and length, and a type. The 'rid' has nothing to do with offsets into a memory/port resource. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax

Re: Native SMBFS for FreeBSD

2000-05-14 Thread Matthew N. Dodd
/mnt Warning: no cfg file(s) found. Password: smb_encrypt: password encryption is not available Anyhow, looks pretty good and read performance seems to be acceptable. Good job Boris! -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84

Re: FreeBSD 4.0 and IBM PS/2 Model 65SX

2000-05-11 Thread Matthew N. Dodd
e AHA-1640 is supported. GENERIC doesn't have MCA support built in so you'll need to build a custom kernel and copy it to the boot floppy. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pma

Re: Upgrade from 3.4 to 4.0 with ida driver

2000-05-03 Thread Matthew N. Dodd
fixed most of the problems except this one. Any help would be appreciated. Thanks Chris --- Christopher T. Griffiths Engineering Department Quansoo Group Inc. [EMAIL PROTECTED] -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL

Re: 100Bit Fast Ethernet EISA card - anyone?

2000-03-21 Thread Matthew N. Dodd
not been able to get it working reliablly. Your best bet is to pick up an EISA/PCI motherboard. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent

Re: 100Bit Fast Ethernet EISA card - anyone?

2000-03-21 Thread Matthew N. Dodd
On Tue, 21 Mar 2000, Wilko Bulte wrote: An FDDI ISA card would not be much fun (performance wise) But they exist, as do ISA 100baseTX cards. :) -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc

Re: How to read a file from a device driver?

2000-03-17 Thread Matthew N. Dodd
step) open a file(s) directly from my device driver, read the file(s), and download the relevant parts to my device. There isn't really any clean way of doing this so most drivers that need to load firmware usually compile them in. :/ -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E

Re: How to read a file from a device driver?

2000-03-17 Thread Matthew N. Dodd
mounted until after your drivers probe/attach routines have been called. It would be better if you made your firmware a KLD so that it can be loaded by the loader or demand loaded by the kernel linker when your driver is loaded. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD

Re: Compaq Integrated Raid Array

2000-03-14 Thread Matthew N. Dodd
integrated array that our driver doesn't. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail

Re: FreeBSD as high speed router

2000-02-22 Thread Matthew N. Dodd
PCI FDDI SAS Controller fpa0: FDDI address 00:00:f8:40:e4:a8, FW=2.46, HW=0, SMT V7.2 fpa0: FDDI Port = S (PMD = Unshielded Twisted Pair) You want one of these (DEFPA-??). -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL

Re: FreeBSD as high speed router

2000-02-22 Thread Matthew N. Dodd
OEMed DEF[EP]A boards too. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to [EMAIL

Re: SMP + Dual port Intel PRO/100+

2000-01-28 Thread Matthew N. Dodd
system isn't setting up the PCI-PCI bridge correctly when its in MP mode. Is there an MP version setting in the BIOS you can change? Are you running the latest BIOS? What board are you using? Processors? What is the exact error message? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E

Re: SMP + Dual port Intel PRO/100+

2000-01-28 Thread Matthew N. Dodd
? Switch? Can you specify media settings manually? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send

Re: SMP + Dual port Intel PRO/100+

2000-01-28 Thread Matthew N. Dodd
on that card. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to [EMAIL PROTECTED

Re: Learning the FreeBSD Kernel

2000-01-24 Thread Matthew N. Dodd
. You need to be able to tell the dog polisher what size dog is to be loaded, how long the dog is to be polished and you will wish to be notified when the dog is done. :) I'm not making this up. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED

Re: Learning the FreeBSD Kernel

2000-01-23 Thread Matthew N. Dodd
nifty like that. Someone else was talking about the BSD/OS 'dog polisher' example driver as a good reference. :) -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter

Re: How do I allocate 2 blocks of memory?

2000-01-20 Thread Matthew N. Dodd
in the config file; you might want to do a test to see if the configured IRQ is different than the board IRQ though. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter

RE: How do I allocate 2 blocks of memory?

2000-01-20 Thread Matthew N. Dodd
ood handle on things or at least enough to field questions. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubsc

Re: Use of newbus in sys/pci/pci.c

2000-01-15 Thread Matthew N. Dodd
. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe fr

Re: Fwd: Re: kstat - an API for gathering kernel stats

1999-12-08 Thread Matthew N. Dodd
to have kern.stats.nice.cpu0 kern.stats.nice.cpu1 or simply kern.stats.nice.0 -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5

Re: 3c589d w/ freebsd 3.3 works badly.

1999-12-05 Thread Matthew N. Dodd
esn't work with "media 10baset/utp"). It's being used in conjunction with cardbus on a gateway solo 9100. I suspect that it isn't getting interrupted properly, although nothing is telling me what IRQ is being given to it. I'm still trying to track down a watchdog timeout problem with if_

Re: Databook

1999-11-30 Thread Matthew N. Dodd
On Tue, 30 Nov 1999, Warner Losh wrote: If you can get a databook/user manual for these things, I'd consider it after the newcard stuff stabilizes. It doesn't seem likely that we'll be able to get the manuals for them. :/ -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD

Re: Databook

1999-11-30 Thread Matthew N. Dodd
on it... Once Warner has the newbus PCMCIA code in -CURRENT beaten into shape I'll finish the port of the 'tcic' driver from NetBSD. I'm really looking for any sort of 3com Etherlink III PCMCIA card if you've got any. :) -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL

Re: MCA-support - IBM PS/2 Model 70 to be donated?

1999-11-24 Thread Matthew N. Dodd
are testers. Get the machine and compile an MCA kernel for it; copy to the boot disks and try installing. I should probably update LINT and GENERIC since the MCA support is somewhat usable at this point. Thanks for the offer of hardware though! -- | Matthew N. Dodd | '78 Datsun 280Z | '75

Re: Compile new kernel with MCA support

1999-11-20 Thread Matthew N. Dodd
in advance, Jason - Original Message ----- From: Matthew N. Dodd [EMAIL PROTECTED] To: Jason Craig [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, November 19, 1999 8:56 PM Subject: Re: Compile new kernel with MCA support On Fri, 19 Nov 1999, Jason Craig wrote: I have a

Re: Compile new kernel with MCA support

1999-11-20 Thread Matthew N. Dodd
On Sat, 20 Nov 1999, Jason Craig wrote: panic: unknown bus type: 'MCA' mp_lock = 0004; cpuid = 0; lapic.id = Apply this patch: ftp://ftp.jurai.net/users/winter/patches/mca_mp.patch And let me know what happens. Thanks. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E

Re: Compile new kernel with MCA support

1999-11-20 Thread Matthew N. Dodd
syncing disks... done Automatic reboot in 15 seconds - press a key on the console to abort -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space

Re: kstat - an API for gathering kernel stats

1999-11-03 Thread Matthew N. Dodd
that could return the OID for a given name to solve the portability and speed issues associated with doing repeated lookups. Seems like you've reinvented the wheel to me. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL

Re: Turbochannel based Alpha, quickie question

1999-10-07 Thread Matthew N. Dodd
. Is there any particular reason why it is commented out in GENERIC? Floppy disk size limit maybe? The 53c94 driver didn't make the CAM switchover. I've got EISA and MCA based 53c94 devices just waiting for a driver so I've some interest in seeing this fixed at some point. -- | Matthew N

Re: what is devfs?

1999-09-20 Thread Matthew N. Dodd
' wanted. This simple behavior would nearly exactly mimic the behavior of a normal filesystem based /dev. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | [EMAIL PROTECTED] | 2 x '84 Volvo 245DL| ix86,sparc,pmax | | http://www.jurai.net/~winter

Re: what is devfs?

1999-09-19 Thread Matthew N. Dodd
monitoring hooks would work; you'd only update the persistent store if you were running devfsd. devfsd would read the store and init /dev with the contents. I think the only issue that would involve thinking would be whiteouts (and the actual devfsd code of course.) -- | Matthew N. Dodd | '78

  1   2   >