Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-01-04 | Stop abusing phys_map to know if it is safe to use malloc in extent routines; | Miod Vallat | |
instead use a global flag, like some other architectures do. No functional change. | |||
2006-01-04 | Do not return zero in bus_space_map() on failure (sigh). | Miod Vallat | |
2006-01-04 | Use symbolic constants for the MACE ISA address range in mace_space_unmap() | Miod Vallat | |
too! | |||
2006-01-04 | Better rounding logic when registering memory regions in uvm; we would lose | Miod Vallat | |
a page per region by mistake. | |||
2006-01-04 | detect lm96000 | Theo de Raadt | |
2006-01-04 | Make sure we unmap io space if we fail to attach. | Mark Kettenis | |
"makes sense" deraadt@ | |||
2006-01-04 | split out I2C_DEBUG into I2C_VERBOSE. VERBOSE is on. Turn on DEBUG to | Theo de Raadt | |
show more information to i2c developers. thanks. | |||
2006-01-04 | Move bpf_mtap_hdr() after trunk_*_input() so that we hopefully see only one | Brad Smith | |
copy of the packet with bpf. From mcbride@ some testing by todd@, ok reyk@ | |||
2006-01-04 | add sysctl machdep.console_device support | Martin Reindl | |
2006-01-04 | sync | Alexander Yurchenko | |
2006-01-04 | Add via kt880 agp; from Mike Belopuhov <mkb@crypt.org.ru> | Alexander Yurchenko | |
2006-01-04 | missing zero | Martin Reindl | |
from KUDO Takashi | |||
2006-01-04 | Remove redundant calls to bpfdetach. | Can Erkin Acar | |
ok brad@ | |||
2006-01-04 | regen | Brad Smith | |
2006-01-04 | better | Brad Smith | |
2006-01-04 | regen | Brad Smith | |
2006-01-04 | - add 2 SiS PCI to PCI bridges | Brad Smith | |
- add some new SiS PCI host bridges - fix names of the 96x entries, they are actually PCI-ISA bridges | |||
2006-01-04 | regen | Brad Smith | |
2006-01-04 | rename 8111 ACPI to 8111 Power | Brad Smith | |
2006-01-04 | driver for the nvidia nforce2/3/4 smbus controller. | David Gwynne | |
2006-01-04 | update comment to match what the code does as of rev 1.149. | Brad Smith | |
From Jochen <jochen at penguin-breeder dot org> in PR 4961 ok deraadt@ | |||
2006-01-03 | Add UFS2 softdep bits, okay tedu@ | Pedro Martelletto | |
2006-01-03 | Revert part of the previous committed by mistake. | Alexander Yurchenko | |
2006-01-03 | Correct interrupt type check. Pointed out by kettenis@, thanks. | Alexander Yurchenko | |
2006-01-03 | Try to prevent red stating the machine on a misaligned user space stack by | Mark Kettenis | |
SIGKILLing the process. ok miod@, henric@ | |||
2006-01-03 | Be careful not to change any registers. | Mark Kettenis | |
ok grange@, deraadt@; tested by krw@ | |||
2006-01-03 | Make #undef match its temporary #define. | Miod Vallat | |
2006-01-03 | work in progress on the Apple Sudden Motion Sensor found in recent | Xavier Santolaria | |
PowerBooks and iBooks, driver is commented out for now; with prodding, help and ok from kettenis@, ok deraadt@. | |||
2006-01-03 | remove duplicate comment; | Jason McIntyre | |
from thordur i. bjornsson; | |||
2006-01-03 | m_pullup the same amount we copied, not just the IP header. | Marco Pfatschbacher | |
Any pf(4) translation that modifies more than IP addresses, was happening on the shared mbuf cluster. Thus we were sending icmp errors with corrupted payload. OK dhartmei@, markus@ | |||
2006-01-03 | Fix UFS2 detection by looking for the super-block at every possible | Pedro Martelletto | |
location, testing krw@ and moritz@, thanks. | |||
2006-01-03 | Use "official" chip part names/numbers for matching. | Mark Kettenis | |
ok deraadt@ | |||
2006-01-02 | Check db_console before entering ddb. | Miod Vallat | |
2006-01-02 | Remove orphaned i2c_bitbang code, as well as i2c_bitbang and i2cexec | Miod Vallat | |
attributes. | |||
2006-01-02 | Faster signal trampoline code for m88k: instead of pushing everything on | Miod Vallat | |
the stack a la m68k, put handler arguments in register, transfer control to the handler directly, but have it return in the sigcode. While there, remove wrong comments about the sigcode being on top of the user stack. | |||
2006-01-02 | Remove orphaned cpu_exec_aout_makecmds() since we don't _KERN_DO_AOUT. | Miod Vallat | |
2006-01-02 | No need to check for P_INMEM in process_set_pc() and process_sstep(), as these | Miod Vallat | |
function are only invoked between PHOLD and PRELE. | |||
2006-01-02 | Merge enablertclock() in cpu_initclocks(), kill unused disablertclock(), and | Miod Vallat | |
remove a wrong comment aboute startrtclock() being invoked twice. | |||
2006-01-02 | Kill enablertclock. | Miod Vallat | |
2006-01-02 | fix typo in comment | Tom Cosgrove | |
ok deraadt@ | |||
2006-01-02 | add the 82801E SMBus controller id. | Brad Smith | |
2006-01-02 | use the correct format string directive %llu instead of "%ull". | Reyk Floeter | |
pointed out by Thorsten Glaser. | |||
2006-01-02 | remove last traces of __BROKEN_INDIRECT_CONFIG. | Brad Smith | |
Thanks to aanriot@ and Michael Knudsen for checking that alpha/i386/macppc kernels still compile. | |||
2006-01-02 | regen | Jonathan Gray | |
2006-01-02 | Make this generate code with ansi function declarations. | Jonathan Gray | |
No binary change in compiled version of generated file. | |||
2006-01-02 | mostly style nits; from kent@netbsd.org. | Federico G. Schwindt | |
some other cosmetical changes to make future merges easier. dlg@ ok. | |||
2006-01-02 | use pci_matchbyid. | Brad Smith | |
2006-01-02 | fix some typos and add open/close code of sync pipe, disabled for now. | Federico G. Schwindt | |
from kent@netbsd.org. dlg@ ok. | |||
2006-01-02 | make mixer names compatible with other audio devices. from kent@netbsd.org | Federico G. Schwindt | |
via netbsd pr 15441 by Kazuhito Honda. dlg@ ok this and previous diffs. | |||
2006-01-02 | regen | Brad Smith | |