CVS log for src/sys/arch/xen/include/xen.h
Up to [cvs.NetBSD.org] / src / sys / arch / xen / include
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.37.10.2: download - view: text, markup, annotated - select for diffs
Mon Jul 31 14:59:25 2023 UTC (16 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-3-RELEASE
Diff to: previous 1.37.10.1: preferred, colored; branchpoint 1.37: preferred, colored; next MAIN 1.38: preferred, colored
Changes since revision 1.37.10.1: +24 -12
lines
Pull up following revision(s) (requested by riastradh in ticket #1862):
sys/arch/xen/x86/xen_intr.c: revision 1.31 (patch)
sys/arch/xen/include/xen.h (apply patch)
xen_intr.c: Use kpreempt_disable/enable around access to curcpu().
curcpu() is not otherwise guaranteed to be stable at these points.
While here, nix nonsensical membars. This need only be synchronized
with interrupts on the same CPU.
Proposed on port-xen:
https://mail-index.netbsd.org/port-xen/2022/07/13/msg010250.html
Revision 1.47.20.1: download - view: text, markup, annotated - select for diffs
Thu Mar 30 11:45:34 2023 UTC (20 months, 1 week ago) by martin
Branches: netbsd-10
CVS tags: netbsd-10-0-RELEASE,
netbsd-10-0-RC6,
netbsd-10-0-RC5,
netbsd-10-0-RC4,
netbsd-10-0-RC3,
netbsd-10-0-RC2,
netbsd-10-0-RC1
Diff to: previous 1.47: preferred, colored; next MAIN 1.48: preferred, colored
Changes since revision 1.47: +2 -2
lines
Pull up following revision(s) (requested by bouyer in ticket #131):
sys/arch/x86/x86/consinit.c: revision 1.36
sys/arch/xen/x86/pvh_consinit.c: revision 1.3
sys/arch/xen/include/xen.h: revision 1.48
Allow a PVH dom0 to use VGA as console: make xen_pvh_consinit() return 1 if
it handles the console and 0 otherwise (especially when console=tty0 or
console=pc is present on the command line).
In consinit() fallback to native console selection if xen_pvh_consinit()
returns 0.
Revision 1.48: download - view: text, markup, annotated - select for diffs
Fri Mar 24 12:28:42 2023 UTC (20 months, 1 week ago) by bouyer
Branches: MAIN
CVS tags: thorpej-ifq-base,
thorpej-ifq,
thorpej-altq-separation-base,
thorpej-altq-separation,
perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs,
HEAD
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +2 -2
lines
Allow a PVH dom0 to use VGA as console: make xen_pvh_consinit() return 1 if
it handles the console and 0 otherwise (especially when console=tty0 or
console=pc is present on the command line).
In consinit() fallback to native console selection if xen_pvh_consinit()
returns 0.
Revision 1.47: download - view: text, markup, annotated - select for diffs
Sat May 2 16:44:36 2020 UTC (4 years, 7 months ago) by bouyer
Branches: MAIN
CVS tags: thorpej-i2c-spi-conf2-base,
thorpej-i2c-spi-conf2,
thorpej-i2c-spi-conf-base,
thorpej-i2c-spi-conf,
thorpej-futex2-base,
thorpej-futex2,
thorpej-futex-base,
thorpej-futex,
thorpej-cfargs2-base,
thorpej-cfargs2,
thorpej-cfargs-base,
thorpej-cfargs,
netbsd-10-base,
cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x,
bouyer-sunxi-drm-base,
bouyer-sunxi-drm
Branch point for: netbsd-10
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +5 -1
lines
Introduce Xen PVH support in GENERIC.
This is compiled in with
options XENPVHVM
x86 changes:
- add Xen section and xen pvh entry points to locore.S. Set vm_guest
to VM_GUEST_XENPVH in this entry point.
Most of the boot procedure (especially page table setup and switch to
paged mode) is shared with native.
- change some x86_delay() to delay_func(), which points to x86_delay() for
native/HVM, and xen_delay() for PVH
Xen changes:
- remove Xen bits from init_x86_64_ksyms() and init386_ksyms()
and move to xen_init_ksyms(), used for both PV and PVH
- set ISA no-legacy-devices property for PVH
- factor out code from Xen's cpu_bootconf() to xen_bootconf()
in xen_machdep.c
- set up a specific pvh_consinit() which starts with printk()
(which uses a simple hypercall that is available early) and switch to
xencons when we can use pmap_kenter_pa().
Revision 1.46: download - view: text, markup, annotated - select for diffs
Sat Apr 25 15:26:17 2020 UTC (4 years, 7 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +1 -3
lines
Merge the bouyer-xenpvh branch, bringing in Xen PV drivers support under HVM
guests in GENERIC.
Xen support can be disabled at runtime with
boot -c
disable hypervisor
Revision 1.44.8.2: download - view: text, markup, annotated - select for diffs
Mon Apr 20 11:29:00 2020 UTC (4 years, 7 months ago) by bouyer
Branches: bouyer-xenpvh
Diff to: previous 1.44.8.1: preferred, colored; branchpoint 1.44: preferred, colored; next MAIN 1.45: preferred, colored
Changes since revision 1.44.8.1: +1 -15
lines
Sync with HEAD
Revision 1.44.8.1: download - view: text, markup, annotated - select for diffs
Sat Apr 18 15:06:18 2020 UTC (4 years, 7 months ago) by bouyer
Branches: bouyer-xenpvh
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +1 -3
lines
Add PVHVM multiprocessor support:
We need the hypervisor to be set up before cpus attaches.
Move hypervisor setup to a new function xen_hvm_init(), called at the
beggining of mainbus_attach(). This function searches the cfdata[] array
to see if the hypervisor device is enabled (so you can disable PV
support with
disable hypervisor
from userconf).
For HVM, ci_cpuid doens't match the virtual CPU index needed by Xen.
Introduce ci_vcpuid to cpu_info. Introduce xen_hvm_init_cpu(), to be
called for each CPU in in its context, which initialize ci_vcpuid and
ci_vcpu, and setup the event callback.
Change Xen code to use ci_vcpuid.
Do not call lapic_calibrate_timer() for VM_GUEST_XENPVHVM, we will use
Xen timers.
Don't call lapic_initclocks() from cpu_hatch(); instead set
x86_cpu_initclock_func to lapic_initclocks() in lapic_calibrate_timer(),
and call *(x86_cpu_initclock_func)() from cpu_hatch().
Also call x86_cpu_initclock_func from cpu_attach() for the boot CPU.
As x86_cpu_initclock_func is called for all CPUs, x86_initclock_func can
be a NOP for lapic timer.
Reorganize Xen code for x86_initclock_func/x86_cpu_initclock_func.
Move x86_cpu_idle_xen() to hypervisor_machdep.c
Revision 1.37.18.2: download - view: text, markup, annotated - select for diffs
Mon Apr 13 08:04:12 2020 UTC (4 years, 7 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.37.18.1: preferred, colored; branchpoint 1.37: preferred, colored; next MAIN 1.38: preferred, colored
Changes since revision 1.37.18.1: +1 -15
lines
Mostly merge changes from HEAD upto 20200411
Revision 1.45: download - view: text, markup, annotated - select for diffs
Thu Apr 9 19:26:37 2020 UTC (4 years, 7 months ago) by jdolecek
Branches: MAIN
CVS tags: phil-wifi-20200421,
phil-wifi-20200411,
bouyer-xenpvh-base2,
bouyer-xenpvh-base1
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +1 -15
lines
update to __XEN_INTERFACE_VERSION__ 0x0003020a aka Xen 3.2.10
this brings grant memory v2 support:
- status separated from flags - revoking access needs just memory barrier,
no need for expensive cmpxchg16 any more
- sub-page hypervisor copy-only grants, to be used by xennet(4)
- 64-bit frame, i.e. support for DomU RAM >16TB
the grant table is now always allocated on boot to maximum size, it's now
never grown in runtime; switch back to regular kmem_alloc()/kmem_free()
code now requires v2 support, no compatibility for grant version 1 retained -
Xen v2 support predates all currently supported Xen versions
also interface for baloon changed slightly, code updated
Revision 1.37.18.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:06:54 2019 UTC (5 years, 5 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +10 -57
lines
Sync with HEAD
Revision 1.44: download - view: text, markup, annotated - select for diffs
Thu May 9 17:09:50 2019 UTC (5 years, 6 months ago) by bouyer
Branches: MAIN
CVS tags: phil-wifi-20200406,
phil-wifi-20191119,
phil-wifi-20190609,
netbsd-9-base,
netbsd-9-4-RELEASE,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE,
netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1,
netbsd-9,
is-mlppp-base,
is-mlppp,
bouyer-xenpvh-base,
ad-namecache-base3,
ad-namecache-base2,
ad-namecache-base1,
ad-namecache-base,
ad-namecache
Branch point for: bouyer-xenpvh
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +1 -50
lines
sti/cli are not allowed on Xen, we have to clear/set a bit in the
shared page. Revert x86_disable_intr/x86_enable_intr to plain function
calls on XENPV.
While there, clean up unused functions and macros, and change cli()/sti()
macros to x86_disable_intr/x86_enable_intr.
Makes Xen domU boot again
(http://www-soc.lip6.fr/~bouyer/NetBSD-tests/xen/HEAD/)
Revision 1.43: download - view: text, markup, annotated - select for diffs
Mon Feb 4 18:14:53 2019 UTC (5 years, 10 months ago) by cherry
Branches: MAIN
CVS tags: isaki-audio2-base,
isaki-audio2
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +7 -1
lines
Bump up XEN source API compatibility to 0x00030208 from 0x00030201,
but maintain backwards source API compilation compatibility.
ie; sources with config(5)
options __XEN_INTERFACE_VERSION__=0x00030201 # Xen 3.1 interface
should compile and run without problems.
Not that API version 0x00030201 is the lowest version we support now.
Revision 1.42: download - view: text, markup, annotated - select for diffs
Sat Feb 2 12:32:55 2019 UTC (5 years, 10 months ago) by cherry
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +2 -2
lines
Switch NetBSD/xen to use XEN api tag RELEASE-4.11.1
The headers for this api are in sys/external/mit/xen-include-public/dist/
Revision 1.37.16.2: download - view: text, markup, annotated - select for diffs
Sat Oct 20 06:58:30 2018 UTC (6 years, 1 month ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.37.16.1: preferred, colored; branchpoint 1.37: preferred, colored; next MAIN 1.38: preferred, colored
Changes since revision 1.37.16.1: +3 -3
lines
Sync with head
Revision 1.37.10.1: download - view: text, markup, annotated - select for diffs
Sat Oct 13 17:16:12 2018 UTC (6 years, 1 month ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-2-RELEASE,
netbsd-8-1-RELEASE,
netbsd-8-1-RC1
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +2 -2
lines
Pull up following revision(s) (requested by mlelstv in ticket #1057):
sys/arch/xen/x86/autoconf.c: revision 1.20
sys/arch/xen/include/xen.h: revision 1.40
Support bootspec.
Revision 1.41: download - view: text, markup, annotated - select for diffs
Wed Oct 10 04:16:58 2018 UTC (6 years, 1 month ago) by cherry
Branches: MAIN
CVS tags: pgoyette-compat-20190127,
pgoyette-compat-20190118,
pgoyette-compat-1226,
pgoyette-compat-1126,
pgoyette-compat-1020
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +2 -2
lines
In xen_atomic_test_and_clear_bit()
Use the appropriate sized variable for inline assembler.
Revision 1.40: download - view: text, markup, annotated - select for diffs
Sun Oct 7 11:25:55 2018 UTC (6 years, 1 month ago) by mlelstv
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +2 -2
lines
Support bootspec.
Revision 1.37.16.1: download - view: text, markup, annotated - select for diffs
Sat Jul 28 04:37:42 2018 UTC (6 years, 4 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +1 -5
lines
Sync with HEAD
Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu Jul 26 15:38:26 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-0930,
pgoyette-compat-0906,
pgoyette-compat-0728
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +1 -4
lines
Merge the content of xen_debug.c into xen_machdep.c, there is only one
function.
Revision 1.38: download - view: text, markup, annotated - select for diffs
Thu Jul 26 15:26:10 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +1 -2
lines
Remove dead code. This looks like a leftover from when our Xen port was
being developed (2004), and it seems to have been copied from the Xen
kernel examples. It can't have any use, so get rid of it. Also remove
vprintk, unused.
Revision 1.35.12.1: download - view: text, markup, annotated - select for diffs
Sun Dec 3 11:36:51 2017 UTC (7 years ago) by jdolecek
Branches: tls-maxphys
Diff to: previous 1.35: preferred, colored; next MAIN 1.36: preferred, colored
Changes since revision 1.35: +15 -3
lines
update from HEAD
Revision 1.35.30.1: download - view: text, markup, annotated - select for diffs
Sat Jul 9 20:24:59 2016 UTC (8 years, 4 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.35: preferred, colored; next MAIN 1.36: preferred, colored
Changes since revision 1.35: +15 -3
lines
Sync with HEAD
Revision 1.37: download - view: text, markup, annotated - select for diffs
Thu Jul 7 06:55:40 2016 UTC (8 years, 5 months ago) by msaitoh
Branches: MAIN
CVS tags: tls-maxphys-base-20171202,
prg-localcount2-base3,
prg-localcount2-base2,
prg-localcount2-base1,
prg-localcount2-base,
prg-localcount2,
phil-wifi-base,
pgoyette-localcount-base,
pgoyette-localcount-20170426,
pgoyette-localcount-20170320,
pgoyette-localcount-20170107,
pgoyette-localcount-20161104,
pgoyette-localcount-20160806,
pgoyette-localcount-20160726,
pgoyette-localcount,
pgoyette-compat-base,
pgoyette-compat-0625,
pgoyette-compat-0521,
pgoyette-compat-0502,
pgoyette-compat-0422,
pgoyette-compat-0415,
pgoyette-compat-0407,
pgoyette-compat-0330,
pgoyette-compat-0322,
pgoyette-compat-0315,
perseant-stdc-iso10646-base,
perseant-stdc-iso10646,
nick-nhusb-base-20170825,
nick-nhusb-base-20170204,
nick-nhusb-base-20161204,
nick-nhusb-base-20161004,
nick-nhusb-base-20160907,
netbsd-8-base,
netbsd-8-0-RELEASE,
netbsd-8-0-RC2,
netbsd-8-0-RC1,
matt-nb8-mediatek-base,
matt-nb8-mediatek,
localcount-20160914,
jdolecek-ncq-base,
jdolecek-ncq,
bouyer-socketcan-base1,
bouyer-socketcan-base,
bouyer-socketcan
Branch point for: phil-wifi,
pgoyette-compat,
netbsd-8
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +3 -3
lines
KNF. Remove extra spaces. No functional change.
Revision 1.36: download - view: text, markup, annotated - select for diffs
Sun May 29 17:06:17 2016 UTC (8 years, 6 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +13 -1
lines
Switch to elf notes for amd64 instead of the old key=value list to describe the
guest requirements and support.
Add infrastructure to query the hypervisor about features support.
For verbose boot, print the features suppoted by the hypervisor for this
guest.
Revision 1.35: download - view: text, markup, annotated - select for diffs
Tue Sep 20 00:12:24 2011 UTC (13 years, 2 months ago) by jym
Branches: MAIN
CVS tags: yamt-pagecache-tag8,
yamt-pagecache-base9,
yamt-pagecache-base8,
yamt-pagecache-base7,
yamt-pagecache-base6,
yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-pagecache,
tls-maxphys-base,
tls-earlyentropy-base,
tls-earlyentropy,
rmind-smpnet-nbase,
rmind-smpnet-base,
rmind-smpnet,
riastradh-xf86-video-intel-2-7-1-pre-2-21-15,
riastradh-drm2-base3,
riastradh-drm2-base2,
riastradh-drm2-base1,
riastradh-drm2-base,
riastradh-drm2,
nick-nhusb-base-20160529,
nick-nhusb-base-20160422,
nick-nhusb-base-20160319,
nick-nhusb-base-20151226,
nick-nhusb-base-20150921,
nick-nhusb-base-20150606,
nick-nhusb-base-20150406,
nick-nhusb-base,
netbsd-7-nhusb-base-20170116,
netbsd-7-nhusb-base,
netbsd-7-nhusb,
netbsd-7-base,
netbsd-7-2-RELEASE,
netbsd-7-1-RELEASE,
netbsd-7-1-RC2,
netbsd-7-1-RC1,
netbsd-7-1-2-RELEASE,
netbsd-7-1-1-RELEASE,
netbsd-7-1,
netbsd-7-0-RELEASE,
netbsd-7-0-RC3,
netbsd-7-0-RC2,
netbsd-7-0-RC1,
netbsd-7-0-2-RELEASE,
netbsd-7-0-1-RELEASE,
netbsd-7-0,
netbsd-7,
netbsd-6-base,
netbsd-6-1-RELEASE,
netbsd-6-1-RC4,
netbsd-6-1-RC3,
netbsd-6-1-RC2,
netbsd-6-1-RC1,
netbsd-6-1-5-RELEASE,
netbsd-6-1-4-RELEASE,
netbsd-6-1-3-RELEASE,
netbsd-6-1-2-RELEASE,
netbsd-6-1-1-RELEASE,
netbsd-6-1,
netbsd-6-0-RELEASE,
netbsd-6-0-RC2,
netbsd-6-0-RC1,
netbsd-6-0-6-RELEASE,
netbsd-6-0-5-RELEASE,
netbsd-6-0-4-RELEASE,
netbsd-6-0-3-RELEASE,
netbsd-6-0-2-RELEASE,
netbsd-6-0-1-RELEASE,
netbsd-6-0,
netbsd-6,
matt-nb6-plus-nbase,
matt-nb6-plus-base,
matt-nb6-plus,
khorben-n900,
jmcneill-usbmp-pre-base2,
jmcneill-usbmp-base9,
jmcneill-usbmp-base8,
jmcneill-usbmp-base7,
jmcneill-usbmp-base6,
jmcneill-usbmp-base5,
jmcneill-usbmp-base4,
jmcneill-usbmp-base3,
jmcneill-usbmp-base2,
jmcneill-usbmp-base10,
jmcneill-usbmp-base,
jmcneill-usbmp,
jmcneill-audiomp3-base,
jmcneill-audiomp3,
agc-symver-base,
agc-symver
Branch point for: tls-maxphys,
nick-nhusb
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +4 -1
lines
Merge jym-xensuspend branch in -current. ok bouyer@.
Goal: save/restore support in NetBSD domUs, for i386, i386 PAE and amd64.
Executive summary:
- split all Xen drivers (xenbus(4), grant tables, xbd(4), xennet(4))
in two parts: suspend and resume, and hook them to pmf(9).
- modify pmap so that Xen hypervisor does not cry out loud in case
it finds "unexpected" recursive memory mappings
- provide a sysctl(7), machdep.xen.suspend, to command suspend from
userland via powerd(8). Note: a suspend can only be handled correctly
when dom0 requested it, so provide a mechanism that will prevent
kernel to blindly validate user's commands
The code is still in experimental state, use at your own risk: restore
can corrupt backend communications rings; this can completely thrash
dom0 as it will loop at a high interrupt level trying to honor
all domU requests.
XXX PAE suspend does not work in amd64 currently, due to (yet again!)
page validation issues with hypervisor. Will fix.
XXX secondary CPUs are not suspended, I will write the handlers
in sync with cherry's Xen MP work.
Tested under i386 and amd64, bear in mind ring corruption though.
No build break expected, GENERICs and XEN* kernels should be fine.
./build.sh distribution still running. In any case: sorry if it does
break for you, contact me directly for reports.
Revision 1.30.8.8: download - view: text, markup, annotated - select for diffs
Sat Aug 27 15:56:48 2011 UTC (13 years, 3 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.30.8.7: preferred, colored; branchpoint 1.30: preferred, colored; next MAIN 1.31: preferred, colored
Changes since revision 1.30.8.7: +2 -2
lines
Rename the functions for suspend to reflect that Xen does not hijack
the ACPI "sleepstate" sysctl(7) node anymore.
Add a boolean value to mark that the save/suspend operation has been
notified by dom0, so as to avoid possible errors where admin would like
to schedule the domain for sleep without dom0 being prepared for that. Fail
with EAGAIN in this case.
Sprinkle some KNF.
Revision 1.30.8.7: download - view: text, markup, annotated - select for diffs
Sat Aug 27 15:48:35 2011 UTC (13 years, 3 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.30.8.6: preferred, colored; branchpoint 1.30: preferred, colored
Changes since revision 1.30.8.6: +2 -2
lines
(HEAD fix) _BSD_VA_LIST_ => va_list
Revision 1.30.8.6: download - view: text, markup, annotated - select for diffs
Sat Aug 27 15:44:09 2011 UTC (13 years, 3 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.30.8.5: preferred, colored; branchpoint 1.30: preferred, colored
Changes since revision 1.30.8.5: +3 -1
lines
Further sync with HEAD.
Revision 1.34: download - view: text, markup, annotated - select for diffs
Sun Jul 17 20:54:49 2011 UTC (13 years, 4 months ago) by joerg
Branches: MAIN
CVS tags: jym-xensuspend-nbase,
jym-xensuspend-base
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +4 -2
lines
Retire varargs.h support. Move machine/stdarg.h logic into MI
sys/stdarg.h and expect compiler to provide proper builtins, defaulting
to the GCC interface. lint still has a special fallback.
Reduce abuse of _BSD_VA_LIST_ by defining __va_list by default and
derive va_list as required by standards.
Revision 1.32.6.1: download - view: text, markup, annotated - select for diffs
Mon Jun 6 09:07:10 2011 UTC (13 years, 6 months ago) by jruoho
Branches: jruoho-x86intr
Diff to: previous 1.32: preferred, colored; next MAIN 1.33: preferred, colored
Changes since revision 1.32: +4 -1
lines
Sync with HEAD.
Revision 1.30.8.5: download - view: text, markup, annotated - select for diffs
Mon May 2 22:49:58 2011 UTC (13 years, 7 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.30.8.4: preferred, colored; branchpoint 1.30: preferred, colored
Changes since revision 1.30.8.4: +4 -1
lines
Sync with head.
Revision 1.32.4.1: download - view: text, markup, annotated - select for diffs
Thu Apr 21 01:41:33 2011 UTC (13 years, 7 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.32: preferred, colored; next MAIN 1.33: preferred, colored
Changes since revision 1.32: +4 -1
lines
sync with head
Revision 1.33: download - view: text, markup, annotated - select for diffs
Sun Apr 17 09:50:33 2011 UTC (13 years, 7 months ago) by mrg
Branches: MAIN
CVS tags: rmind-uvmplock-nbase,
rmind-uvmplock-base,
cherry-xenmp-base,
cherry-xenmp
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +4 -1
lines
apply some _KERNEL_OPT.
Revision 1.30.12.1: download - view: text, markup, annotated - select for diffs
Wed Apr 21 00:33:44 2010 UTC (14 years, 7 months ago) by matt
Branches: matt-nb5-mips64
CVS tags: matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-k15
Diff to: previous 1.30: preferred, colored; next MAIN 1.31: preferred, colored
Changes since revision 1.30: +3 -1
lines
sync to netbsd-5
Revision 1.30.8.4: download - view: text, markup, annotated - select for diffs
Sun Nov 1 21:43:28 2009 UTC (15 years, 1 month ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.30.8.3: preferred, colored; branchpoint 1.30: preferred, colored
Changes since revision 1.30.8.3: +4 -1
lines
- Upgrade suspend/resume code to comply with Xen2 removal.
- Add support for PAE domUs suspend/resume.
- Fix an issue regarding initialization of the xbd ring I/O that could end
badly during resume, with invalid block operations submitted to dom0 backend.
NetBSD supports PAE under x86_32 by considering the L2 page as being
4 pages long instead of 1.
Xen validates the page types during resume. Sadly, the hypervisor handles
alternative recursive mappings (== PG/PD entries pointing to pages other
than self) inadequately, which could lead to incorrect page pinning.
As a result, the important change with this patch is to clear these alternative
mappings during suspend, and reset them back to their former self upon
resume. For PAE, approx. all 4 PDIR_SLOT_PTEs could be considered as
alternative recursive mappings.
See comments in pmap.c for further details.
Now, let the testing and bug hunting begin.
Revision 1.30.8.3: download - view: text, markup, annotated - select for diffs
Sun Nov 1 13:58:45 2009 UTC (15 years, 1 month ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.30.8.2: preferred, colored; branchpoint 1.30: preferred, colored
Changes since revision 1.30.8.2: +1 -19
lines
Sync with HEAD.
Revision 1.30.4.1: download - view: text, markup, annotated - select for diffs
Sat Oct 3 23:54:05 2009 UTC (15 years, 2 months ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-2-RELEASE,
netbsd-5-2-RC1,
netbsd-5-2-3-RELEASE,
netbsd-5-2-2-RELEASE,
netbsd-5-2-1-RELEASE,
netbsd-5-2,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-5-RELEASE,
netbsd-5-1-4-RELEASE,
netbsd-5-1-3-RELEASE,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
matt-nb5-pq3-base,
matt-nb5-pq3
Diff to: previous 1.30: preferred, colored; next MAIN 1.31: preferred, colored
Changes since revision 1.30: +3 -1
lines
Pull up following revision(s) (requested by bouyer in ticket #1054):
sys/arch/xen/conf/files.xen: revision 1.93
sys/arch/xen/include/pci_machdep.h: revision 1.11
sys/arch/xen/include/xen.h: revision 1.31
sys/arch/xen/xen/hypervisor.c: revision 1.44
sys/arch/xen/xen/pci_intr_machdep.c: revision 1.8
sys/arch/xen/xen/pciback.c: revision 1.1
sys/arch/xen/xen/xen_machdep.c: revision 1.5
sys/arch/xen/xen/xpci_xenbus.c: revision 1.1
Work in progress on PCI front-end/back-end support
front-end:
- add a xpci* at xenbus? which provides pci busses from the dom0
xpci provides support routines for PCI config space operations and
enumeration in xpci_xenbus.c
- hypervisor.c: do dom0-style PCI attach only ifdef DOM0OPS
- pci_intr_machdep.c: check line value only if DOM0OPS
back-end:
- add a pciback* at pci? device which takes precedences over all
other PCI devices (match return 500) and matches all devices passed
to pciback.hide option on boot command line.
It exports the PCI device informations to files in /kern/xen/pci/
- hypervisor.c: create /kern/xen earlier so pciback can create its
entries while PCI devices are probed
- xen_machdep.c: add handling for pciback.hide=
frontend is know working on Xen 3.1.x dom0 with ahc(4) and pciide(4)
devices. uhci(4) fail when trying to allocate a large contigous DMA
buffer.
backend is work in progress; support in xentools is not there yet.
Revision 1.29.2.2: download - view: text, markup, annotated - select for diffs
Wed Aug 19 18:46:53 2009 UTC (15 years, 3 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.29.2.1: preferred, colored; branchpoint 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29.2.1: +1 -16
lines
sync with head.
Revision 1.32: download - view: text, markup, annotated - select for diffs
Wed Jul 29 12:02:06 2009 UTC (15 years, 4 months ago) by cegger
Branches: MAIN
CVS tags: yamt-nfs-mp-base9,
yamt-nfs-mp-base8,
yamt-nfs-mp-base7,
yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base7,
uebayasi-xip-base6,
uebayasi-xip-base5,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
uebayasi-xip-base1,
uebayasi-xip-base,
uebayasi-xip,
matt-premerge-20091211,
matt-mips64-premerge-20101231,
jruoho-x86intr-base,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2
Branch point for: rmind-uvmplock,
jruoho-x86intr
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +1 -16
lines
remove Xen2 support.
ok bouyer@
Revision 1.30.8.2: download - view: text, markup, annotated - select for diffs
Wed May 13 17:18:50 2009 UTC (15 years, 6 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.30.8.1: preferred, colored; branchpoint 1.30: preferred, colored
Changes since revision 1.30.8.1: +3 -1
lines
Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.29.2.1: download - view: text, markup, annotated - select for diffs
Mon May 4 08:12:12 2009 UTC (15 years, 7 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +5 -1
lines
sync with head.
Revision 1.30.2.1: download - view: text, markup, annotated - select for diffs
Tue Mar 3 18:29:48 2009 UTC (15 years, 9 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.30: preferred, colored; next MAIN 1.31: preferred, colored
Changes since revision 1.30: +3 -1
lines
Sync with HEAD.
Revision 1.31: download - view: text, markup, annotated - select for diffs
Fri Feb 13 21:03:59 2009 UTC (15 years, 9 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
yamt-nfs-mp-base3,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base2,
nick-hppapmap-base,
jymxensuspend-base
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +3 -1
lines
Work in progress on PCI front-end/back-end support
front-end:
- add a xpci* at xenbus? which provides pci busses from the dom0
xpci provides support routines for PCI config space operations and
enumeration in xpci_xenbus.c
- hypervisor.c: do dom0-style PCI attach only ifdef DOM0OPS
- pci_intr_machdep.c: check line value only if DOM0OPS
back-end:
- add a pciback* at pci? device which takes precedences over all
other PCI devices (match return 500) and matches all devices passed
to pciback.hide option on boot command line.
It exports the PCI device informations to files in /kern/xen/pci/
- hypervisor.c: create /kern/xen earlier so pciback can create its
entries while PCI devices are probed
- xen_machdep.c: add handling for pciback.hide=
frontend is know working on Xen 3.1.x dom0 with ahc(4) and pciide(4)
devices. uhci(4) fail when trying to allocate a large contigous DMA
buffer.
backend is work in progress; support in xentools is not there yet.
Revision 1.30.8.1: download - view: text, markup, annotated - select for diffs
Mon Feb 9 00:03:55 2009 UTC (15 years, 9 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +4 -1
lines
Initial code for xen save/restore/migrate facilities.
- split the attach code of frontends in two half: one that is only needed
during autoconf(9) attach/detach phases, and one used at each save/restore
of device state (between suspend and resume).
Applies to hypervisor, xencons, xenbus, xbd, and xennet.
- add a rwlock(9) ("ptom_lock") to protect the different parts in the kernel
that manipulate MFNs (which could change between a suspend and a resume,
without the kernel noticing it). Parts that require MFNs acquire a reader lock,
while suspend code will acquire a writer lock to ensure that no-other parts
in kernel still use MFNs.
- integrate the suspend code with sysmon.
- various things in pmap(9), and clock.
TODO:
- factorize code a bit more inside frontends drivers.
- remove all alternative recursive (APDP_PDE) mappings found in PD/PT during
suspend, as Xen does not support them.
- abstract the ptom_lock locking, it is only required when kernel preemption
is enabled, or on MP systems.
Current code works mostly. You may experience difficulties in some corner
cases (dom0 warnings about xennet interface errors, and Xen tools failing to
validate NetBSD's alternative pmaps).
Revision 1.28.6.2: download - view: text, markup, annotated - select for diffs
Sat Jan 17 13:28:39 2009 UTC (15 years, 10 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.28.6.1: preferred, colored; branchpoint 1.28: preferred, colored; next MAIN 1.29: preferred, colored
Changes since revision 1.28.6.1: +2 -0
lines
Sync with HEAD.
Revision 1.29.8.1: download - view: text, markup, annotated - select for diffs
Sat Dec 13 01:13:39 2008 UTC (15 years, 11 months ago) by haad
Branches: haad-dm
Diff to: previous 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29: +3 -1
lines
Update haad-dm branch to haad-dm-base2.
Revision 1.30: download - view: text, markup, annotated - select for diffs
Tue Oct 21 15:46:32 2008 UTC (16 years, 1 month ago) by cegger
Branches: MAIN
CVS tags: netbsd-5-base,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
mjf-devfs2-base,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20091211,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2,
haad-nbase2,
haad-dm-base2,
haad-dm-base,
ad-audiomp2-base,
ad-audiomp2
Branch point for: nick-hppapmap,
netbsd-5,
matt-nb5-mips64,
jym-xensuspend
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +3 -1
lines
introduce two macros: xendomain_is_dom0() and xendomain_is_privileged(). Use them.
Revision 1.28.6.1: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:22:53 2008 UTC (16 years, 6 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +11 -11
lines
Sync with HEAD.
Revision 1.28.8.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:33:05 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.28: preferred, colored; next MAIN 1.29: preferred, colored
Changes since revision 1.28: +11 -11
lines
sync with head.
Revision 1.29: download - view: text, markup, annotated - select for diffs
Mon Apr 21 15:15:34 2008 UTC (16 years, 7 months ago) by cegger
Branches: MAIN
CVS tags: yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-nfs-mp-base2,
yamt-nfs-mp-base,
wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
simonb-wapbl-nbase,
simonb-wapbl-base,
simonb-wapbl,
hpcarm-cleanup-nbase,
haad-dm-base1
Branch point for: yamt-nfs-mp,
haad-dm
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +11 -11
lines
Access Xen's vcpu info structure per-CPU.
Tested on i386 and amd64 (both dom0 and domU) by me.
Xen2 tested (both dom0 and domU) by bouyer.
OK bouyer
Revision 1.21.42.3: download - view: text, markup, annotated - select for diffs
Sun Mar 23 02:04:29 2008 UTC (16 years, 8 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.21.42.2: preferred, colored; branchpoint 1.21: preferred, colored; next MAIN 1.22: preferred, colored
Changes since revision 1.21.42.2: +22 -7
lines
sync with HEAD
Revision 1.15.2.5: download - view: text, markup, annotated - select for diffs
Wed Feb 27 08:36:29 2008 UTC (16 years, 9 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.15.2.4: preferred, colored; branchpoint 1.15: preferred, colored; next MAIN 1.16: preferred, colored
Changes since revision 1.15.2.4: +19 -6
lines
sync with head.
Revision 1.28: download - view: text, markup, annotated - select for diffs
Tue Feb 19 19:50:53 2008 UTC (16 years, 9 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-pf42-baseX,
yamt-pf42-base,
yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
nick-net80211-sync-base,
nick-net80211-sync,
matt-armv6-nbase,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
hpcarm-cleanup-base,
ad-socklock-base1
Branch point for: yamt-pf42,
mjf-devfs2
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +18 -6
lines
The event bitmasks provided by the hypervisor are unsigned long (so 64bits
on amd64). Make sure to use the right type to store and manipulate them.
This fixes amd64, where basically any event channel > 31 was not working
(and you get there after starting/stopping a domU a few times). Things
would occasionally unwedge though the spllower() callbacks.
Revision 1.27: download - view: text, markup, annotated - select for diffs
Tue Feb 19 13:25:53 2008 UTC (16 years, 9 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -1
lines
Fix xenevt to not call softint_schedule() above IPL_HIGH:
Register a ipl callback for IPL_HIGH.
if the current ipl level is too high, just record the event in a bitmap,
and record IPL_HIGH as pending. The callback will process the pending events.
Revision 1.24.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 18 21:05:20 2008 UTC (16 years, 9 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.24.2.1: preferred, colored; branchpoint 1.24: preferred, colored; next MAIN 1.25: preferred, colored
Changes since revision 1.24.2.1: +4 -2
lines
Sync with HEAD.
Revision 1.15.2.4: download - view: text, markup, annotated - select for diffs
Mon Jan 21 09:40:26 2008 UTC (16 years, 10 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.15.2.3: preferred, colored; branchpoint 1.15: preferred, colored
Changes since revision 1.15.2.3: +4 -2
lines
sync with head
Revision 1.26: download - view: text, markup, annotated - select for diffs
Fri Jan 11 20:00:41 2008 UTC (16 years, 10 months ago) by bouyer
Branches: MAIN
CVS tags: mjf-devfs-base,
bouyer-xeni386-nbase,
bouyer-xeni386-base
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +3 -1
lines
Merge the bouyer-xeni386 branch to head, at tag bouyer-xeni386-merge1 (the
branch is still active and will see i386PAE support developement).
Sumary of changes:
- switch xeni386 to the x86/x86/pmap.c, and the xen/x86/x86_xpmap.c
pmap bootstrap.
- merge back most of xen/i386/ to i386/i386
- change the build to reduce diffs between i386 and amd64 in file locations
- remove include files that were identical to the i386/amd64 counterparts,
the build will find them via the xen-ma/machine link.
Revision 1.21.42.2: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:50:07 2008 UTC (16 years, 11 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.21.42.1: preferred, colored; branchpoint 1.21: preferred, colored
Changes since revision 1.21.42.1: +55 -20
lines
sync with HEAD
Revision 1.25.6.1: download - view: text, markup, annotated - select for diffs
Tue Jan 8 23:51:52 2008 UTC (16 years, 11 months ago) by bouyer
Branches: bouyer-xeni386
CVS tags: bouyer-xeni386-merge1
Diff to: previous 1.25: preferred, colored; next MAIN 1.26: preferred, colored
Changes since revision 1.25: +4 -2
lines
Make XEN kernels build again.
Revision 1.24.2.1: download - view: text, markup, annotated - select for diffs
Sat Dec 8 18:18:21 2007 UTC (17 years ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +55 -20
lines
Sync with HEAD.
Revision 1.15.2.3: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:27:11 2007 UTC (17 years ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.15.2.2: preferred, colored; branchpoint 1.15: preferred, colored
Changes since revision 1.15.2.2: +55 -20
lines
sync with head
Revision 1.21.22.2: download - view: text, markup, annotated - select for diffs
Mon Dec 3 18:40:37 2007 UTC (17 years ago) by ad
Branches: vmlocking
Diff to: previous 1.21.22.1: preferred, colored; branchpoint 1.21: preferred, colored; next MAIN 1.22: preferred, colored
Changes since revision 1.21.22.1: +55 -20
lines
Sync with HEAD.
Revision 1.21.40.2: download - view: text, markup, annotated - select for diffs
Tue Nov 27 19:36:08 2007 UTC (17 years ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.21.40.1: preferred, colored; branchpoint 1.21: preferred, colored; next MAIN 1.22: preferred, colored
Changes since revision 1.21.40.1: +55 -20
lines
Sync with HEAD. amd64 Xen support needs testing.
Revision 1.25: download - view: text, markup, annotated - select for diffs
Thu Nov 22 16:16:58 2007 UTC (17 years ago) by bouyer
Branches: MAIN
CVS tags: yamt-kmem-base3,
yamt-kmem-base2,
yamt-kmem-base,
yamt-kmem,
vmlocking2-base3,
vmlocking2-base2,
vmlocking2-base1,
vmlocking2,
vmlocking-nbase,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
matt-armv6-base,
jmcneill-pm-base,
cube-autoconf-base,
cube-autoconf
Branch point for: bouyer-xeni386
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +55 -20
lines
Pull up the bouyer-xenamd64 branch to HEAD. This brings in amd64 support
to NetBSD/Xen, both Dom0 and DomU.
Revision 1.21.42.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:24:05 2007 UTC (17 years, 1 month ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +8 -12
lines
sync with HEAD
Revision 1.15.2.2: download - view: text, markup, annotated - select for diffs
Sat Oct 27 11:29:12 2007 UTC (17 years, 1 month ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.15.2.1: preferred, colored; branchpoint 1.15: preferred, colored
Changes since revision 1.15.2.1: +8 -12
lines
sync with head.
Revision 1.23.2.1: download - view: text, markup, annotated - select for diffs
Wed Oct 17 21:08:19 2007 UTC (17 years, 1 month ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.23: preferred, colored; next MAIN 1.24: preferred, colored
Changes since revision 1.23: +55 -20
lines
Prepare for xenamd64:
- kill xen/i386/identcpu.c, use i386/i386/identcpu.c instead (with a few
#ifndef XEN)
- move some files that can be shared between i386 and amd64 from
xen/i386 to xen/x86 (or to xen/xen for non-cpu-specific code)
- split assembly out of xen/include/hypervisor.h to xen/include/hypercalls.h
- use <xen/...> instead of <machine/...> for cpu-independant include files.
more work needed here, i386-specific files should got out of arch/xen to
arch/xeni386, and more code shared with arch/i386.
Revision 1.24: download - view: text, markup, annotated - select for diffs
Wed Oct 17 19:58:29 2007 UTC (17 years, 1 month ago) by garbled
Branches: MAIN
CVS tags: yamt-x86pmap-base4,
jmcneill-base,
bouyer-xenamd64-base2,
bouyer-xenamd64-base
Branch point for: mjf-devfs
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +1 -1
lines
Merge the ppcoea-renovation branch to HEAD.
This branch was a major cleanup and rototill of many of the various OEA
cpu based PPC ports that focused on sharing as much code as possible
between the various ports to eliminate near-identical copies of files in
every tree. Additionally there is a new PIC system that unifies the
interface to interrupt code for all different OEA ppc arches. The work
for this branch was done by a variety of people, too long to list here.
TODO:
bebox still needs work to complete the transition to -renovation.
ofppc still needs a bunch of work, which I will be looking at.
ev64260 still needs to be renovated
amigappc was not attempted.
NOTES:
pmppc was removed as an arch, and moved to a evbppc target.
Revision 1.21.22.1: download - view: text, markup, annotated - select for diffs
Tue Oct 9 13:38:52 2007 UTC (17 years, 2 months ago) by ad
Branches: vmlocking
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +8 -12
lines
Sync with head.
Revision 1.22.2.1: download - view: text, markup, annotated - select for diffs
Sat Oct 6 15:33:47 2007 UTC (17 years, 2 months ago) by yamt
Branches: yamt-x86pmap
Diff to: previous 1.22: preferred, colored; next MAIN 1.23: preferred, colored
Changes since revision 1.22: +2 -6
lines
sync with head.
Revision 1.21.30.1: download - view: text, markup, annotated - select for diffs
Wed Oct 3 19:26:04 2007 UTC (17 years, 2 months ago) by garbled
Branches: ppcoea-renovation
Diff to: previous 1.21: preferred, colored; next MAIN 1.22: preferred, colored
Changes since revision 1.21: +8 -12
lines
Sync with HEAD
Revision 1.21.40.1: download - view: text, markup, annotated - select for diffs
Tue Oct 2 18:27:59 2007 UTC (17 years, 2 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +8 -12
lines
Sync with HEAD.
Revision 1.23: download - view: text, markup, annotated - select for diffs
Wed Sep 26 19:48:44 2007 UTC (17 years, 2 months ago) by ad
Branches: MAIN
CVS tags: yamt-x86pmap-base3,
yamt-x86pmap-base2,
vmlocking-base,
ppcoea-renovation-base
Branch point for: bouyer-xenamd64
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -6
lines
x86 changes for pcc and LKMs.
- Replace most inline assembly with proper functions. As a side effect
this reduces the size of amd64 GENERIC by about 120kB, and i386 by a
smaller amount. Nearly all of the inlines did something slow, or something
that does not need to be fast.
- Make curcpu() and curlwp functions proper, unless __GNUC__ && _KERNEL.
In that case make them inlines. Makes curlwp LKM and preemption safe.
- Make bus_space and bus_dma more LKM friendly.
- Share a few more files between the ports.
- Other minor changes.
Revision 1.22: download - view: text, markup, annotated - select for diffs
Sun Sep 23 16:54:08 2007 UTC (17 years, 2 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-x86pmap-base
Branch point for: yamt-x86pmap
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +7 -7
lines
Ajust for Xen 3.1.0 public headers. From Christoph Egger in private mail.
Revision 1.19.2.1: download - view: text, markup, annotated - select for diffs
Sat Sep 9 02:44:56 2006 UTC (18 years, 3 months ago) by rpaulo
Branches: rpaulo-netinet-merge-pcb
Diff to: previous 1.19: preferred, colored; next MAIN 1.20: preferred, colored
Changes since revision 1.19: +23 -9
lines
sync with head
Revision 1.15.2.1: download - view: text, markup, annotated - select for diffs
Wed Jun 21 14:58:15 2006 UTC (18 years, 5 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +70 -26
lines
sync with head.
Revision 1.19.4.1: download - view: text, markup, annotated - select for diffs
Sat Apr 22 11:38:11 2006 UTC (18 years, 7 months ago) by simonb
Branches: simonb-timecounters
CVS tags: simonb-timcounters-final
Diff to: previous 1.19: preferred, colored; next MAIN 1.20: preferred, colored
Changes since revision 1.19: +23 -9
lines
Sync with head.
Revision 1.10.2.6: download - view: text, markup, annotated - select for diffs
Fri Apr 7 12:51:25 2006 UTC (18 years, 8 months ago) by tron
Branches: netbsd-3
CVS tags: netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1
Diff to: previous 1.10.2.5: preferred, colored; branchpoint 1.10: preferred, colored; next MAIN 1.11: preferred, colored
Changes since revision 1.10.2.5: +64 -20
lines
Apply patch (requested by bouyer in ticket #1245):
Pull up Xen3 domU support. This adds support for the Xen-3 memory bootstrap,
xenstore, and block and network device frontend. Xen-3 support is turned
on by 'options XEN3', which disable Xen-2 support.
Changes affecting non-xen3 specific code:
- xbd and xennet at hypervisor now attaches with xbd_hypervisor and
xennet_hypervisor
- x86_atomic_* renamed to xen_atomic_*
- use genassim.cf to pull in more constant from include files for assembly
- Map the shared info page from locore.S instead of the 0xffffffff hack
in xen_machdep.c
- remove some unused code
- some __asm__ __volatile__ -> __asm volatile and __inline__ -> inline
- more debug code
Revision 1.20.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 13 09:07:03 2006 UTC (18 years, 8 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.20: preferred, colored; next MAIN 1.21: preferred, colored
Changes since revision 1.20: +15 -1
lines
sync with head.
Revision 1.21: download - view: text, markup, annotated - select for diffs
Mon Mar 6 19:55:47 2006 UTC (18 years, 9 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
yamt-splraiseipl-base2,
yamt-splraiseipl-base,
yamt-splraiseipl,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
yamt-pdpolicy-base6,
yamt-pdpolicy-base5,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
yamt-pdpolicy-base2,
yamt-idlelwp-base8,
yamt-idlelwp,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
thorpej-atomic-base,
thorpej-atomic,
simonb-timecounters-base,
rpaulo-netinet-merge-pcb-base,
reinoud-bufcleanup,
post-newlock2-merge,
peter-altq-base,
peter-altq,
nick-csl-alignment-base5,
nick-csl-alignment-base,
nick-csl-alignment,
newlock2-nbase,
newlock2-base,
newlock2,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
netbsd-4,
mjf-ufs-trans-base,
mjf-ufs-trans,
matt-nb4-arm-base,
matt-nb4-arm,
matt-mips64-base,
matt-mips64,
hpcarm-cleanup,
gdamore-uart-base,
gdamore-uart,
elad-kernelauth-base,
elad-kernelauth,
chap-midi-nbase,
chap-midi-base,
chap-midi,
ad-audiomp-base,
ad-audiomp,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: vmlocking,
ppcoea-renovation,
matt-armv6,
jmcneill-pm
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +15 -1
lines
Add xen_atomic_cmpxchg16(), which exports the cmpxchgw instruction to C.
Revision 1.18.2.2: download - view: text, markup, annotated - select for diffs
Sat Feb 18 15:38:54 2006 UTC (18 years, 9 months ago) by yamt
Branches: yamt-uio_vmspace
Diff to: previous 1.18.2.1: preferred, colored; next MAIN 1.19: preferred, colored
Changes since revision 1.18.2.1: +9 -9
lines
sync with head.
Revision 1.20: download - view: text, markup, annotated - select for diffs
Thu Feb 16 20:17:15 2006 UTC (18 years, 9 months ago) by perry
Branches: MAIN
CVS tags: yamt-uio_vmspace-base5,
yamt-pdpolicy-base
Branch point for: yamt-pdpolicy
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +9 -9
lines
Change "inline" back to "__inline" in .h files -- C99 is still too
new, and some apps compile things in C89 mode. C89 keywords stay.
As per core@.
Revision 1.18.2.1: download - view: text, markup, annotated - select for diffs
Wed Feb 1 14:51:42 2006 UTC (18 years, 10 months ago) by yamt
Branches: yamt-uio_vmspace
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +48 -18
lines
sync with head.
Revision 1.19: download - view: text, markup, annotated - select for diffs
Sun Jan 15 22:09:51 2006 UTC (18 years, 10 months ago) by bouyer
Branches: MAIN
Branch point for: simonb-timecounters,
rpaulo-netinet-merge-pcb
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +48 -18
lines
Snapshot of work in progress on NetBSD port to Xen3:
- kernel (both dom0 and domU) boot, console is functionnal and it can starts
software from a ramdisk
- there is no driver front-end expect console for domU yet.
- dom0 can probe devices and ex(4) work when Xen3 is booted without acpi
and apic support. But the on-board IDE doens't get interrupts.
The PCI code still needs work (it's hardcoded to mode 1). Some of this
code should be shared with ../x86
The physical insterrupt code needs to get MPBIOS and ACPI support, and
do interrupt routing to properly interract with Xen.
To enable Xen-3.0 support, add
options XEN3
to your kernel config file (this will disable Xen2 support)
Changes affecting Xen-2.0 support (no functionnal changes intended):
- get more constants from genassym for assembly code
- remove some unneeded registers move from start()
- map the shared info page from start(), and remove the pte = 0xffffffff hack
- vector.S: in hypervisor_callback() make sure %esi points to
HYPERVISOR_shared_info before accessing the info page. Remplace some
hand-written assembly with the equivalent macro defined in frameasm.h
- more debug code, dissabled by default.
while here added my copyright on some files I worked on in 2005.
Revision 1.18: download - view: text, markup, annotated - select for diffs
Sat Dec 24 23:24:07 2005 UTC (18 years, 11 months ago) by perry
Branches: MAIN
Branch point for: yamt-uio_vmspace
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +4 -4
lines
__asm__ -> __asm
__const__ -> const
__inline__ -> inline
__volatile__ -> volatile
Revision 1.17: download - view: text, markup, annotated - select for diffs
Sat Dec 24 20:07:48 2005 UTC (18 years, 11 months ago) by perry
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +12 -12
lines
Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.
Revision 1.16: download - view: text, markup, annotated - select for diffs
Sun Dec 11 12:19:48 2005 UTC (18 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +1 -1
lines
merge ktrace-lwp.
Revision 1.8.2.7: download - view: text, markup, annotated - select for diffs
Thu Nov 10 14:00:34 2005 UTC (19 years ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.8.2.6: preferred, colored; branchpoint 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8.2.6: +5 -3
lines
Sync with HEAD. Here we go again...
Revision 1.10.2.5: download - view: text, markup, annotated - select for diffs
Tue Jun 28 10:27:44 2005 UTC (19 years, 5 months ago) by tron
Branches: netbsd-3
CVS tags: netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0
Diff to: previous 1.10.2.4: preferred, colored; branchpoint 1.10: preferred, colored
Changes since revision 1.10.2.4: +2 -1
lines
Pull up revision 1.15 (requested by bouyer in ticket #481):
Add support for x86 boot flags:
-s boot single user
-a ask root device
XXX -d is ifdef'd out for now, it cause early panic (no console message).
Revision 1.10.2.4: download - view: text, markup, annotated - select for diffs
Sat Jun 18 10:40:43 2005 UTC (19 years, 5 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.10.2.3: preferred, colored; branchpoint 1.10: preferred, colored
Changes since revision 1.10.2.3: +2 -2
lines
Pull up revision 1.14 (requested by yamt in ticket #462):
always provide prototype of printk for now. because:
- currently its implementation is always compiled in.
- there're users which don't honor XENDEBUG.
Revision 1.10.2.3: download - view: text, markup, annotated - select for diffs
Sat Jun 18 10:37:24 2005 UTC (19 years, 5 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.10.2.2: preferred, colored; branchpoint 1.10: preferred, colored
Changes since revision 1.10.2.2: +1 -1
lines
Pull up revision 1.13 (requested by yamt in ticket #461):
x86_variable_test_bit: don't remove const qualifier unnecessarily.
Revision 1.15: download - view: text, markup, annotated - select for diffs
Wed Jun 15 22:08:08 2005 UTC (19 years, 5 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-vop-base3,
yamt-vop-base2,
yamt-vop-base,
yamt-vop,
yamt-readahead-pervnode,
yamt-readahead-perfile,
yamt-readahead-base3,
yamt-readahead-base2,
yamt-readahead-base,
yamt-readahead,
thorpej-vnode-attr-base,
thorpej-vnode-attr,
ktrace-lwp-base
Branch point for: yamt-lazymbuf
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -1
lines
Add support for x86 boot flags:
-s boot single user
-a ask root device
XXX -d is ifdef'd out for now, it cause early panic (no console message).
Revision 1.14: download - view: text, markup, annotated - select for diffs
Tue May 31 12:42:58 2005 UTC (19 years, 6 months ago) by yamt
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2
lines
always provide prototype of printk for now. because:
- currently its implementation is always compiled in.
- there're users which don't honor XENDEBUG.
Revision 1.13: download - view: text, markup, annotated - select for diffs
Tue May 31 04:34:53 2005 UTC (19 years, 6 months ago) by yamt
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2
lines
x86_variable_test_bit: don't remove const qualifier unnecessarily.
Revision 1.9.4.1: download - view: text, markup, annotated - select for diffs
Fri Apr 29 11:28:29 2005 UTC (19 years, 7 months ago) by kent
Branches: kent-audio2
Diff to: previous 1.9: preferred, colored; next MAIN 1.10: preferred, colored
Changes since revision 1.9: +60 -34
lines
sync with -current
Revision 1.10.2.2: download - view: text, markup, annotated - select for diffs
Wed Apr 13 21:39:05 2005 UTC (19 years, 7 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.10.2.1: preferred, colored; branchpoint 1.10: preferred, colored
Changes since revision 1.10.2.1: +1 -0
lines
Pull up revision 1.12 (requested by yamt in ticket #146):
fix a bug which corrupts runqueue.
when dealing with events, which are handed to xenevt pseudo device,
don't call wakeup(9)/selnotify(9) at too high IPL. PR/29792.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Mon Apr 11 12:10:31 2005 UTC (19 years, 7 months ago) by yamt
Branches: MAIN
CVS tags: kent-audio2-base
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -1
lines
fix a bug which corrupts runqueue.
when dealing with events, which are handed to xenevt pseudo device,
don't call wakeup(9)/selnotify(9) at too high IPL. PR/29792.
Revision 1.8.2.6: download - view: text, markup, annotated - select for diffs
Fri Apr 1 14:29:10 2005 UTC (19 years, 8 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.8.2.5: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.2.5: +59 -34
lines
Sync with HEAD.
Revision 1.10.2.1: download - view: text, markup, annotated - select for diffs
Wed Mar 30 10:04:25 2005 UTC (19 years, 8 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +10 -9
lines
Pull up revision 1.11 (requested by bouyer in ticket #71):
Don't assume we're on a uniprocessor system (the hypervisor may be running SMP)
and add "lock;" barrier to avoid instruction reordering in event handlings.
This fix the last issue with event loss I was getting on SMP systems.
Revision 1.11: download - view: text, markup, annotated - select for diffs
Sat Mar 26 20:00:49 2005 UTC (19 years, 8 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +10 -9
lines
Don't assume we're on a uniprocessor system (the hypervisor may be running SMP)
and add "lock;" barrier to avoid instruction reordering in event handlings.
This fix the last issue with event loss I was getting on SMP systems.
Revision 1.9.6.1: download - view: text, markup, annotated - select for diffs
Sat Mar 19 08:33:26 2005 UTC (19 years, 8 months ago) by yamt
Branches: yamt-km
Diff to: previous 1.9: preferred, colored; next MAIN 1.10: preferred, colored
Changes since revision 1.9: +53 -29
lines
sync with head. xen and whitespace. xen part is not finished.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Wed Mar 9 22:39:20 2005 UTC (19 years, 9 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-km-base4,
yamt-km-base3,
netbsd-3-base
Branch point for: netbsd-3
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +53 -29
lines
Merge the bouyer-xen2 branch. This add supports for the Xen 2.0 virtual
machine kernel (both privileged and non-privileged domains), and remove support
for the old xen 1.2.
Revision 1.9.2.6: download - view: text, markup, annotated - select for diffs
Wed Feb 16 14:01:47 2005 UTC (19 years, 9 months ago) by bouyer
Branches: bouyer-xen2
Diff to: previous 1.9.2.5: preferred, colored; branchpoint 1.9: preferred, colored; next MAIN 1.10: preferred, colored
Changes since revision 1.9.2.5: +5 -1
lines
Glue xen_shm and the block and network backends to the system.
Revision 1.9.2.5: download - view: text, markup, annotated - select for diffs
Sat Feb 12 22:25:01 2005 UTC (19 years, 9 months ago) by bouyer
Branches: bouyer-xen2
Diff to: previous 1.9.2.4: preferred, colored; branchpoint 1.9: preferred, colored
Changes since revision 1.9.2.4: +1 -3
lines
Remove prototypes for xenvfr_init and xenmachmem_init
Revision 1.9.2.4: download - view: text, markup, annotated - select for diffs
Mon Jan 31 17:21:16 2005 UTC (19 years, 10 months ago) by bouyer
Branches: bouyer-xen2
Diff to: previous 1.9.2.3: preferred, colored; branchpoint 1.9: preferred, colored
Changes since revision 1.9.2.3: +3 -1
lines
First pieces of domain control operations:
- use an up to date xenio.h
- update privcmd.c for newer ioctls (incomplete, some just return an error for
now)
- add a /dev/xenevt pseudo-device, which provide to userland an interface to
xen events
Now xend starts, and basic xm commands (such as list) work.
Revision 1.9.2.3: download - view: text, markup, annotated - select for diffs
Tue Jan 18 14:44:59 2005 UTC (19 years, 10 months ago) by bouyer
Branches: bouyer-xen2
Diff to: previous 1.9.2.2: preferred, colored; branchpoint 1.9: preferred, colored
Changes since revision 1.9.2.2: +11 -4
lines
The wbinvd instruction can't be used with xen, it case a kernel trap.
Implement wbinvd() with MMUEXT_FLUSH_CACHE.
Make shared_info_t volatile.
Revision 1.8.2.5: download - view: text, markup, annotated - select for diffs
Sat Dec 18 09:31:45 2004 UTC (19 years, 11 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.8.2.4: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.2.4: +2 -2
lines
Sync with HEAD.
Revision 1.9.2.2: download - view: text, markup, annotated - select for diffs
Fri Dec 17 11:09:46 2004 UTC (19 years, 11 months ago) by bouyer
Branches: bouyer-xen2
Diff to: previous 1.9.2.1: preferred, colored; branchpoint 1.9: preferred, colored
Changes since revision 1.9.2.1: +2 -2
lines
Merge change from rev 1.9
Revision 1.9.2.1: download - view: text, markup, annotated - select for diffs
Mon Dec 13 17:52:21 2004 UTC (19 years, 11 months ago) by bouyer
Branches: bouyer-xen2
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +39 -26
lines
Commit files from netbsd-2.0-xen-sparse/sys/arch/xen in the Xen-2.0
distribution. These are the files modified from the 2.0 tree to get
NetBSD/xen working with Xen 2.
Revision 1.9: download - view: text, markup, annotated - select for diffs
Fri Dec 10 18:49:02 2004 UTC (19 years, 11 months ago) by christos
Branches: MAIN
CVS tags: yamt-km-base2,
yamt-km-base,
kent-audio1-beforemerge,
bouyer-xen2-base
Branch point for: yamt-km,
kent-audio2,
bouyer-xen2
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -2
lines
don't use va_list here; use _BSD_VA_LIST_ because we could be included
before va_list is defined. This is common practice for kernel header
files (syslog.h)
Revision 1.8.2.4: download - view: text, markup, annotated - select for diffs
Tue Sep 21 13:24:37 2004 UTC (20 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.8.2.3: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.2.3: +1 -1
lines
Fix the sync with head I botched.
Revision 1.8.2.3: download - view: text, markup, annotated - select for diffs
Sat Sep 18 14:42:53 2004 UTC (20 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.8.2.2: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.2.2: +1 -1
lines
Sync with HEAD.
Revision 1.8.2.2: download - view: text, markup, annotated - select for diffs
Tue Aug 3 10:43:11 2004 UTC (20 years, 4 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.8.2.1: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.2.1: +236 -0
lines
Sync with HEAD
Revision 1.1.2.2: download - view: text, markup, annotated - select for diffs
Thu Jun 17 09:23:19 2004 UTC (20 years, 5 months ago) by tron
Branches: netbsd-2-0
CVS tags: netbsd-2-base,
netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1,
netbsd-2-1,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE,
netbsd-2
Diff to: previous 1.1.2.1: preferred, colored; branchpoint 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1.2.1: +92 -162
lines
Pull up revision 1.8 (requested by cl in ticket #498):
cleanup low-level bit mangling code
Revision 1.8.2.1
Mon Jun 14 13:55:52 2004 UTC (20 years, 5 months ago) by skrll
Branches: ktrace-lwp
FILE REMOVED
Changes since revision 1.8: +0 -236
lines
file xen.h was added on branch ktrace-lwp on 2004-08-03 10:43:11 +0000
Revision 1.8: download - view: text, markup, annotated - select for diffs
Mon Jun 14 13:55:52 2004 UTC (20 years, 5 months ago) by cl
Branches: MAIN
CVS tags: kent-audio1-base,
kent-audio1
Branch point for: ktrace-lwp
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +91 -161
lines
cleanup low-level bit mangling code
Revision 1.1.2.1: download - view: text, markup, annotated - select for diffs
Sat May 22 15:58:19 2004 UTC (20 years, 6 months ago) by he
Branches: netbsd-2-0
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +27 -26
lines
Pull up revisions 1.2-1.7 (requested by cl in ticket #337):
Upgrade xen support:
- add block device driver
- network device driver bug fixes
- support for vga/keyboard/mouse
- support for domain0 operations
- fix /dev/mem and i386_iopl, reboot, event dispatch
- fix clock support, cpu speed report, lazy fpu switching
- add xen12load loader
- sys/arch/xen parts of build.sh release support
[cl, ticket #337]
Revision 1.7: download - view: text, markup, annotated - select for diffs
Fri May 7 15:51:04 2004 UTC (20 years, 7 months ago) by cl
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +5 -1
lines
Add support for domain0 operations:
- access to all physical memory
- access to hypervisor traps from userland
- setup/config Xen's network routing/firewall rules
Revision 1.6: download - view: text, markup, annotated - select for diffs
Fri May 7 13:56:48 2004 UTC (20 years, 7 months ago) by cl
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2
lines
cleanup debugging code
Revision 1.5: download - view: text, markup, annotated - select for diffs
Mon Apr 26 23:54:42 2004 UTC (20 years, 7 months ago) by cl
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +7 -1
lines
Move struct xen_netinfo into include/xen.h so that xen12load compiles again.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Sat Apr 24 18:55:02 2004 UTC (20 years, 7 months ago) by cl
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +13 -1
lines
Make kernel command line parsing support additional keywords without
having to change existing code which calls the parser.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Apr 24 18:24:14 2004 UTC (20 years, 7 months ago) by cl
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +4 -4
lines
Consistently use xencons for eveything reffering to Xen's virtual console.
rename arch/xen/xen/console.c -> arch/xen/xen/xencons.c
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat Apr 17 12:46:42 2004 UTC (20 years, 7 months ago) by cl
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -23
lines
- fix event dispatching for event 0
- use struct trapframe instead of struct pt_regs
Revision 1.1: download - view: text, markup, annotated - select for diffs
Thu Mar 11 21:44:08 2004 UTC (20 years, 8 months ago) by cl
Branches: MAIN
CVS tags: netbsd-2-0-base
Branch point for: netbsd-2-0
Add port to the Xen virtual machine monitor.
(see http://www.cl.cam.ac.uk/Research/SRG/netos/xen/)
CVSweb <webmaster@jp.NetBSD.org>