summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Expand)Author
2010-12-31In db_write_bytes(), cope with memory addresses mapped by the two hardwiredMiod Vallat
2010-12-31Provide a lint-friendly __va_copy(), as done on all other platforms.Miod Vallat
2010-12-30If genassym fails, sort on the pipeline will indicate no error resultingTheo de Raadt
2010-12-30Since we save the interrupt mask in the trapframe when we get a trap, weMark Kettenis
2010-12-30Prior to loading the FPU context onto the current CPU, check to see if theJoel Sing
2010-12-30Turn signotify() into a function that also calls cpu_unidle().Joel Sing
2010-12-30Implement cpu_unidle() for MP kernels.Joel Sing
2010-12-30add a simple __va_copy inside ifdef lint, from tim van der molen.Ted Unangst
2010-12-29Bus clock doesn't matter on the Xeon 3600/5600 and Xeon 6500/7500, so don'tMark Kettenis
2010-12-28Previous diff had a buglet, found the hard way by pea@Miod Vallat
2010-12-27Correct x86_atomic_*_ul() to operate on 64bit integers, eliminatePhilip Guenthe
2010-12-27Eliminate x86_multicast_ipi() as unused and broken (doesn't handle #cpu>32).Philip Guenthe
2010-12-27Do not issue a cache maintainance operation until the last one is notMiod Vallat
2010-12-27Properly initialize MXCSR and XMM registers if we only write the x87 FPU stateMark Kettenis
2010-12-26Misplaced splx() in pmap_unsetbit().Miod Vallat
2010-12-26Kill pmap_phys_address(), and force every driver's mmap() routine to returnMiod Vallat
2010-12-26Clean up how we print the sbus(4) clock speed. Purely cosmetic.Mark Kettenis
2010-12-24the bsdi ldt entry is no longer interesting. from valdimir kirillovTed Unangst
2010-12-24Advertise printk() as a printf-like function.Alexander Yurchenko
2010-12-24Add missing argument to printk(). Spotted while porting on linux 2.6.Alexander Yurchenko
2010-12-23Better malloc the right size, overruns are so 200x... Pass the brown paperMiod Vallat
2010-12-23The exception vector page on m88k systems has always been the same page asMiod Vallat
2010-12-23Check for pcb_onfault being set for genuine kernel data faults, copyout()Miod Vallat
2010-12-23Make the pte created by pmap_map() wired, and count them in pmap_kernel()'sMiod Vallat
2010-12-21Convert netisr to a normal soft interrupt instead of hanving MD codeClaudio Jeker
2010-12-20KNFMiod Vallat
2010-12-20mvme88k kernels running on 88110 systems have been prone to panicing forMiod Vallat
2010-12-15Bring CBC oracle attack countermeasure from r1.32 of cryptosoft.c toMike Belopuhov
2010-12-15enable uticom(4) now it is known to workJonathan Gray
2010-12-15oops, i forgot to check in the BRKSIZ define in uvm, but deraadt thinksTed Unangst
2010-12-15add a BRKSIZ define and use it for the heap gap constant, decouplingTed Unangst
2010-12-14There is no "struct filesystem"; uncovered by gcc4.Mark Kettenis
2010-12-14"Implement fast path TLB miss handling. Walk the page table withoutJasper Lievisse Adriaanse
2010-12-14use the dying flag in struct usbd_bus instead of a private dying flagMiod Vallat
2010-12-13Remove superfluous SAVE_CPU_SREG()/RESTORE_CPU_SREG() around ast() call inMark Kettenis
2010-12-12rsu(4) works on the sparc64, so add it everywhere where urtwn(4) is.Damien Bergamini
2010-12-11rsu(4), a driver for Realtek RTL8188SU, RTL8191SU and RTL8192SUDamien Bergamini
2010-12-10There's no need to flush the cache for the FPU state ever since we got ridMark Kettenis
2010-12-07The rdmsr_locked/wrmsr_locked functions were using "=A" as a constraint forTheo de Raadt
2010-12-07Make this compile again.Miod Vallat
2010-12-07bring src/sys/arch/amd64/amd64/dkcsum.c r1.16 over to i386:David Gwynne
2010-12-07the boot loader passes a variable that identifies the disk itsDavid Gwynne
2010-12-06- properly remove NENTS now after fixing the fallout.Jasper Lievisse Adriaanse
2010-12-06- partially revert previous NENTS removal for arches which got busted.Jasper Lievisse Adriaanse
2010-12-06Change the signature of PMAP_PREFER from void PMAP_PREFER(..., vaddr_t *) toMiod Vallat
2010-12-06- use consistent 'include' rules without a full relative path.Jasper Lievisse Adriaanse
2010-12-06- drop NENTS(), which was yet another copy of nitems().Jasper Lievisse Adriaanse
2010-12-06- remove unused/commented COMPAT_LINUX stuffJasper Lievisse Adriaanse
2010-12-05PCIe based sparc64 machines have always supported access to the extended PCIeMark Kettenis
2010-12-04correct constant nameTakuya ASADA