summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2013-03-25PGSHIFT -> PAGE_SHIFT in a commentTheo de Raadt
2013-03-25PGOFSET -> PAGE_MASK in a commentTheo de Raadt
2013-03-25PGOFSET -> PAGE_MASKTheo de Raadt
2013-03-25PGSHIFT -> PAGE_SHIFTTheo de Raadt
2013-03-25PGSHIFT -> PAGE_SHIFTTheo de Raadt
2013-03-25PGSHIFT -> PAGE_SHIFTTheo de Raadt
2013-03-25Use the new rasops multiple screen support to provide proper virtualMark Kettenis
terminals.
2013-03-25Add basic support for multiple screens.Mark Kettenis
ok mpi@, miod@
2013-03-25PGSHIFT -> PAGE_SHIFTTheo de Raadt
2013-03-25unused relicsTheo de Raadt
2013-03-25Remove the m68k FPU emulator; it was only used by the mac68k port which has beenMiod Vallat
lying in the Attic for quite awhile; none of the remaining m68k-based ports support FPU-less systems; assuming my HP332 cpu board is in working condition, give me memory boards for it to have at least 8MB and a chassis, and I'll consider bringing this code back. But then, the 332 has an FPU socket, and I'd rather write a new glue to use the MI softloat code (bug-free) than try and fix the bugs in this.
2013-03-25PGSHIFT -> PAGE_SHIFTTheo de Raadt
2013-03-25Move SEGSHIFT-related definitions and macros to <m68k/pte_motorola.h>, as theyMiod Vallat
only matter to pmap-related code. Fixes libkvm build on m68k.
2013-03-25ALIGNBYTES/ALIGN/ALIGNED_POINTER can move to the MI file.Theo de Raadt
2013-03-25these will not be built for palm since it went awayTheo de Raadt
2013-03-25gumstix was never finishedTheo de Raadt
2013-03-25the unused palm code goes away.Theo de Raadt
2013-03-25clean up kernel includes; no need for uvm_extern.hTheo de Raadt
2013-03-25Factor out the code that is used to recreate work units - one copy of theJoel Sing
code is sufficient. ok krw@
2013-03-25reseed the random pool with 'dmesg' when more devices are attachedMarkus Friedl
from hshoexer@; ok tedu@, "looks good" deraadt@
2013-03-25Substitute the handcrafted list of IPv6 addresses by a proper TAILQ.Martin Pieuchot
ok bluhm@, mikeb@
2013-03-25move the message announcing overlay init to debugJonathan Gray
2013-03-25add the missing parts of the upstream linux commit toJonathan Gray
enable occlusion queries. ok mpi@
2013-03-24SEM_VALUE_MAX belongs in <limits.h> (via sys/syslimits.h)Philip Guenther
struct sem --> struct __sem (doesn't belong in public namespace) Zap pointless _KERNEL tests ok deraadt@
2013-03-24syncTheo de Raadt
2013-03-24another ppb; soekris net1841; pointed out by mitjaTheo de Raadt
2013-03-24Use sys/param.h to be able to get at DEV_BSIZETheo de Raadt
2013-03-24use sys/param.h instead of machine/param.hTheo de Raadt
2013-03-24do not expose a userland function to the kernelTheo de Raadt
2013-03-24hide some userland functions from the kernelTheo de Raadt
2013-03-24hide some kernel functions from userlandTheo de Raadt
2013-03-24label some nested #endif'sTheo de Raadt
2013-03-24Use ieee80211_set_tim() directly now that it is available.Claudio Jeker
2013-03-24Make ieee80211_set_tim() available from outside of ieee80211_node.cClaudio Jeker
so drivers like acx(4) can use that function directly instead of reimplementing the function again. Requested by kettenis@ long time ago.
2013-03-24pstats is already 0, but the bonus = 0 belongs outside the pointer sectionTed Unangst
2013-03-23pull the suser check for sysctl pointers up higher, out of the loops.Ted Unangst
hide a few more pointery things. ok deraadt
2013-03-23A small sprinking of #ifdef _KERNELTheo de Raadt
2013-03-23refactor sys/param.h and machine/param.h. A lot of #ifdef _KERNEL is addedTheo de Raadt
to keep definitions our of user space. The MD files now follow a consistant order -- all namespace intrusion is at the tail can be cleaned up independently. locore, bootblocks, and libkvm still see enough visibility to build. Checked on 90% of platforms...
2013-03-23Avoid using DEV_BSHIFT, and use DEV_BSIZE instead.Theo de Raadt
2013-03-23convert a DEV_BSHIFT use to DEV_BSIZE (this .h file is reused inTheo de Raadt
in userland by libkvm) ok sthen
2013-03-23avoid machine/param.h useTheo de Raadt
2013-03-22Move i915_gem_gtt_map_ioctl() from i915_drv.c to i915_gem.c and rename itMark Kettenis
to i915_gem_mmap_ioctl().
2013-03-22Newer Thinkpads (x220, x230, t430) send a 0x6050 event whenever the brightnessMark Kettenis
keys are used. Simply ignore this event. We have no use for it and the keys work just fine with the new inteldrm(4). ok mpi@, jsg@, otto@, jsg@
2013-03-22ARM Cortex A8 was defined twice, we don't need that.Patrick Wildt
ok miod@
2013-03-22Use different setup functions for ARM9E and ARM10 to fix an undefinedPatrick Wildt
instruction fault on ARM9E caused by a coprocessor call. ok miod@
2013-03-22NBPG is spelled PAGE_SIZETheo de Raadt
2013-03-22This has no reason to pull in machine/param.hTheo de Raadt
ok guenther
2013-03-22add some macros needed by newer libdrmJonathan Gray
2013-03-22wire up the mode object property ioctlsJonathan Gray
2013-03-22implement DRM_IOCTL_I915_GEM_SW_FINISHJonathan Gray