summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2003-02-25move NULLification to end so it's useful.Ted Unangst
ok jason@
2003-02-25Correct the size of __reserved9 field in struct ataparams;Alexander Yurchenko
from Yichen Xie's bounds checker via tedu@ ok costa@
2003-02-25- Handle src and dst comparisons correctly for binat so that it worksRyan Thomas McBride
properly in _both_ directions. - Handle skip steps properly with binat. (since we're swapping around src and dst comparisons, we can't use them in all cases) fix from dhartmei@ ok dhartmei@ henning@ cedric@
2003-02-25remove redundant check.Ted Unangst
ok henning@
2003-02-25Let pmap_remove_mapping() do its job correctly if option DIAGNOSTIC isMiod Vallat
not defined (such as on RAMDISK kernels). Oops.
2003-02-25In trap(), always initialize tts, even if TRAPDEBUG is not defined, as itMiod Vallat
might needed for panic() messages. ok mickey@
2003-02-25set *vpp to NULL on entry. this provides a good example for other fs.Ted Unangst
ok art@
2003-02-25remove useless check.Ted Unangst
ok niklas@
2003-02-25correct bounds check. yichen xie's bounds checker catch.Ted Unangst
ok niklas@
2003-02-25fix off by one signal checks. thanks yichen's checkerTed Unangst
ok niklas@
2003-02-25Destaticize, and add RAMDISK_HOOK glue for bsd.rdMiod Vallat
2003-02-25fix two off by onesTed Unangst
credit to Yichen Xie's bounds checker ok mickey@
2003-02-24correct check for the size of semitonesTed Unangst
credit to Yichen Xie's bounds checker ok mickey@
2003-02-24Hammer the disklabel code once more: a few fixes, lots of simplifications,Miod Vallat
read the label and the Apple DPME partition table in one shot (this idea from NetBSD), and generally make things much safer. Solves spurious panic while building labels on disks with a large number of DPME partitions.
2003-02-24use M_MISCFSMNT instead of M_UFSMNT for mount dataTed Unangst
ok art@
2003-02-24Use MAKEDISKDEV and DISKUNIT macros instead of rolling our own inline versionMiod Vallat
of them.
2003-02-24Do not redefine stuff already in <sys/disklabel.h>Miod Vallat
2003-02-24SADB_X_CALG_MAX is supposed to be the highest numbered supported algorithmJason Wright
(prevents a crash in the debugging code in pfkeyv2_parsemessage.c)
2003-02-24Detypoing; henric@ and meAlexander Yurchenko
2003-02-24Add support for LZS compression (only usable by ipcomp at the moment)Jason Wright
2003-02-24more tcfs bye byeTheo de Raadt
2003-02-24Defer the iomem extent initialization until the MMU is enabled. This isMiod Vallat
necessary since the last pmap changes, to get proper serial console initialization. From NetBSD, tested by nick@
2003-02-24Oops, forgot to commit that part of the pmap_kenter changes; spotted by art@Miod Vallat
2003-02-24correct typoTed Unangst
ok art@
2003-02-24bye bye tcfsTheo de Raadt
2003-02-24For CMD chips call pciide_chan_candisable() for both channels to preventAlexander Yurchenko
setuping channel 0 without any drives. This solves a long delay during the pciide probe on a diskless sparc64. Found and tested by miod@.
2003-02-24Remove tcfs until this entire licensing mess is cleaned up. This isTheo de Raadt
ANOTHER case of a developer having ignored licenses when importing code.
2003-02-24Sync struct pcb and struct mdproc with what other m68k ports use. This willMiod Vallat
eventually be factorized someday...
2003-02-24Prefer pmap_kenter_pa() rather than pmap_enter() for the buffers.Miod Vallat
2003-02-24Various typos.Miod Vallat
2003-02-23initialize errorTed Unangst
ok miod@
2003-02-23typo in export_auth; ok ho@Markus Friedl
2003-02-22don't use home grown timeval comparison when timercmp() is available; ↵Jason Wright
pointed out by henric
2003-02-22always use %tick based microtime (ie. remove conditional for counter-timer)Jason Wright
2003-02-22check for a NULL tag in bus_space_render_tag() so that other debug code ↵Jason Wright
doesn't crash.
2003-02-22rearrange allocations and such so that this actually attaches (still panicsJason Wright
when attaching the pcibus... Still working on it =)
2003-02-21Plug two mbuf leak on error bugs, one from dhartmei one from me.Jason Wright
2003-02-21remove useless assignmentTed Unangst
ok jason@
2003-02-21kill unused variablesTed Unangst
ok jason@
2003-02-21There's no cleaning necessary for deflate compression, so remove it fromJason Wright
the switch.
2003-02-21Fix Manuel Bouyer's copyright, from NetBSDAlexander Yurchenko
ok deraadt@
2003-02-21remove unused variableTed Unangst
ok mickey@
2003-02-21Print the pa not ldxa(pa)Jason Wright
2003-02-21- kill several unnecessary static'sJason Wright
- fix debugging code so it doesn't generate crashes itself
2003-02-20Fix a crash in the systrace found by form@Artur Grabowski
One is a kernel fix that changes the lockin and one is a userland fix that prevents dereferencing a freed pointer. From provos deraadt@ ok
2003-02-20knfTheo de Raadt
2003-02-20If there's no tag to be reset, don't reset it (avoids a NULL deref in the ↵Jason Wright
IPCOMP case)
2003-02-20no trailing newline in panic(); PR 3103Henning Brauer
2003-02-20Fix the mask and sign extension for bl instruction which branch backwards.Dale Rahn
When printing the address, address has already been added according to AA.
2003-02-20Eliminate unused parameter to scsi_free_xs().Kenneth R Westerback
ok deraadt@ tdeval@