| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a stub cpu_idle() function for sparc64, alpha, powerpc. This is a | peter | 2003-10-19 | 1 | -0/+6 |
* | Migrate pmap_prefault() into the machine-independent virtual memory layer. | alc | 2003-10-03 | 1 | -8/+13 |
* | DELAY must be a routine, not a macro definition. | grehan | 2003-09-26 | 1 | -1/+1 |
* | Soften assert in pmap_remove_all. | grehan | 2003-09-22 | 1 | -4/+25 |
* | Migrate the sf_buf allocator that is used by sendfile(2) and zero-copy | alc | 2003-08-29 | 1 | -0/+101 |
* | In vm_thread_swap{in|out}(), remove the alpha specific conditional | marcel | 2003-08-16 | 1 | -7/+9 |
* | Update powerpc to use the (old thread,new thread) calling convention | grehan | 2003-08-14 | 2 | -37/+30 |
* | Use kmem_alloc_nofault() rather than kmem_alloc_pageable() in pmap_mapdev(). | alc | 2003-08-02 | 1 | -1/+1 |
* | Make sure that when the PV ENTRY zone is created in pmap, that it's | bmilekic | 2003-07-31 | 1 | -2/+2 |
* | Deal with 'options KSTACK_PAGES' being a global option. | peter | 2003-07-31 | 3 | -0/+5 |
* | Make pmap_pvo_allocf() callable without Giant. | alc | 2003-07-27 | 1 | -6/+6 |
* | Rename thread_siginfo to cpu_thread_siginfo. | davidxu | 2003-07-15 | 1 | -1/+1 |
* | Background: pmap_object_init_pt() premaps the pages of a object in | alc | 2003-07-03 | 1 | -3/+5 |
* | - Export pmap_enter_quick() to the MI VM. This will permit the | alc | 2003-06-29 | 1 | -0/+8 |
* | Add a machine depended function thread_siginfo, SA signal code | davidxu | 2003-06-28 | 1 | -0/+19 |
* | Remove unused bootpath[] variable. It conflicted with a declaration | grehan | 2003-06-25 | 1 | -2/+0 |
* | Migrate the thread stack management functions from the machine-dependent | alc | 2003-06-14 | 1 | -153/+0 |
* | Move the *_new_altkstack() and *_dispose_altkstack() functions out of the | alc | 2003-06-14 | 1 | -25/+0 |
* | GC unused cpu_wait() function | peter | 2003-06-11 | 1 | -6/+0 |
* | Change the second (and last) argument of cpu_set_upcall(). Previously | marcel | 2003-06-04 | 1 | -1/+1 |
* | Remove #include <sys/disklabel.h> | phk | 2003-06-01 | 1 | -1/+0 |
* | - Merge struct procsig with struct sigacts. | jhb | 2003-05-13 | 1 | -4/+5 |
* | Things run thru the C preprocessor must use C-style comments. | obrien | 2003-05-05 | 1 | -11/+11 |
* | Back out last commits. The elf64/elf32 kernel name thing was more pain | peter | 2003-05-01 | 1 | -3/+1 |
* | Fix transcription error. Use == NULL, not != NULL. Fortunately this | peter | 2003-04-30 | 1 | -1/+1 |
* | Look for an elf32 kernel (powerpc) and elf64 kernel (sparc64) as well | peter | 2003-04-30 | 1 | -1/+3 |
* | Range check the syscall number before looking it up in the syscallnames[] | jhb | 2003-04-30 | 1 | -1/+1 |
* | Add an argument to get_mcontext() which specified whether the | deischen | 2003-04-25 | 1 | -1/+1 |
* | Use __FBSDID rather than rcsid[]. | obrien | 2003-04-03 | 6 | -24/+12 |
* | - Define a new md function 'casuptr'. This atomically compares and sets | jeff | 2003-04-01 | 1 | -0/+8 |
* | - Move p->p_sigmask to td->td_sigmask. Signal masks will be per thread with | jeff | 2003-03-31 | 1 | -3/+3 |
* | - Change trapsignal() to accept a thread and not a proc. | jeff | 2003-03-31 | 1 | -1/+1 |
* | Enable the FPU on first use per-thread and save state across context | grehan | 2003-03-20 | 2 | -22/+11 |
* | Add machine check handler. While generally useful, it's required when | grehan | 2003-03-19 | 1 | -1/+1 |
* | Replace calls to WITNESS_SLEEP() and witness_list() with equivalent calls | jhb | 2003-03-04 | 1 | -6/+2 |
* | Register typo and incorrect 32-bit constant load in previous commit. | grehan | 2003-02-26 | 1 | -2/+2 |
* | Cleanup of the d_mmap_t interface. | mux | 2003-02-25 | 1 | -7/+0 |
* | Catch up to latest KSE changes | grehan | 2003-02-20 | 1 | -3/+4 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 1 | -1/+1 |
* | - Split the struct kse into struct upcall and struct kse. struct kse will | jeff | 2003-02-17 | 1 | -1/+1 |
* | - Move ke_sticks, ke_iticks, ke_uticks, ke_uu, ke_su, and ke_iu back into | jeff | 2003-02-17 | 1 | -1/+1 |
* | GC an unused variable. | benno | 2003-02-05 | 1 | -2/+0 |
* | Export the ns_per_tick variable through md_var.h rather than by declaring | benno | 2003-02-05 | 1 | -1/+1 |
* | - Use cpu_setup() instead of identifycpu(). | benno | 2003-02-05 | 1 | -80/+1 |
* | Replace the inline asm in delay() with a while loop. This may not be as | benno | 2003-02-05 | 1 | -8/+4 |
* | - Rename the "powerpc" timecounter to the "decrementer" timecounter. | benno | 2003-02-05 | 2 | -7/+19 |
* | Split statclock into statclock and profclock, and made the method for driving | jake | 2003-02-03 | 1 | -1/+6 |
* | Reversion of commit by Davidxu plus fixes since applied. | julian | 2003-02-01 | 2 | -2/+2 |
* | - add pmap_pagedaemon_waken variable | grehan | 2003-02-01 | 1 | -47/+96 |
* | Back out some changes that snuck in with the last commit. | benno | 2003-01-27 | 1 | -177/+19 |