Re: Where to put new bus_dmamap_load_mbuf() code

2001-08-22 Thread Justin T. Gibbs
to manipulate the list itself, until time comes to destroy it. Okay, but does this mean that bus_dmamap_load_mbuf no longer takes a dmamap? Drivers may want to allocate/manage the dmamaps in a different way. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current

Re: Where to put new bus_dmamap_load_mbuf() code

2001-08-21 Thread Justin T. Gibbs
). This example made me realize that the bounce code doesn't deal with multiple segments being copied into a single page (i.e. tracking and using remaining free space in a page already allocated for bouncing for a single map). I'll have to break loose some time to fix that. -- Justin To Unsubscribe: send

Re: Where to put new bus_dmamap_load_mbuf() code

2001-08-20 Thread Justin T. Gibbs
Chances are you are going to use the map again soon, so destroying it on every transaction is a waste. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current in the body of the message

Re: SCSI hangs w/SuperMicro 6010H

2001-06-26 Thread Justin T. Gibbs
settings with some devices. These all seem quite normal. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current in the body of the message

Re: SCSI hangs w/SuperMicro 6010H

2001-06-26 Thread Justin T. Gibbs
gates all interrupt activity. I don't know that it will tell you why you are hung though. All that is clear is that interrupts at least work for a time. btw, thanks very much for your help! Sure. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current in the body

Re: SCSI hangs w/SuperMicro 6010H

2001-06-20 Thread Justin T. Gibbs
or the aic7xxx driver. You probably need to work with John Baldwin to trace the early execution of the system to see why it is haning up. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current in the body of the message

Re: swap_pager / SCB time outs?

2001-06-11 Thread Justin T. Gibbs
, the transaction is already complete. This usually indicates (as the driver mentions) a problem with interrupts. Perhaps one of the SMPng guys may know why this is happening. At this point, I don't believe that it is an aic7xxx specific bug. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED

Re: Syscons mouse char range redefine proposal

2001-04-22 Thread Justin T. Gibbs
language correctly. Perhaps this could be configured directly via the language table or keymap? Whatever the solution, it should be automatic with the configuration of a locale change. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current in the body of the message

Re: FW: Filesystem gets a huge performance boost

2001-04-16 Thread Justin T. Gibbs
kicks our ass in caching meta-data unless you have a lot of memory. That sucks. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: FW: Filesystem gets a huge performance boost

2001-04-15 Thread Justin T. Gibbs
There's no downside, really. It just seems inelegant to have a system that, on paper, is so inefficient. Can't we do better? -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: FW: Filesystem gets a huge performance boost

2001-04-14 Thread Justin T. Gibbs
fraction of that size. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: ahc_intr - referenced scb not valid... panic for safety

2001-03-30 Thread Justin T. Gibbs
Hi, Just had one of these on yesterday's -current. Anyone interested in the details? Nah. Its probably just you, or something specific to your system. It couldn't possibly be a bug in *my* code. ;-) Of course I'm interested! -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED

Re: ahc_intr - referenced scb not valid... panic for safety

2001-03-30 Thread Justin T. Gibbs
a copy of the dump handy, but the offending controller is a 7895 (possibly a 7899 [39160] but I think the 7895 gets hit first) I really need the complete set of messages printed out prior to the panic. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-cu

Re: ahc_intr - referenced scb not valid... panic for safety

2001-03-30 Thread Justin T. Gibbs
On Fri, 30 Mar 2001, Justin T. Gibbs wrote: I really need the complete set of messages printed out prior to the panic. Okay, here yer go (transcribed using hi-tech ballpoint and scribbly handwriting, I'm afraid!) This is certainly a bug, but some things about what you've written make me

Re: ahc driver: aic7892 no longer supported

2001-03-20 Thread Justin T. Gibbs
Dear Justin, Since the update around the middle of feb of the ahc driver the aic7892 chip is no longer supported correctly. The same card with aic7870 is working as usual. So I think that this is the problem. The snapshot (2001/02/10) of the current version is OK. Can you give me the revision

Re: ahc driver: aic7892 no longer supported

2001-03-20 Thread Justin T. Gibbs
I've just tested both -current and -stable on a card with identical specs. Can you provide more inforamtion on where the attach fails (e.g. add printfs)? ### 29160 BIOS v.2.57.2 ### pciconf aries# pciconf -l ahc0@pci0:9:0: class=0x01 card=0xe2a09005 chip=0x00809005 rev=0x02 -- Justin

Re: ahc driver: aic7892 no longer supported

2001-03-20 Thread Justin T. Gibbs
l have to instrument the driver to find out where the attach is failing. Start by going into aic7xxx.c:ahc_init() and adding a printf to all of the early returns. If that doesn't catch it, do the same for aic7xxx_pci.c:aic7xxx_config(). I'll add this logging the next time I touch th

Re: aic7880 prints some timeouts after recent commit (yesterday)

2001-03-12 Thread Justin T. Gibbs
exhibited this problem. Unfortunately I don't, so it has been difficult to get the workaround for this particular hardware bug correct. Can you see if this patch works for you? -- Justin Index: aic7xxx.c === RCS file: /usr/cvs/src/sys/d

Re: od driver for -CURRENT

2001-02-12 Thread Justin T. Gibbs
"Justin T. Gibbs" [EMAIL PROTECTED] wrote: It is not necessarily sufficient since the media may be changed after open on certain types of devices that don't have a media lock. But don't you risk a panic if you do that? By pulling the media out and flipping off the hardware write prot

Re: od driver for -CURRENT

2001-02-10 Thread Justin T. Gibbs
of devices that don't have a media lock. Some devices will only tell you that they are write protected on the first write, etc. For the devices where we can tell, we should make the check in open, but not rely on that catching all cases where a driver will return EACCESS. -- Justin To Unsubscribe

Re: ahc messages

2001-01-23 Thread Justin T. Gibbs
"WARNING" printf in aic7xxx.c? I'm trying to reproduce this here as well. I don't know what I've changed that could cause the qoutfifo to become confused. How many drives do you have on the controller? -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe fre

Re: ahc messages

2001-01-23 Thread Justin T. Gibbs
latest checkin corrects the problem. Please let me know if you experience any additional difficulties. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: YES! laptop installing

2001-01-12 Thread Justin T. Gibbs
their nic address the same way. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: YES! laptop installing

2001-01-12 Thread Justin T. Gibbs
the mac address wrong for one of my xircom cards but not so wrong as to make it non-functional. The other xircom card (the type-III with modem) seemed to end up with a mac address that was considered invalid by many switches. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED

Re: SOLVED: SCSI CD recorder no longer attached; minor issues

2001-01-08 Thread Justin T. Gibbs
perl -pi -e "s:^V^M::g" Gibbsdiffs # How come... :-) That's MH's mime for you. Summing up: SCSI seems to work like a charm. The patch has been committed to both -current and -stable. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-curre

Re: SCSI CD recorder no longer attached; minor issues

2001-01-07 Thread Justin T. Gibbs
Dear FreeBSD'ers, I am running -CURRENT as of today (sources as of ~ 18:15 GMT). I can see the following (a # sign precedes my comments): Can you see if this patch corrects the problem? -- Justin Index: dev/aic7xxx/aic7xxx.c

Mylex DAC960 RAID Controller - bus_dmamap_load errors

2001-01-06 Thread Justin Clift
tached to the Mylex card are 2 x 4.3GB Fujitsu UW SCSI drives, set up as a single mirrored pair. It all works fine with NT4, but that's not an option for this server. Regards and best wishes, Justin Clift To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Lost second channel of AIC-7896

2001-01-06 Thread Justin T. Gibbs
ontrollers. Are you sure that your drives aren't just attached to the second port? Have you tried a current since Friday? I committed a fix for the original problem that was reported. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Lost second channel of AIC-7896

2001-01-05 Thread Justin T. Gibbs
My guess is that your MB vendor did not use the correct subsystem ID for the aic7896 to enable the second channel. We only recently started to pay attention to this. What MB is this? -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Cardbus woes

2001-01-03 Thread Justin T. Gibbs
this protection without requiring any locks. Other than having to aquire Giant at thread starup (as most code below us is not thread safe yet), I don't see any other locking requirements. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Cardbus woes

2001-01-03 Thread Justin T. Gibbs
this won't tell you if your interrupt thread has already been dispatched but the interrupt source has gone away (card was removed, so interrupt line is dead). Hmmm. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

HDD Problem

2000-12-27 Thread Justin W. Pauler
brand new 256MB modules and installed them. It is still happening. This is a production environment type of server. I've had no other problems with FreeBSD 4.2-S, and i'm hoping maybe this is something that has been fixed. -- Justin W. Pauler (drnet) E-Mail: [EMAIL PROTECTED] WWW: http://www.j

AGP currently broken

2000-12-10 Thread Justin A. Kolodziej
"AGP data structures"); from MALLOC_DEFINE(M_AGP, "agp", "AGP data structures"); in the latest pci/agp.c. CC me as I'm not on the list. (I know, but I can't cope well with that type of mail volume...) Justin A. Kolodziej To Unsubscribe: send mail to [EMAIL PROT

Re: Getting at cardbus CIS data from inside drivers

2000-11-21 Thread Justin T. Gibbs
that facilitates walking the CIS that can be used at anytime. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Getting at cardbus CIS data from inside drivers

2000-11-21 Thread Justin T. Gibbs
That's what I mean. You call this, and it will remap the CIS (if it has been unmapped), walk it for you and pass you a pointer to each CIS entry one at a time to the function you specify. Warner I'd rather have a seek/read interface than have a callback. -- Justin To Unsubscribe: send mail

Re: Getting at cardbus CIS data from inside drivers

2000-11-21 Thread Justin T. Gibbs
of having a seeking interface might be necessary. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Getting at cardbus CIS data from inside drivers

2000-11-21 Thread Justin T. Gibbs
implemented for function 0 and the ROM contains information for all functions of the chip. So, functions greater than 0 must have the flexibility to activate at least the ROM BAR on function 0 as well as access that region. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubs

Re: Cardbus fixes

2000-11-19 Thread Justin T. Gibbs
I'll have to look up the CIS_PTR spec. I'm not sure I like hardwiring things like this. Where did you get a copy of the pccard spec? Do you have to order it from the pcmcia SIG? -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" i

Cardbus fixes

2000-11-18 Thread Justin T. Gibbs
ill always grow in 4K increments from its parent resource pool. The parent would then grow according to its own requirements, etc. -- Justin Index: dev/cardbus/cardbus.c === RCS file: /usr/cvs/src/sys/dev/cardbus/cardbus.c,v retrievin

Re: FreeBSD Foundation: Examples of FreeBSD as teaching aid/research plat

2000-11-10 Thread Justin T. Gibbs
-On [20001109 21:30], Justin T. Gibbs ([EMAIL PROTECTED]) wrote: If possible, please include a contact name, email, or phone number so we can ask additional questions if necessary. Do foreign educational institutes count as well for this purpose? Yes. -- Justin To Unsubscribe: send mail

Re: vx driver patch

2000-11-09 Thread Justin T. Gibbs
, this wouldn't be an issue any longer. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: vx driver patch

2000-11-09 Thread Justin T. Gibbs
be referenced while the chip is in a paused state. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: vx driver patch

2000-11-09 Thread Justin T. Gibbs
cards are identified using ISA probe techniques in all cases I'm aware of. It just turns out that the 2842 uses a scheme that is very similar to that of an EISA card. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: vx driver patch

2000-11-09 Thread Justin T. Gibbs
. VL cards are identified using ISA probe techniques in all cases I'm aware of. It just turns out that the 2842 uses a scheme that is very similar to that of an EISA card. As a backgrounder for other-than-Justin, Adaptec has a habit of making multipurpose ROMs that sit on different types of devices

Re: vx driver patch

2000-11-09 Thread Justin T. Gibbs
How do we use the EISA BIOS on an Alpha or an SGI though? I believe thorpej recently committed some code in NetBSD to do this on the Alpha. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

FreeBSD Foundation: Examples of FreeBSD as teaching aid/research plat

2000-11-09 Thread Justin T. Gibbs
we can ask additional questions if necessary. Thanks in advance for your help! Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: FreeBSD Foundation: Examples of FreeBSD as teaching aid/research plat

2000-11-09 Thread Justin T. Gibbs
for good reason), so a conventional 'To' line didn't work. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: vx driver patch

2000-11-08 Thread Justin T. Gibbs
The IRQ allocation needs the RF_SHAREABLE flag or it will blow up in the case where the IRQ is shared with another device. So the EISA attachment doesn't set RF_SHAREABLE if the system is using a level sensitive interrupt? -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED

Re: vx driver patch

2000-11-08 Thread Justin T. Gibbs
On Wed, 8 Nov 2000, Justin T. Gibbs wrote: So the EISA attachment doesn't set RF_SHAREABLE if the system is using a level sensitive interrupt? The current EISA code isn't as smart as it should be. Speaking of that, I'd like to see the EISA code move to be more like PCI. We should see

Re: vx driver patch

2000-11-08 Thread Justin T. Gibbs
nonvolatile region in the ELCR, but I could never find out how to do this. Humm... Try ftp://ftp.jurai.net/users/winter/eisabook.zip I can't seem to fetch it. Permission denied. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: vx driver patch

2000-11-08 Thread Justin T. Gibbs
EISA bus blindly. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: vx driver patch

2000-11-08 Thread Justin T. Gibbs
Humm... I had wondered why that was there. Is there a way to detect VLB devices some other way? This is specific to the aha2842 and is the only way I know of detecting those boards. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" i

Re: IP wierdness...

2000-11-07 Thread Justin T. Gibbs
o the card that is having problems under FreeBSD without any difficulty. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

IP wierdness...

2000-11-06 Thread Justin T. Gibbs
n -current. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

panic in vfinddev in -current

2000-11-02 Thread Justin T. Gibbs
,c877af80,80b4348,80b5028,80b4300) at lstat+0x41 syscall2(2f,2f,2f,80b4300,80b5028) at syscall2+0x33c Xint0x80_syscall() at Xint0x80_syscall+0x1f Since addaliasu doesn't bother to check for NODEV, I take it this is a "can't happen" situation? -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with &q

Re: Review: offsetof/struct.h/fldoff patch.

2000-10-24 Thread Justin T. Gibbs
Please test review this patch: http://phk.freebsd.dk/patch/offsetof.patch I believe that several drivers include stddef.h to get offsetof. I think most of these files are flagged by "/* for offsetof */". -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with &q

Compilation Errors (libdisk)

2000-09-23 Thread Justin Thomas
Attached is the end of the .out file where my error occurs. Thanks for any help. ~Justin === libdevstat cc -O -pipe -I/usr/src/lib/libdevstat -I/usr/src/lib/libdevstat/../../sys -I/usr/obj/usr/src/i386/usr/include -c /usr/src/lib/libdevstat/devstat.c -o devstat.o building standard devstat

-current freezes when I try to connect to it.

2000-09-01 Thread Justin Ovens [EMAIL PROTECTED]
What would cause freebsd -current to lock up when i telnet, ftp, or ssh to it? Somthing with inetd? -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Justin Ovens ([EMAIL PROTECTED]) System/Network Administrator http://www.lostworld.net http://resume.lostworld.net -- Personal

FreeBSD freezes when I try to telnet to it.

2000-09-01 Thread Justin Ovens [EMAIL PROTECTED]
N.M. it seems to be somthing with my kernel, i booted up off an older kernel (4.1-STABLE) and i can telnet to it, so im going to try and make a new config file and recompile my kernel.. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Justin Ovens ([EMAIL PROTECTED]) System

How do i activate /boot/device.hints in loader.conf?

2000-08-30 Thread Justin Ovens [EMAIL PROTECTED]
I have a little Q: when i compile my kernel for 5.0-CURRENT [root@calloc:/usr/src/sys/compile/CALLOC]# make install You must activate /boot/device.hints in loader.conf. *** Error code 1 How do i activate it? -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Justin Ovens

Re: How do i activate /boot/device.hints in loader.conf?

2000-08-30 Thread Justin Ovens [EMAIL PROTECTED]
I didn't see it in UPDATING but i figured it out.. :P -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Justin Ovens ([EMAIL PROTECTED]) System/Network Administrator http://www.lostworld.net http://resume.lostworld.net -- Personal Resume. "I dread success. To have succ

No Subject

2000-08-29 Thread Justin Ovens [EMAIL PROTECTED]
suscribe -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Justin Ovens ([EMAIL PROTECTED]) System/Network Administrator http://www.lostworld.net http://resume.lostworld.net -- Personal Resume. "I dread success. To have succeeded is to have finished one's business on

USER PPP

2000-08-09 Thread justin
to. Is there a BSD option to 'keep-alive' the connection so I do not time out? I would prefer not to leave an X session opening refreshing CNN every five minutes :P Your help and/or scripts are welcome :) Justin W. Pauler JWPages Web Development [EMAIL PROTECTED]

Remote GDB *still* buggy...

2000-06-14 Thread Justin T. Gibbs
I still can't get remote GDB to work correctly in a 5.0-current environment at speeds greater than 9600bps. Is anyone else experiencing similar results? I thought that grog had fixed this... -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-cu

Re: Remote GDB *still* buggy...

2000-06-14 Thread Justin T. Gibbs
On Wednesday, 14 June 2000 at 11:05:41 -0600, Justin T. Gibbs wrote: I still can't get remote GDB to work correctly in a 5.0-current environment at speeds greater than 9600bps. Is anyone else experiencing similar results? I thought that grog had fixed this... So did I. Are you just getting

Re: AIC card not recognised?

2000-02-16 Thread Justin T. Gibbs
? -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: kernel panics when initializing aic7895 controller at startup.

2000-02-07 Thread Justin T. Gibbs
kernel) the error message "ahc0: brkadrintr, Data-path Parity Error at seqaddr = 0x14e" occurs. any ideas, that could help? I just want to make sure. Is your problem fixed now? -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: [PATCH] Please test the PS/2 mouse driver patch

2000-02-01 Thread Justin T. Gibbs
ic' device, but I do notice some odd behavior if I move the trackpoint really fast. I've always assumed that this was from a spurious double-click event caused by pressing on the trackpoint, but I could be wrong. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe

Re: [PATCH] Please test the PS/2 mouse driver patch

2000-01-27 Thread Justin T. Gibbs
found on Thinkpads? The version on my 770X has a double click by "pushing hard on the trackpoint" feature. It also has the ability to do the scroll thing if you hold the middle mouse button and move the trackpoint. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsu

Latest pkg_delete core dumps

2000-01-17 Thread Justin M. Seger
; state: Exp; lines: +24 -3 Teach pkg_delete and pkg_info how to deal with full pathnames (/var/db/pkg/foo-1.0, instead of just foo-1.0). Submitted by: Matthew D. Fuller [EMAIL PROTECTED] If no one else fixes it, I'll try to look at it later today. Thanks, Justin To Unsubscribe: send mail

Re: Strange SCSI related system hang

2000-01-10 Thread Justin T. Gibbs
for the target to request the next byte at the time this occurs, but that request never comes. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: AHC0 fireworks ?

1999-11-25 Thread Justin T. Gibbs
connector had been loose for a long time and has just shifted to the point of causing a failure. Open your case, reseat everything and see if the problem clears up. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: How do I get a PCCARD modem to work?

1999-10-10 Thread Justin T. Gibbs
It seems Justin T. Gibbs wrote: It looks like both nsio and sio have PCCARD support disabled at the moment. Is there any other way I can get the system to recognize my modem? Fix the broken sio, it might be KNF and all but it doesn't work... -Soren The pccard brokenness is not sio's fault

Re: ahc panics and (da2:ahc2:0:2:0): data overrun detected in Data-Out phase. Tag == 0x25.

1999-10-07 Thread Justin T. Gibbs
not provided a buffer with any data in it. -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

How do I get a PCCARD modem to work?

1999-10-07 Thread Justin T. Gibbs
It looks like both nsio and sio have PCCARD support disabled at the moment. Is there any other way I can get the system to recognize my modem? -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Weird new SCSI diagnostics in -current

1999-08-30 Thread Justin T. Gibbs
I'm noticing some new output. What does it mean and is it going to stay there? :-) Peter killed these last week. - Jordan -- Justin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: FP exceptions broken (Re: Interesting bogons from last night's 4.0 snapshot.)

1999-05-30 Thread Justin T. Gibbs
and interrupts end up being serviced by the dummy probe routines. Do you record this stuff anywhere? I think we should have a Bruce's nits page so this stuff isn't forgotten. -- Justin To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: hanging root device to da0s1a

1999-05-22 Thread Justin T. Gibbs
In message 199905192231.qaa09...@narnia.plutotech.com, Justin T. Gibbs wri t es: In article 199905191637.jaa03...@dingo.cdrom.com you wrote: I'm not sure why it happens like this; try putting a DELAY() just before we actually set the root device and see if you can put it off. Why not just spl

Re: hanging root device to da0s1a

1999-05-22 Thread Justin T. Gibbs
. There are also devices like scanners and older WORM devices that can take up to a minute to become ready. It seems quite silly to me to hold up booting for devices that are not even referenced during boot. -- Justin To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current

Re: hanging root device to da0s1a

1999-05-21 Thread Justin T. Gibbs
into the console buffer? This would just move the race. It is probably already elsewhere for serial consoles. Perhaps I should use the log facility instead of printf in the announce code? -- Justin To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body

Re: hanging root device to da0s1a

1999-05-19 Thread Justin T. Gibbs
into the console buffer? -- Justin To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: About that 'new-bus' stuff.

1999-04-12 Thread Justin T. Gibbs
are primarily from the fact that NetBSD has enhanced or modified their interfaces since my original work and I haven't found the time to sync us back up. Warner -- Justin To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: CAM changes causing prob?

1999-04-09 Thread Justin T. Gibbs
. There seems to be some relation to how recently the last lot of tape activity was (althought this is rather tenuous). It would be usefull to see the ps -l output for the hung process so we know what resource it is blocking on. -- Justin To Unsubscribe: send mail to majord...@freebsd.org

Re: How to add a new bootdevice to the new boot code ???

1999-03-21 Thread Justin T. Gibbs
use MMC now and cdrecord supports MMC devices. Why write another utility if there is already one that speaks the necessary language that our users are familiar with? OK, I'm done discussing this (se my other mail), I'd rater spend my (very limitted) time productively. Fair enough. -- Justin

Re: How to add a new bootdevice to the new boot code ???

1999-03-20 Thread Justin T. Gibbs
are slightly different. But hey, I don't have the time to work on ATAPI. Soren does, so he gets to call the shots. -- Justin To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: How to add a new bootdevice to the new boot code ???

1999-03-20 Thread Justin T. Gibbs
than by device node too - it would practically eliminate the need for hard wiring of devices. -- Justin To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: How to add a new bootdevice to the new boot code ???

1999-03-20 Thread Justin T. Gibbs
I half suspect that what Justin had in mind at some point was a set of common code that is either #ifdef'ed or otherwise preprocessed to produce a standalone 'SCSI-CAM' system versus an 'ATA[PI]-CAM' system. This would have the advantage of having all the common code together in one place

Re: How to add a new bootdevice to the new boot code ???

1999-03-20 Thread Justin T. Gibbs
peripheral driver here, but CAM doesn't tie your hands one way or the other. -- Justin To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: How to add a new bootdevice to the new boot code ???

1999-03-19 Thread Justin T. Gibbs
. Until DEVFS is a reality, the kernel will still need to perform a name to major number translation, but it should be left up to the kernel. -- Justin To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: repeated ufs_dirbad() panics on 4.0-c

1999-03-18 Thread Justin T. Gibbs
# Are you *sure* you're running -current as of today? Justin put code in to # silence Illegal request error messages from the sync cache command. These messages, since they are occurring only during a panic, are caused by the code in dashutdown(). I didn't modify this code in my last checkin

Re: Serious mbuf cluster leak..

1999-02-12 Thread Justin C. Walker
for web server, file server, and other-server types of uses, and haven't seen any (reports of) leakage like this. I'll look more closely at the results we see, to verify that we don't have a problem. Regards, Justin From: Chris Csanady ccsan...@friley-185-205.res.iastate.edu> Date: 1999-02-1

Re: Problem booting from aic7890/91 Ultra2 SCSI

1999-01-17 Thread Justin T. Gibbs
that was fixed a day or so later. -- Justin To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: Changes to ahc driver broke kernel

1999-01-14 Thread Justin T. Gibbs
. -- Justin To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

<    1   2   3