Displaying 3 results from an estimated 3 matches for "nkpt".
Did you mean:
n8pt
2005 Mar 24
0
[patch] small accounting and lockup fix for xenfreebsd on -unstable
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2005/03/23 18:27:49-08:00 kmacy@shemp.lab.netapp.com
# only bump tmpindex by NKPT-1 once
# release sched lock on upcall
# Signed-off-by: Kip Macy <kmacy@fsmware.com>
#
# freebsd-5.3-xen-sparse/i386-xen/i386-xen/machdep.c
# 2005/03/23 18:24:47-08:00 kmacy@shemp.lab.netapp.com +0 -4
# remove extra bump of tmpindex
#
# freebsd-5.3-xen-sparse/i386-xen/i386-xen/evtchn...
2012 Apr 24
1
Attempting to boot into ramdisk on 8.3
...ft in
so people can see what I was doing 7.3ish:
28.43d26
< ### FBCD64 SPECIFIC
< #options MD_ROOT_SIZE="524288"
< options GEOM_UZIP
< #options INCLUDE_CONFIG_FILE
< #options ZERO_COPY_SOCKETS
< #options HZ=1000
< #options DEVICE_POLLING
< #options NKPT=600 # not set up on amd64
< #
< # Debugging
< options KDB
< options DDB
< options BREAK_TO_DEBUGGER
< options ALT_BREAK_TO_DEBUGGER
Thanks in advance for any assistance!
--
Dave Hayes - Consultant - Altadena CA, USA - dave@jetcafe.org
>>> The opinions...
2003 Aug 22
3
PAE removal patch for testing
...oid
-pmap_bootstrap(vm_paddr_t firstaddr, vm_paddr_t loadaddr)
+pmap_bootstrap(firstaddr, loadaddr)
+ vm_offset_t firstaddr;
+ vm_offset_t loadaddr;
{
vm_offset_t va;
pt_entry_t *pte;
@@ -309,7 +292,7 @@
avail_start = firstaddr;
/*
- * The calculation of virtual_avail is wrong. It's NKPT*PAGE_SIZE too
+ * XXX The calculation of virtual_avail is wrong. It's NKPT*PAGE_SIZE too
* large. It should instead be correctly calculated in locore.s and
* not based on 'first' (which is a physical address, not a virtual
* address, for the start of unused physical memory). T...