| Commit message (Expand) | Author | Age | Files | Lines |
* | Replace the list of PVOs owned by each PMAP with an RB tree. This simplifies | nwhitehorn | 2012-05-20 | 4 | -178/+76 |
* | Fix final bugs in memory barriers on PowerPC: | nwhitehorn | 2012-05-04 | 4 | -8/+10 |
* | Add a convenience macro for the returns_twice attribute, and apply it to | dim | 2012-04-29 | 1 | -1/+1 |
* | Fix build on 32-bit systems. | nwhitehorn | 2012-04-28 | 1 | -1/+1 |
* | After switching mutexes to use lwsync, they no longer provide sufficient | nwhitehorn | 2012-04-28 | 2 | -30/+19 |
* | Switch the default I/O memory barrier to eieio, as it should be. This | nwhitehorn | 2012-04-24 | 1 | -5/+1 |
* | Revert r234581 for this file. The lockless SLB tree code does in fact need | nwhitehorn | 2012-04-24 | 1 | -2/+2 |
* | Fix copy-and-paste error in r230400. | nwhitehorn | 2012-04-23 | 1 | -1/+1 |
* | Fix missing header for powerpc_iomb(). | nwhitehorn | 2012-04-23 | 1 | -0/+1 |
* | Provide a clearer split between read/write and acquire/release barriers. | nwhitehorn | 2012-04-22 | 1 | -19/+24 |
* | Correctly specify assembler constrains for synchronization instructions. | nwhitehorn | 2012-04-22 | 1 | -3/+3 |
* | Clarify what we are doing in r234583 a little better: eieio and isync do | nwhitehorn | 2012-04-22 | 1 | -15/+23 |
* | On non-64-bit systems (which generally don't have lwsync), use eieio and | nwhitehorn | 2012-04-22 | 1 | -0/+5 |
* | Use lwsync to provide memory barriers on systems that support it instead | nwhitehorn | 2012-04-22 | 2 | -22/+20 |
* | Remove dead code. The routines in atomic.S did not work properly anyway, and | nwhitehorn | 2012-04-22 | 2 | -147/+0 |
* | Replace eieio; sync for creating bus-space memory barriers with sync. | nwhitehorn | 2012-04-22 | 3 | -61/+75 |
* | Avoid a lock order reversal in pmap_extract_and_hold() from relocking | nwhitehorn | 2012-04-22 | 1 | -1/+32 |
* | Organize some members of ucontext_t in the same order they are in the | nwhitehorn | 2012-04-21 | 1 | -3/+3 |
* | Make sure all pending operations have completed on the existing thread | nwhitehorn | 2012-04-20 | 2 | -0/+2 |
* | We don't need kcopy() in any of the remaining places it is used, so | nwhitehorn | 2012-04-11 | 4 | -34/+3 |
* | Only manipulate the PGA_EXECUTABLE flag on managed pages. This is a proxy | nwhitehorn | 2012-04-11 | 1 | -14/+10 |
* | Fix error in r233949. Synchronizing icaches on uncacheable pages turns out | nwhitehorn | 2012-04-11 | 1 | -2/+4 |
* | Do not restore the register holding the TLS pointer when doing various | nwhitehorn | 2012-04-11 | 1 | -2/+12 |
* | Execute an initial ptesync if and only if the PTE is actually being | nwhitehorn | 2012-04-06 | 1 | -14/+7 |
* | Substantially reduce the scope of the locks held in pmap_enter(), which | nwhitehorn | 2012-04-06 | 1 | -34/+8 |
* | Reduce the frequency that the PowerPC/AIM pmaps invalidate instruction | nwhitehorn | 2012-04-06 | 3 | -57/+29 |
* | Give the kernel pmap lock a different name than user pmap locks. It has | nwhitehorn | 2012-04-06 | 1 | -2/+3 |
* | - Rename VM_MEMATTR_UNCACHED to VM_MEMATTR_WEAK_UNCACHEABLE on x86 to | jhb | 2012-03-29 | 1 | -1/+0 |
* | Allow multiple inclusion of trap.h. This has always been broken, but | nwhitehorn | 2012-03-29 | 3 | -4/+10 |
* | Add software PMC support. | fabient | 2012-03-28 | 1 | -1/+2 |
* | More PMAP performance improvements: skip 256 MB segments entirely if they | nwhitehorn | 2012-03-28 | 2 | -11/+26 |
* | Make sure to call vm_page_dirty() before the pmap lock is released to | nwhitehorn | 2012-03-27 | 1 | -2/+2 |
* | More PMAP concurrency improvements: replace the table lock and (almost) all | nwhitehorn | 2012-03-27 | 1 | -86/+100 |
* | More PMAP performance improvements: on powerpc64, when TLBIE can be run | nwhitehorn | 2012-03-25 | 1 | -4/+11 |
* | Only call vm_page_dirty() on pages that are writable in order not to | nwhitehorn | 2012-03-24 | 1 | -4/+12 |
* | Following suggestions from alc, skip wired mappings in pmap_remove_pages() | nwhitehorn | 2012-03-24 | 1 | -51/+29 |
* | Remove pty(4) from our kernel configurations. | ed | 2012-03-21 | 3 | -3/+0 |
* | Provide a fix for certain PowerMacs where the U3 i2c lacks the interrupt | andreast | 2012-03-19 | 1 | -1/+30 |
* | Remove acquisition of VM page queues lock from pmap_protect(). Any actual | nwhitehorn | 2012-03-18 | 1 | -2/+0 |
* | Make ofw_bus_get_node() consistently return -1 when there is no associated | nwhitehorn | 2012-03-15 | 2 | -2/+2 |
* | Implement pmap_remove_pages(). This will be added later to the 32-bit MMU | nwhitehorn | 2012-03-15 | 1 | -0/+18 |
* | Improve algorithm for deciding whether to loop through all process pages | nwhitehorn | 2012-03-15 | 1 | -40/+58 |
* | Use LIST_FOREACH_SAFE() instead of LIST_FOREACH() in pmap_remove(), since | nwhitehorn | 2012-03-14 | 2 | -4/+4 |
* | Add casts to __uint16_t to the __bswap16() macros on all arches which | dim | 2012-03-09 | 1 | -2/+2 |
* | Disable the option VFS_ALLOW_NONMPSAFE by default on all the supported | attilio | 2012-03-06 | 1 | -3/+0 |
* | Restore proper dot symbol creation for assembly files in the kernel build case. | andreast | 2012-03-04 | 1 | -13/+46 |
* | Add support for PWM controlled fans. I found these fans on my PowerMac9,1. | andreast | 2012-03-04 | 1 | -72/+299 |
* | - Add a bus_dma tag to each PCI bus that is a child of a Host-PCI bridge. | jhb | 2012-03-02 | 1 | -5/+6 |
* | - Change contigmalloc() to use the vm_paddr_t type instead of an unsigned | jhb | 2012-03-01 | 3 | -5/+5 |
* | Add backlight control to ATI-graphics PowerBooks and iBooks. | jhibbits | 2012-02-26 | 3 | -0/+198 |