summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Don't depend on implicit include of machine/bus.h in sys/rman.h, but insteadimp2004-07-133-0/+5
| | | | explicitly include it.
* pccard no longer requires a count because the floppy driver thatimp2004-07-131-1/+1
| | | | nominally had a non-working reference to card.h has been removed.
* Add support for multibyte characters.tjr2004-07-132-22/+47
|
* Remove even more references to generating usbdevs_data.h, et al.imp2004-07-121-9/+9
| | | | Noticed by: njl
* Remove the instructions for regenerating usbdevs.h: that's now noimp2004-07-121-13/+0
| | | | longer necessary.
* Rename low-level code ddb -> db. Use KDB instead of DDB.grehan2004-07-122-72/+72
| | | | | Fix bug in setup of stack frame where 8 bytes wasn't being saved for the callee's frame pointer and saved LR.
* Bring into KDB new order.grehan2004-07-122-18/+12
|
* - DDB -> KDB, with kdb routinesgrehan2004-07-122-46/+108
| | | | | | | - ddb -> db for low-level trapcode - implement makectx. I think it only matters that the stack is setup correctly. - bring over ddb_trap_glue and rename to db_trap_glue
* No need for ddb option. Never a need for ipkdb option.grehan2004-07-122-4/+0
|
* Catch up with gratuitous ddb -> db renaminggrehan2004-07-121-1/+1
|
* Bring into line with KDB. Bring in NetBSD updates for backtrace routine,grehan2004-07-121-149/+155
| | | | although it really needs a decent re-work.
* Remove unused NetBSD code. Bring mem r/w routines into here in linegrehan2004-07-121-341/+61
| | | | | | with sparc64, although keep the size deref checks: they are useful when accessing PCI space where some devices may not implement byte access.
* Gratuitous namechange to avoid low-level association with ddb.grehan2004-07-121-1/+1
|
* Add prototype for KDB's makectx routinegrehan2004-07-121-0/+2
|
* Remove old NetBSD-derived unused code and stuff that is now obsoletegrehan2004-07-121-33/+12
| | | | due to KDB.
* DDB -> KDB, and rename low-level trap handler to avoid name conflict.grehan2004-07-121-4/+4
|
* kdb.h for PowerPC. Stubs for now.grehan2004-07-121-0/+49
|
* Add new KDB option, and also drop in long-held fxp/dc eth drivers.grehan2004-07-121-1/+4
|
* db_memrw.c has been subsumed into db_interface.c ala sparc64grehan2004-07-121-1/+0
|
* Remove stray line with just a tabimp2004-07-121-2/+2
| | | | | | Remove usbdevs_data.h, it isn't used by the module Noticed by: Pawel Worach
* Rename Alfred's kern_setsockopt to so_setsockopt, as this seems adwmalone2004-07-123-5/+5
| | | | | | | | a better name. I have a kern_[sg]etsockopt which I plan to commit shortly, but the arguments to these function will be quite different from so_setsockopt. Approved by: alfred
* Update to kdb.cognet2004-07-123-143/+46
|
* Remove the kbd_trap() declaration.cognet2004-07-121-2/+0
|
* Protect setjmp.h with #ifndef _MACHINE_SETJMP_H_.cognet2004-07-121-0/+3
|
* Forward declare "struct pcb", so that one does not need to includecognet2004-07-121-0/+2
| | | | <machine/pcb.h> before including <machine/pmap.h>.
* Implement a stub breakpoint().cognet2004-07-121-0/+5
|
* Implement makectx().cognet2004-07-121-0/+19
|
* Prototype makectx().cognet2004-07-121-0/+2
|
* Import bus_memio.h and bus_pio.h for arm.cognet2004-07-122-0/+66
|
* Import a kdb.h for arm, which contains stubs right now.cognet2004-07-121-0/+50
|
* Remove unnecessary softc bzero calls.njl2004-07-122-2/+0
|
* Add the ability to detach a battery. Now batteries that are detached arenjl2004-07-123-1/+33
| | | | also removed from the battery list.
* Update in preparation for adding the ACPI attachment.njl2004-07-124-68/+94
| | | | | | | | | | | | | | * Add an fdtype ivar. This will be the equivalent of fd->type. * Move enabling the FIFO to the end of attach. * Unify reset code into fdc_initial_reset(). * Add fdc_write_ivar(). * Update isa and pccard attachments accordingly. * Set the flags unconditionally in probe since they may be overridden by other probe routines. Both before and now, we're depending on probe being called a final time on the winning driver so the flags we get are the ones we intended. * Use the bus accessor macros instead of defining our own. * Remove duplicate assigns of fd->type.
* Teach gcore about the pathname field of '/proc/*/map' so that it doesn'trwatson2004-07-121-3/+3
| | | | | | | spin when its parser gets confused by a lack of end-of-line. Submitted by: Dan Nelson <dan@dan.emsphone.com> PR: 68839
* Constify 'rpcclnt_backoff'.rwatson2004-07-121-1/+1
|
* Constify 'spx_backoff'.rwatson2004-07-121-1/+1
|
* After each label in tcp_input(), assert the inpcbinfo and inpcb lockrwatson2004-07-122-2/+34
| | | | state that we expect.
* Procotol control block locking for netatalk DDP.rwatson2004-07-125-35/+134
|
* Imperfect synchronization solution to imperfect code: use a static 256rwatson2004-07-121-13/+16
| | | | | byte buffer in the stack for temporary printf results rather than a global buffer without synchronization.
* Remove 'Not used' comment: at_org_code is used, just not in netatalk/.rwatson2004-07-121-3/+0
|
* Remove an unused and unimplemented sysctl. (For the record, it was markedalc2004-07-121-10/+1
| | | | as unimplemented in revision 1.129 nearly six years ago.)
* writers must hold both sched_lock and the process lock; therefore, readersmtm2004-07-122-10/+5
| | | | need only obtain the process lock.
* document the 'I' and 't' commands in the help screen in top(1).alfred2004-07-121-2/+3
| | | | Submitted by: Alex Vasylenko lxv omut.org
* Remove 'td = curthread' that shadows the arguments to coda_root().rwatson2004-07-122-2/+0
| | | | Missed by: alfred
* Mimic ls(1) by putting an extra space before the year in old dateskientzle2004-07-121-1/+1
|
* Fix tab/space screwup in long_help()kientzle2004-07-121-1/+1
|
* Add fwip module.dfr2004-07-121-0/+1
|
* Add fwip module.dfr2004-07-121-0/+19
| | | | Submitted by: simokawa
* Make if_fwsubr.c dependant on fwip instead of firewire - there is notdfr2004-07-121-1/+1
| | | | much point including it if you aren't using IP over firewire.
* Remove an entry from the BUGS section: we have multibyte charactertjr2004-07-121-2/+0
| | | | support now.
OpenPOWER on IntegriCloud