summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-12-05Add TRENDnet TEW-401PCplus CardBus adapter.Marcus Glocker
Reported by Inigo Tejedor Arrondo.
2007-12-05Revert change which seems to break things like dhclient. Requested byKenneth R Westerback
deraadt@.
2007-12-04Work in progress SMP code for 88110 processor using the BusSwitch chip asMiod Vallat
an IPI facility, for MVME197DP. It's still missing a few remote cache IPIs and IPI do not seem to be reliably triggered on remote processors at the moment (but this could be a problem on the board I am currently testing on), at least it will boot multiuser using only cpu0 to schedule processes.
2007-12-04syncTheo de Raadt
2007-12-04new device; graeme@omni.net.auTheo de Raadt
2007-12-04Correctly set the stack pointer of a secondary processor to the endMiod Vallat
of its initialization stack. Oops.
2007-12-04disable uticom until we receive oneTheo de Raadt
2007-12-04syncTheo de Raadt
2007-12-04Remove remains of the idle pcb/stack.Mark Kettenis
ok miod@
2007-12-04expresscard ral(4) rt2860 now can attach and detach correctlyTheo de Raadt
ok kettenis
2007-12-04Make puc(4) detachable.Mark Kettenis
Tested by millert@
2007-12-04syncTheo de Raadt
2007-12-041500 is a 'magic number' in the protocol that all implementationsClaudio Jeker
must be able to handle as MRU but while testing pppoe(4) against a pppoe(8) server I figured out that pppoe(8) insists on a MRU 1492. Because of this we allow the offered MRU to be between PP_MIN_MRU and PP_MAX_MRU especially because the MRU is not used at all as long as it is smaller then PP_MAX_MRU. OK canacar@
2007-12-04Always compare the nexthop if one is specified even if it is a non-multipathClaudio Jeker
route. This mostly affects "route delete" and it will not remove the last route if previous delete is redone. OK henning@
2007-12-04fix out of partition/memory bounds access when accessing blocks at the tailOtto Moerbeek
end; avoids bad address errors; original diff by me with cleanup by millert@; ok millert@
2007-12-04show some -d examples; ok jmcTheo de Raadt
2007-12-04Some ExpressCard cards have old PCI devices and a PCIe-PCI bridge.Mark Kettenis
In that case, configure the bridge and all devices behind it.
2007-12-04missing change from 1.6.9p9Todd C. Miller
2007-12-04revert SIGQUIT catching; requested by deraadtFederico G. Schwindt
2007-12-04syncTheo de Raadt
2007-12-04catch SIGQUIT too. ckuethe@ and henning@ ok.Federico G. Schwindt
2007-12-04In double_reg_fixup(), do not rely on tf_r[0] being zero.Miod Vallat
2007-12-04Better cache routines for 88410, will only flush in pages instead ofMiod Vallat
flushing the whole secondary cache. This does not work around the snooping errata yet, I'm trying to get something not too ugly first.
2007-12-04Program the abort interrupt source correctly.Miod Vallat
2007-12-04Improve setregs() so that it performs the equivalent of the first twoMiod Vallat
instructions of the new binary, which allows them to be skipped unconditionaly.
2007-12-04Faster splassert_check()Miod Vallat
2007-12-04Fix userland vs system test in errata #16 handling.Miod Vallat
2007-12-04allow the usb serial number to be printed in verbose mode. this isChris Kuethe
useful for people writing custom hotplugd(8) scripts, as well as ipod users. ok deraadt
2007-12-03Check for G channels before B when setting the (eeprom) mode.Federico G. Schwindt
based on a change from Luis R. Rodriguez <mcgrof at gmail dot com>. reyk@ ok
2007-12-03document daily(8) log rotation;Jason McIntyre
based on a report filed in netbsd pr #37467, from Ben Wong;
2007-12-03update to sudo 1.6.9p9Todd C. Miller
2007-12-03set the value before freeing the result; marco@ ok.Federico G. Schwindt
2007-12-02SyncKenneth R Westerback
2007-12-02Add Radeon Mobility M10 NT, as seen on his T42p by Alexander Holupirek, whoKenneth R Westerback
kindly looked it up on www.pcidatabase.com.
2007-12-02One last missing IPL_VM.Miod Vallat
2007-12-02Added AMLOP_BREAKOPINT function handler for X40 systemsJordan Hargrave
ok marco@
2007-12-02Fixes acpidump on DL145 systems; method defined within another methodJordan Hargrave
ok brad@
2007-12-02fix the trailing space for real now.Federico G. Schwindt
2007-12-02Rework mmu initialization so that we do not actually enable translationMiod Vallat
until cmmu_set_sapr(). Also, do not enable snooping on MVME197LE, so that we don't have to add workarounds for snooping problems later.
2007-12-02Do not take biglock for NOLOCK system calls.Miod Vallat
2007-12-02Only check for errata #16 for instruction faults.Miod Vallat
2007-12-02Add a workaround for the MVME197LE reset issue when not system controller.Miod Vallat
2007-12-02Remove 88110 control registers accessors which are never used anywhere.Miod Vallat
2007-12-02The beginning of a real floating-point exception handler for the 88110. TheMiod Vallat
existing code to enable TCFP was broken, as it was not setting the TCFP bit in the right register. So far, the exception handler will deliver SIGFPE in all cases. It will eventually do the necessary rounding, and handle the odd-numbered register pair operation, as I get time to write this (or see how much can be lifted from the 88100 floating-point exception code).
2007-12-02Do not pass UPAGES and USPACE (under the name USIZE) in assym.h, code whichMiod Vallat
needs it includes <machine/param.h> already.
2007-12-02Since the 88110 doesn't disable the FPU when handling an exception (and doesMiod Vallat
not need to), do not try to handle exceptions occuring when we re-enable shadowing as special - these are just nested exceptions. While there, add a workaround for the 88110 rte errata (#18).
2007-12-02Better inline assembler constructs.Miod Vallat
2007-12-02Sort and clean definitions. No functional changes.Miod Vallat
2007-12-02When setting up the vectors page, do not put a nop as the first instructionMiod Vallat
if the processor is a 88110, since only the 88100 suffers from the ``will fetch one instruction too far'' bug.
2007-12-02Provide faster bcopy() and bzero() routines for pmap_copy_page() andMiod Vallat
pmap_zero_page().