Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-21 | repair intr establish error printf | Michael Shalayeff | |
2006-04-21 | the esm_sensor_maps describe esm sensors, not kernel sensors. i have no | David Gwynne | |
idea how i got this screwed up. found by lint. | |||
2006-04-21 | remove duplicate defines. another find by lint. | David Gwynne | |
2006-04-21 | implement outgoing interrupt pipes, lets my creative voip blaster work | Jolan Luff | |
from freebsd, ok dlg@ | |||
2006-04-21 | remove the ami_inquire prototype. the function doesnt exist and its not | David Gwynne | |
used anywhere. thanks lint. thint. | |||
2006-04-21 | recognize the BCM5752 A2 | Brad Smith | |
2006-04-21 | back out my last commit. | David Gwynne | |
art pointed out that timeout_set is the initializer of timeout structs. this means that the ONQUEUE flag could be set when timeout_set is given freshly allocated memory. my commit suddenly introduced the requirement that you bzero a timeout before initialising it. without the bzero we could generate false positives about the timeout being already queued. art did produce a diff that would walk the queues when the flag was set to see if it really was in the lists, but deraadt considers this too much of a hit. | |||
2006-04-20 | Add a few more devices integrated on nForce4 chipsets. | Mark Kettenis | |
2006-04-20 | open/close/cdevsw code goes bye bye; ok mbalber | Theo de Raadt | |
2006-04-20 | add SENSOR_TIMEDELTA sensor; ok dlg | Theo de Raadt | |
2006-04-20 | Fix various printf() issues: too many arguments, not enough arguments, argument | Miod Vallat | |
order reversed, wrong modifiers. ok deraadt@ marco@ mickey@ | |||
2006-04-20 | Make these compile again. | Miod Vallat | |
2006-04-20 | printf() calls with the format string spanning several lines should not have | Miod Vallat | |
trailing commas between string chunks, for this has unexpected effects. | |||
2006-04-20 | Cast unsigned to signed when you want to check for negative values. | Miod Vallat | |
2006-04-20 | no longer failure care; ok miod | Theo de Raadt | |
2006-04-20 | ANSI function declarations | Martin Reindl | |
prompted by brad@ | |||
2006-04-20 | Remove unused debug code that sneaked in by accident long ago | Pedro Martelletto | |
2006-04-20 | much -> must | Pedro Martelletto | |
2006-04-20 | marco hates typedefs as much as i do, so he asked me to clean mfi like i | David Gwynne | |
just did with ami. this gets rid of the typedef for the ccb lists. also uses TAILQ_FIRST to get ccbs off the freelist. this is a proactive fix for a lint teary. | |||
2006-04-20 | return after goto wont be reached, so remove it. found by lint. | David Gwynne | |
2006-04-20 | get rid of the ccb list typedef. while here switch to TAILQ_HEAD instead | David Gwynne | |
of TAILQ_TAIL when pulling ccbs off the free list since it does less "interesting" things with pointers. changes prompted by lint bitching. | |||
2006-04-20 | remove some useless code found by lint. | David Gwynne | |
2006-04-20 | - remove the 'needs-flag' from the udcf entry in files.usb and the #ifdef NUDCF | Marc Balmer | |
idom in udcf.c - declare t1 to t7 as static to prevent the risk of name clashes - add two missing function prototypes help and ok miod@ | |||
2006-04-20 | regen | Brad Smith | |
2006-04-20 | add the Belkin F5D6020 802.11b WLAN card. | Brad Smith | |
2006-04-20 | this is the proper fix for krws bug. i feel kinda bad taking the commit | David Gwynne | |
from him since he did most of the hard work on it. when marco added the sensor for logical disks he added some extra bits to the softc, but inside an #if NBIO > 0 block. NBIO is set by "bio.h" which was included in ami.c, but not in ami_pci.c which is what is actually responsible for getting the softc allocated. because of this the softc in the rest of the system was smaller than what ami.c needed, so technically it was using unallocated memory. in krws case that unallocated space was filled with garbage, hence his panic. the moral of this story is do NOT put #if inside structs that are passed between different source files. its too easy to have this kind of screwup happen. | |||
2006-04-19 | Get rid of the clock device attachment - since the clock is not something | Miod Vallat | |
we can live without, move it into the board-dependent code. This even makes the code slightly smaller. clock.c is moved from dev/ to mvme88k/ and only keeps common variables and delay(). | |||
2006-04-19 | Driver to decode the DCF77 time code using a USB attached Gude Expert | Marc Balmer | |
mouseCLOCK device; without a mechanism to pass data out. ok deraadt | |||
2006-04-19 | Count spurious interrupt as part of the alarming interrupt issues as well. | Miod Vallat | |
2006-04-19 | Better diagnostic messages in the MVME188 interrupt handler; also no need | Miod Vallat | |
to register an interrupt handler for the SYSCON board interrupts anymore, as we never trigger it. | |||
2006-04-19 | oops. forgot fnclex define (: | Michael Shalayeff | |
2006-04-19 | from todays freebsd advisory: fxrstor on amd cpu does not restore ↵ | Michael Shalayeff | |
fip,fdp,fop thus leaking other proc's execution history; deraadt@ ok | |||
2006-04-19 | curpcb is long gone and is a #define -- do not declare it global anymore (no ↵ | Michael Shalayeff | |
func change) | |||
2006-04-19 | Remove unused mount list simple_lock() goo | Pedro Martelletto | |
2006-04-19 | wdog_init is only called from wdog_register, so fold them in together. | David Gwynne | |
from mk. ok markus@ | |||
2006-04-19 | move the 82573E_KCS PCI id so it is grouped with the other 82573 ids. | Brad Smith | |
2006-04-19 | Make sure sc_first_poll is initialized to 0 so sensor_task_thread | Kenneth R Westerback | |
doesn't blow up on first call to ami_refresh(). There's probably a better fix, but this stops the crashes while that fix is found. ok dlg@ | |||
2006-04-18 | ANSIfy | Gordon Willem Klok | |
ok marco@, dlg@, mickey@ | |||
2006-04-18 | Bring back a kernel_text symbol, config -e needs it. | Miod Vallat | |
2006-04-18 | if you go timeout_set, timeout_add, and then timeout_set again you can | David Gwynne | |
screw up the queues that tie all the timeouts together. this makes us panic if we detect that happening. its a lot easier to debug that the weird side effects of broken timeout queues. ok mickey@ kettenis@ deraadt@ pedro@ | |||
2006-04-18 | - establish interrupt after all dma resouces are successfully allocated | Martin Reindl | |
- wrap an assertion with #ifdef DIAGNOSTIC - call bus_dmamap_sync for mdldmap at POSTWRITE for consistency - pass proper dmamapsize for mdldmap - Call bus_space_{read,write}_1() directly to access ncr53c9x common registers - Unload xfer dmamap in pscsp_dma_stop() - Free resources if attach fails From NetBSD | |||
2006-04-18 | add a few more Intel Gig PCI ids. | Brad Smith | |
Some of these are from jason@ and the rest are from the Linux PCI ids page. | |||
2006-04-18 | Make output in sysctl pretier. | Marco Peereboom | |
2006-04-18 | regen | Brad Smith | |
2006-04-18 | add a few more Intel Gig PCI ids. | Brad Smith | |
Some of these are from jason@ and the rest are from the Linux PCI ids page. | |||
2006-04-18 | If mpbios doesn't specify a valid CPU signature, fall back on information | Mark Kettenis | |
from the boot processor. ok mpf@, mickey@ | |||
2006-04-18 | Make sure we print crucial debug information before we panic. | Mark Kettenis | |
Stolen from mpf@ ok mpf@, mickey@ | |||
2006-04-18 | It helps to initialize a queue before usage. | Marco Peereboom | |
2006-04-18 | set the params that govern watchdog behaviour back to defaults when the | David Gwynne | |
wdog is shut down. from mk. ok markus@ | |||
2006-04-18 | Oops, correct import this time. | Miod Vallat | |