Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-05-19 | Add some phy's found on certain xl(4) models. From brad at comstyle dot com. | Mark Kettenis | |
2007-05-19 | Uncomment em(4) entry. From brad at comstyle dot com. | Mark Kettenis | |
2007-05-19 | Oops, get the ``disabling cpu'' message correct. | Miod Vallat | |
2007-05-19 | Silence a diagnostic message in multiprocessor kernels, it makes things worse. | Miod Vallat | |
2007-05-19 | Send an IPI in signotify() if the process runs on a different processor, | Miod Vallat | |
similar to the fix which went into i386 and amd64 a few weeks ago. | |||
2007-05-19 | Force other processors to spin when one is in ddb. | Miod Vallat | |
2007-05-19 | (disabled) option for PCIAGP. at least lets i945 chipsets work | Ted Unangst | |
ok dim | |||
2007-05-19 | aps works on amd64, ok jsg | Ted Unangst | |
2007-05-19 | the thinkpad 60 models are in "state" 5. | Ted Unangst | |
ok deraadt jasper jsg mk | |||
2007-05-19 | Uncomment entry for xl(4) here too. | Mark Kettenis | |
2007-05-19 | Add a GENERIC.MP configuration, not for the faint of the heart, if you want | Miod Vallat | |
to play. | |||
2007-05-19 | Try reducing the number of IPIs, by only reinflicting them to us if we are | Miod Vallat | |
lowering the spl. Also, warn and halt in tracks if the interrupt pin of a secondary cpu never clears (found the hard way in one of the 2P256 modules here), since there is nothing better we can do. Last, do not attempt to handle VME interrupts on secondary processors yes (this confuses the bus, since both processors will perform a VME interrupt acknowledge sequence, but only one will succeed). This lets processes correctly run on all the available processors in single-user mode, but there are still issues to sort out. | |||
2007-05-19 | Uncomment xl(4). | Mark Kettenis | |
2007-05-19 | Simpler asm constraints for simplelock operations. | Miod Vallat | |
2007-05-19 | My 3c905C needs a brief pause after reset for PIO too, at least on hppa. | Mark Kettenis | |
tested by thib@, ok deraadt@ | |||
2007-05-19 | regen | Moritz Jodeit | |
2007-05-19 | Add Radeon X700 PCIE, Radeon X700 PCIE Secondary and Marvell 88SE6145 SATA. | Moritz Jodeit | |
2007-05-19 | Kernel crash dump support for arm-based platform, with minimal support in | Miod Vallat | |
libkvm, but all the necessary information for a complete _kvm_kvatop() is available in the crash dump. | |||
2007-05-19 | Implement splassert for armish and zaurus. | Miod Vallat | |
2007-05-19 | command ids for mailbox commands | David Gwynne | |
2007-05-19 | Use atomic operations in set_sint() instead of disabling interrupts in the | Miod Vallat | |
function. ok kettenis@ | |||
2007-05-19 | stash the dma tag in sli_softc | David Gwynne | |
2007-05-19 | hook up interrupts, but a little different to what i usually do. this maps | David Gwynne | |
the interrupt before the bus independant code is attached, and establishes the interrupt after that. | |||
2007-05-18 | fix the check of wsmouse_calibcoords values and | Robert Nagy | |
invert the X or Y coordinates to make the top left corner (0,0). | |||
2007-05-18 | More work in IPI processing: actual processing is now done with interrupts | Miod Vallat | |
enabled, and is delayed if the current spl is not high enough; setipl() and raiseipl() will retrigger an IPI interrupt if there are any pending IPIs. | |||
2007-05-18 | Move proc_do_uret() around so that it can fall through no_ast instead of | Miod Vallat | |
jumping to it. No functional change. | |||
2007-05-18 | In spl0(), really process soft interrupts at IPL_SOFT instead of whatever | Miod Vallat | |
level we were at. | |||
2007-05-18 | Revert previous revision, and do it again correctly. | Miod Vallat | |
2007-05-18 | Dont write to the string passed to parsedisk(), ok deraadt@ | Dale Rahn | |
2007-05-18 | Widen the SCHED_LOCK in two cases to protect p_estcpu and p_priority. | Artur Grabowski | |
kettenis@ ok | |||
2007-05-18 | Fix io space access. | Mark Kettenis | |
tested by krw@, miod@, ok deraadt@ | |||
2007-05-18 | regen | Mark Kettenis | |
2007-05-18 | Add IDs for 8700/pcxw2 cpu and fpu. | Mark Kettenis | |
2007-05-18 | Instead of checking whichqs directly, add a "sched_is_idle()" macro to | Artur Grabowski | |
sys/sched.h and use that to check if there's something to do. kettenis@ thib@ ok | |||
2007-05-18 | Instead of a silly loop with goto, just use while(1). | Artur Grabowski | |
2007-05-18 | in case of pre-configured nfs, we must assume that the bootdv is the rootdv | Theo de Raadt | |
2007-05-18 | spelling in comment fix | David Gwynne | |
2007-05-18 | remove the COMPAT entries. they are not useful here | Ted Unangst | |
2007-05-17 | Collapse struct v_selectinfo in struct vnode, remove the | Thordur I. Bjornsson | |
simplelock and reuse the name for the selinfo member. Clean-up accordingly. ok tedu@,art@ | |||
2007-05-17 | Since we're initializing everything in pmap_pinit, it's probably a good | Artur Grabowski | |
idea to initialize pm_cpus as well. Otherwise we'll get stray tlb shootdowns and pm_cpus is not clear on exit sometimes. | |||
2007-05-17 | There's no reason to keep track of gdt_count, we only use it for | Artur Grabowski | |
copying the intial gdt when spinning up secondary cpus and then we can simply use gdt_size for that. From mickey, art@ ok | |||
2007-05-17 | Limit hppa buffer cache to 30%. It used to be 70% because stack garbage | Artur Grabowski | |
that was used for minaddr instead of the proper vm_map_min(kernel_map) (fixed in this diff). From mickey. art@ ok | |||
2007-05-17 | provide dummy device_register() | Martin Reindl | |
2007-05-17 | copy the lladdr from the arpcom struct onto the hardware when the interface | David Gwynne | |
is brought up. this driver now supports all the features our network layer expects of it. | |||
2007-05-17 | support changing the mtu up to the maximum frame size it currently | David Gwynne | |
supports (MCLBYTES). | |||
2007-05-16 | fix return values in bridge_output. | Michele Marchetto | |
OK claudio@ jason@ | |||
2007-05-16 | forgot this one in my previous commit. | Thordur I. Bjornsson | |
splassert_ctl defaults to 1 now, so dont wrap the checks for splassert_ctl > 0 in __predict_false(). ok deraadt@ | |||
2007-05-16 | splassert_ctl defaults to 1 now, so dont wrap the checks for | Thordur I. Bjornsson | |
splassert_ctl > 0 in __predict_false(). ok deraadt@ | |||
2007-05-16 | The world of __HAVEs and __HAVE_NOTs is reducing. All architectures | Artur Grabowski | |
have cpu_info now, so kill the option. eyeballed by jsg@ and grange@ | |||
2007-05-16 | we need a cpu_info_store; how did miod miss this? | Theo de Raadt | |