Displaying 12 results from an estimated 12 matches for "put_domain".
Did you mean:
auth_domain
2005 Oct 10
13
[PATCH] 0/2 VCPU creation and allocation
I''ve put together two patches. The first introduces a new dom0_op,
set_max_vcpus, which with an associated variable and a check in the
VCPUOP handler fixes [1]bug 288. Also included is a new VCPUOP,
VCPUOP_create, which handles all of the vcpu creation tasks and leaves
initialization and unpausing to VCPUOP_initialize. The separation
allows for build-time allocation of vcpus which
2007 Jan 17
11
[PATCH] Add RCU support into Xen - Repost
...it the following additional patches, after this
one is accepted:
1) rename_find_domain.patch: Rename find_domain_by_id() to
get_domain_by_id()
2) add_find_domain.patch: Add new find_domain_by_id() function that
uses RCU
3) use_find_domain.patch: Replace invocations of
get_domain_by_id()/put_domain() by find_domain_by_id() where possible.
Thanks
Renato
Patch description: Import linux RCU code into Xen
This is simplified version of the linux code, removing several
components not needed in Xen (at least for now)
===================================================================...
2007 Jan 17
11
[PATCH] Add RCU support into Xen - Repost
...it the following additional patches, after this
one is accepted:
1) rename_find_domain.patch: Rename find_domain_by_id() to
get_domain_by_id()
2) add_find_domain.patch: Add new find_domain_by_id() function that
uses RCU
3) use_find_domain.patch: Replace invocations of
get_domain_by_id()/put_domain() by find_domain_by_id() where possible.
Thanks
Renato
Patch description: Import linux RCU code into Xen
This is simplified version of the linux code, removing several
components not needed in Xen (at least for now)
===================================================================...
2012 Dec 12
2
[PATCH v7 1/2] xen: unify domain locking in domctl code
These two patches were originally part of the XSM series that I have
posted, and remain prerequisites for that series. However, they are
independent of the XSM changes and are a useful simplification
regardless of the use of XSM.
The Acked-bys on these patches were provided before rebasing them over
the copyback changes in 26268:1b72138bddda, which had minor conflicts
that I resolved.
[PATCH
2007 Aug 28
6
[PATCH] Make XEN_DOMCTL_destroydomain hypercall continuable.
...domain_kill(struct domain *d)
-{
- domain_pause(d);
-
- /* Already dying? Then bail. */
- if ( test_and_set_bool(d->is_dying) )
- {
- domain_unpause(d);
- return;
- }
-
- evtchn_destroy(d);
- gnttab_release_mappings(d);
- domain_relinquish_resources(d);
- put_domain(d);
-
- /* Kick page scrubbing after domain_relinquish_resources(). */
- page_scrub_kick();
-
- send_guest_global_virq(dom0, VIRQ_DOM_EXC);
+int domain_kill(struct domain *d)
+{
+ int rc = 0;
+
+ if ( d == current->domain )
+ return -EINVAL;
+
+ /* Protected by domctl_lo...
2008 Jul 25
0
[PATCH 0/4] Various VT-d code cleanup
...n front of list_move() in
reassign_device_ownership().
Patch 2: There is only one INCLUDE_ALL DMAR unit in system, but no
restriction on whether it''s the last unit.
Patch 3: Change code style of pci.c file, and add
spin_unlock(&pdev->lock) when iommu_add_device() fails.
Patch 4: Add put_domain() for breaks in arch_do_domctl().
Signed-off-by: Weidong Han <weidong.han@intel.com>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2006 Aug 03
3
RE: [Patch][RFC] Support "xm dump" (is Re: Re: [Patch]Enable "sysrq c" handler for domU coredump)
Two things:
1. I''m not convinced ''xm crash'' is needed - ''xm destroy'' will do this
(and if you want
a dump, do ''xm dump'' followed by ''xm destroy'')
2. I don''t see the point of the --noreboot option on ''xm dump'' -- I
think this command
should simply live-dump the specified domain - as
2016 Jun 24
0
Wine release 1.9.13
...to set_http_header in nsUploadChannel_SetUploadStream.
jscript: Properly handle arguments in Object constructor.
wininet: Fixed tests on win10.
wininet: Ignore unknown attributes in get_cookie.
wininet: Use INTERNET_SendCallback in ftp.c.
mshtml: Added IHTMLDocument2::put_domain implementation.
mshtml: Return success in IHTMLWindow2::moveBy and resizeBy.
secur32/tests: Don't load secur32.dll function dynamically in negotiate.c.
mshtml: Added IHTMLLinkElement::onload property implementation.
Jarkko Korpi (1):
widl: Fix overflow when left-shiftin...
2006 Aug 01
18
[Patch] Enable "sysrq c" handler for domU coredump
Hi,
In the case of linux, crash_kexec() is occured by "sysrq c".
In the case of DomainU on xen, Help is occured by "sysrq c" now.
So The way of dumping DomainU''s memory manualy is nothing.
I fix this issue by the following way.
1. Panic is occured by "sysrq c" on both Domain0 and DomainU.
2. On DomainU, coredump is generated in /var/xen/dump (on Domain0).
2012 Jan 25
26
[PATCH v4 00/23] Xenstore stub domain
Changes from v3:
- mini-os configuration files moved into stubdom/
- mini-os extra console support now a config option
- Fewer #ifdefs
- grant table setup uses hypercall bounce
- Xenstore stub domain syslog support re-enabled
Changes from v2:
- configuration support added to mini-os build system
- add mini-os support for conditionally compiling frontends, xenbus
-
2007 Jan 18
13
[PATCH 0/5] dump-core take 2:
The following dump-core patches changes its format into ELF,
adds PFN-GMFN table, HVM support, and adds experimental IA64 support.
- ELF format
Program header and note section are adopted.
- HVM domain support
To know the memory area to dump, XENMEM_set_memory_map is added.
XENMEM_memory_map hypercall is for current domain, so new one is created.
and hvm domain builder tell xen its
2013 Mar 21
27
[PATCH 0/4] xen/arm: guest SMP support
Hi all,
this small patch series implement guest SMP support for ARM, using the
ARM PSCI interface for secondary cpu bringup.
Stefano Stabellini (4):
xen/arm: basic PSCI support, implement cpu_on
xen/arm: support for guest SGI
xen/arm: support vcpu_op hypercalls
xen: move VCPUOP_register_vcpu_info to common code
xen/arch/arm/domain.c | 66 ++++++++++++++++++++++++