Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-01-30 | A bit of hacking on awacs to try to get audio input working. | Dale Rahn | |
interrupts and buffer handling seems to be occurring correctly. All audio samples are zero'ed however. Dont know if the problem is with audio source control or with DMA. audio output still works. A few changes were other changes from netbsd which seemed to make sense. | |||
2002-01-30 | IOCTL for retrieving traces from the ATA subsystem | Constantine Sapuntzakis | |
2002-01-29 | Don't install a handler for powerfail... this causes weird problems with | Jason Wright | |
the Netra X1 (interactions with lom) | |||
2002-01-29 | Remove the iov2pages/mbuf2pages API... All of the relevant arch's support | Jason Wright | |
bus_dma(9) which actually does this job correctly. | |||
2002-01-29 | process the delayed-free queue more often; chs@netbsd.org | Todd C. Miller | |
2002-01-29 | Honor the printf-like function argument in pool_printit(), instead of | Miod Vallat | |
using printf(). Makes ddb sessions more fruitful. | |||
2002-01-28 | yes, there is no sense in double savectx here; from Brian J. Kifiak <bk@rt.fm> | Michael Shalayeff | |
2002-01-28 | add NFS_VER4 | Jim Rees | |
2002-01-28 | match on corega CGWLPCIA11; from <jonathon.fletcher@pobox.com> | Michael Shalayeff | |
2002-01-28 | add hifn, ubsec, and autri (warning, autri's sound defaults are a bit | Jason Wright | |
on the loud side...) | |||
2002-01-28 | Add "boot reboot" to please jason@ and "boot poweroff" to please drahn@. | Miod Vallat | |
2002-01-28 | Try to share a common src/dst map where possible, and cope with that | Jason Wright | |
eventuality later in the code. | |||
2002-01-28 | First round of post-bus_dma cleanups: | Jason Wright | |
- remove the packl/packp arrays and rework handling appropriately - destination map may or may not exist, cope. - remove a redundant bus_dmamap_sync() in _process (real sync is in _feed) - remove long deprecated q_{src,dst}pkt stuff from queue structure | |||
2002-01-28 | Quick (and a little dirty) conversion to bus_dma(9). | Jason Wright | |
2002-01-28 | Even more GC. | Artur Grabowski | |
2002-01-28 | allocate vm pages with uvm_km_alloc (this code is ifdefed out anyway). | Artur Grabowski | |
2002-01-28 | malloc/free is not really used for pvs allocs | Michael Shalayeff | |
2002-01-28 | GC PR_STATIC and PR_MALLOCOK. | Artur Grabowski | |
PR_MALLOC wasn't used at all in the code and PR_STATIC was missing pieces and should be solved with allocators. | |||
2002-01-28 | PR_MALLOCOK is not necessary. | Artur Grabowski | |
2002-01-28 | Re-port the NetBSD driver, but rewrite tx logic to use static buffers (and | Jason Wright | |
copies). This makes the Blade100 gem stable for me. | |||
2002-01-27 | bt no more | Michael Shalayeff | |
2002-01-27 | bt no more | Michael Shalayeff | |
2002-01-26 | Kludge, protect against bus faults during pci probes. allows OpenBSD | Dale Rahn | |
to boot on a B&W G3. | |||
2002-01-26 | splclock() should block SPL_BIO - SPL_IMP. | Dale Rahn | |
2002-01-25 | properly identify gem as a boot device | Jason Wright | |
2002-01-25 | CEAFSR defns | Jason Wright | |
2002-01-25 | Reg defs for UEAFSR | Jason Wright | |
2002-01-25 | offset to com regs is just a common iomod offset, accomodate for com console | Michael Shalayeff | |
2002-01-25 | offset cons hpa to com regs, damnit | Michael Shalayeff | |
2002-01-25 | see if we are a console | Michael Shalayeff | |
2002-01-25 | tell wsdisplay if we are a console | Michael Shalayeff | |
2002-01-25 | init conaddr/unit if page0->mem_cons is on serial | Michael Shalayeff | |
2002-01-25 | do not conflict PF_ /w pf -- rename to PZF_ and define _BITS | Michael Shalayeff | |
2002-01-25 | define CONADDR and CONUNIT | Michael Shalayeff | |
2002-01-25 | CONADDR is defined elsewhere for hppa | Michael Shalayeff | |
2002-01-25 | In encap, sync mbuf before writing descriptors | Jason Wright | |
2002-01-25 | Don't defer attachment of devices on USB (we need the keyboard asap) | Jason Wright | |
2002-01-25 | Add a drain hook to each pool. This hook is called in three cases. | Artur Grabowski | |
1. When a pool hit the hard limit. Just before bailing out/sleeping. 2. When an allocator fails to allocate memory (with PR_NOWAIT). 3. Just before trying to reclaim some page in pool_reclaim. The function called form the hook should try to free some items to the pool if possible. Convert m_reclaim hooks that were embedded in MCLGET, MGET and MGETHDR into a pool drain hook (making the code much cleaner). | |||
2002-01-25 | allocate pmaps with pool. | Artur Grabowski | |
2002-01-25 | poolify pcreds. | Artur Grabowski | |
2002-01-25 | Convert plimit allocations to pool. | Artur Grabowski | |
2002-01-25 | Disestablish *powerhook* on detach. jason@ ok | Thomas Nordin | |
2002-01-25 | multi-session support; from NetBSD. millert@ ok | Federico G. Schwindt | |
this only affects iso_mountfs(), not disklabel. code for it may be added later. | |||
2002-01-25 | Instead of finding pages matching this physical page, match this specific | Dale Rahn | |
entry. Also terminate the search as soon as this entry is found. | |||
2002-01-25 | kernel printfs triggerable by a simple mistake in userland are just wrong. | Artur Grabowski | |
2002-01-25 | Remove kbd_ms_ttyvar.h... Unneeded file from NetBSD. | Jason Wright | |
2002-01-25 | How did this work? It used to attempt the tlb entry for a mapping it is | Dale Rahn | |
removing by using the va it is replacing it with, NO!. Calculate the va of the mapping by inverting the pte_hi calculation producing bits 4-19 of the address. This is enough to correctly invalidate the tlb entry for the mapping being removed. | |||
2002-01-25 | GC some more malloc types. | Artur Grabowski | |
2002-01-25 | Remove more NKBD/NMS references (jason == cpp tonight I guess) | Jason Wright | |
2002-01-25 | move the scancode -> wskbd event map into a seperate file... more still | Jason Wright | |
to move, though. |