search for: xenbus_client

Displaying 20 results from an estimated 47 matches for "xenbus_client".

2011 Jul 26
2
[PATCH 5/7] Xen: fix whitespaces, tabs coding style issue in drivers/xen/xenbus/xenbus_client.c
From: Ruslan Pisarev <ruslan at rpisarev.org.ua> This is a patch to the xenbus_client.c file that fixed up whitespaces, tabs errors found by the checkpatch.pl tools. Signed-off-by: Ruslan Pisarev <ruslan at rpisarev.org.ua> --- drivers/xen/xenbus/xenbus_client.c | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/xen/xenbus/xenbu...
2011 Jul 26
2
[PATCH 5/7] Xen: fix whitespaces, tabs coding style issue in drivers/xen/xenbus/xenbus_client.c
From: Ruslan Pisarev <ruslan at rpisarev.org.ua> This is a patch to the xenbus_client.c file that fixed up whitespaces, tabs errors found by the checkpatch.pl tools. Signed-off-by: Ruslan Pisarev <ruslan at rpisarev.org.ua> --- drivers/xen/xenbus/xenbus_client.c | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/xen/xenbus/xenbu...
2011 Jul 26
2
[PATCH 5/7] Xen: fix whitespaces, tabs coding style issue in drivers/xen/xenbus/xenbus_client.c
From: Ruslan Pisarev <ruslan at rpisarev.org.ua> This is a patch to the xenbus_client.c file that fixed up whitespaces, tabs errors found by the checkpatch.pl tools. Signed-off-by: Ruslan Pisarev <ruslan at rpisarev.org.ua> --- drivers/xen/xenbus/xenbus_client.c | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/xen/xenbus/xenbu...
2008 Apr 01
0
[PATCH 010/113] xen: replace callers of alloc_vm_area()/free_vm_area() with xen_ prefixed one.
...so that it's impossible to have IA64 definitions of allocate_vm_area()/free_vm_area(). Instead introduce xen_allocate_vm_area()/xen_free_vm_area() and use them. Signed-off-by: Isaku Yamahata <yamahata at valinux.co.jp> --- drivers/xen/grant-table.c | 2 +- drivers/xen/xenbus/xenbus_client.c | 6 +++--- include/asm-x86/xen/grant_table.h | 7 +++++++ include/xen/grant_table.h | 1 + 4 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 include/asm-x86/xen/grant_table.h diff --git a/drivers/xen/grant-table.c b/drivers/xen/grant-table.c index 95016fd....
2008 Apr 01
0
[PATCH 010/113] xen: replace callers of alloc_vm_area()/free_vm_area() with xen_ prefixed one.
...so that it's impossible to have IA64 definitions of allocate_vm_area()/free_vm_area(). Instead introduce xen_allocate_vm_area()/xen_free_vm_area() and use them. Signed-off-by: Isaku Yamahata <yamahata at valinux.co.jp> --- drivers/xen/grant-table.c | 2 +- drivers/xen/xenbus/xenbus_client.c | 6 +++--- include/asm-x86/xen/grant_table.h | 7 +++++++ include/xen/grant_table.h | 1 + 4 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 include/asm-x86/xen/grant_table.h diff --git a/drivers/xen/grant-table.c b/drivers/xen/grant-table.c index 95016fd....
2008 Jun 13
1
regarding linux c/s 572
Ian, shouldn''t the error path allocations in drivers/xen/xenbus/xenbus_client.c (in error_path() and _dev_error()) also be converted to GFP_NOIO? Thanks, Jan _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2008 Mar 28
12
[PATCH 00/12] Xen arch portability patches (take 4)
...| 91 +++++++++++++ arch/x86/xen/xen-ops.h | 2 +- drivers/xen/Makefile | 3 +- {arch/x86 => drivers}/xen/events.c | 34 ++++-- {arch/x86 => drivers}/xen/features.c | 0 drivers/xen/grant-table.c | 37 +----- drivers/xen/xenbus/xenbus_client.c | 6 +- drivers/xen/xencomm.c | 232 ++++++++++++++++++++++++++++++++++ include/asm-x86/xen/hypervisor.h | 13 ++ include/asm-x86/xen/interface.h | 24 ++++ include/{ => asm-x86}/xen/page.h | 0 include/xen/events.h | 1 + include/xe...
2008 Mar 28
12
[PATCH 00/12] Xen arch portability patches (take 4)
...| 91 +++++++++++++ arch/x86/xen/xen-ops.h | 2 +- drivers/xen/Makefile | 3 +- {arch/x86 => drivers}/xen/events.c | 34 ++++-- {arch/x86 => drivers}/xen/features.c | 0 drivers/xen/grant-table.c | 37 +----- drivers/xen/xenbus/xenbus_client.c | 6 +- drivers/xen/xencomm.c | 232 ++++++++++++++++++++++++++++++++++ include/asm-x86/xen/hypervisor.h | 13 ++ include/asm-x86/xen/interface.h | 24 ++++ include/{ => asm-x86}/xen/page.h | 0 include/xen/events.h | 1 + include/xe...
2012 Mar 05
11
[PATCH 0001/001] xen: multi page ring support for block devices
...t_ref, &vaddr); + err = xenbus_map_ring_valloc(pdev->xdev, &gnt_ref, 1, &vaddr); if (err < 0) { xenbus_dev_fatal(pdev->xdev, err, "Error mapping other domain page in ours."); diff --git a/drivers/xen/xenbus/xenbus_client.c b/drivers/xen/xenbus/xenbus_client.c index 566d2ad..3a14524 100644 --- a/drivers/xen/xenbus/xenbus_client.c +++ b/drivers/xen/xenbus/xenbus_client.c @@ -53,14 +53,16 @@ struct xenbus_map_node { struct vm_struct *area; /* PV */ struct page *page; /* HVM */...
2012 Mar 05
11
[PATCH 0001/001] xen: multi page ring support for block devices
...t_ref, &vaddr); + err = xenbus_map_ring_valloc(pdev->xdev, &gnt_ref, 1, &vaddr); if (err < 0) { xenbus_dev_fatal(pdev->xdev, err, "Error mapping other domain page in ours."); diff --git a/drivers/xen/xenbus/xenbus_client.c b/drivers/xen/xenbus/xenbus_client.c index 566d2ad..3a14524 100644 --- a/drivers/xen/xenbus/xenbus_client.c +++ b/drivers/xen/xenbus/xenbus_client.c @@ -53,14 +53,16 @@ struct xenbus_map_node { struct vm_struct *area; /* PV */ struct page *page; /* HVM */...
2012 Mar 05
11
[PATCH 0001/001] xen: multi page ring support for block devices
...t_ref, &vaddr); + err = xenbus_map_ring_valloc(pdev->xdev, &gnt_ref, 1, &vaddr); if (err < 0) { xenbus_dev_fatal(pdev->xdev, err, "Error mapping other domain page in ours."); diff --git a/drivers/xen/xenbus/xenbus_client.c b/drivers/xen/xenbus/xenbus_client.c index 566d2ad..3a14524 100644 --- a/drivers/xen/xenbus/xenbus_client.c +++ b/drivers/xen/xenbus/xenbus_client.c @@ -53,14 +53,16 @@ struct xenbus_map_node { struct vm_struct *area; /* PV */ struct page *page; /* HVM */...
2008 Feb 21
14
[PATCH 00/11] Xen arch portability patches
...| 4 +- arch/x86/xen/grant-table.c | 91 +++++++++++++ drivers/xen/Makefile | 3 +- {arch/x86 => drivers}/xen/events.c | 34 ++++-- {arch/x86 => drivers}/xen/features.c | 0 drivers/xen/grant-table.c | 37 +----- drivers/xen/xenbus/xenbus_client.c | 6 +- drivers/xen/xencomm.c | 232 ++++++++++++++++++++++++++++++++++ include/asm-x86/xen/hypervisor.h | 10 ++ include/asm-x86/xen/interface.h | 24 ++++ include/{ => asm-x86}/xen/page.h | 0 include/xen/events.h | 1 + include/xe...
2008 Feb 21
14
[PATCH 00/11] Xen arch portability patches
...| 4 +- arch/x86/xen/grant-table.c | 91 +++++++++++++ drivers/xen/Makefile | 3 +- {arch/x86 => drivers}/xen/events.c | 34 ++++-- {arch/x86 => drivers}/xen/features.c | 0 drivers/xen/grant-table.c | 37 +----- drivers/xen/xenbus/xenbus_client.c | 6 +- drivers/xen/xencomm.c | 232 ++++++++++++++++++++++++++++++++++ include/asm-x86/xen/hypervisor.h | 10 ++ include/asm-x86/xen/interface.h | 24 ++++ include/{ => asm-x86}/xen/page.h | 0 include/xen/events.h | 1 + include/xe...
2008 Feb 21
14
[PATCH 00/11] Xen arch portability patches
...| 4 +- arch/x86/xen/grant-table.c | 91 +++++++++++++ drivers/xen/Makefile | 3 +- {arch/x86 => drivers}/xen/events.c | 34 ++++-- {arch/x86 => drivers}/xen/features.c | 0 drivers/xen/grant-table.c | 37 +----- drivers/xen/xenbus/xenbus_client.c | 6 +- drivers/xen/xencomm.c | 232 ++++++++++++++++++++++++++++++++++ include/asm-x86/xen/hypervisor.h | 10 ++ include/asm-x86/xen/interface.h | 24 ++++ include/{ => asm-x86}/xen/page.h | 0 include/xen/events.h | 1 + include/xe...
2008 Mar 05
51
[PATCH 00/50] ia64/xen take 3: ia64/xen domU paravirtualization
...| 2 +- drivers/xen/Makefile | 3 +- {arch/x86 => drivers}/xen/events.c | 33 +- {arch/x86 => drivers}/xen/features.c | 0 drivers/xen/grant-table.c | 37 +-- drivers/xen/xenbus/xenbus_client.c | 6 +- drivers/xen/xencomm.c | 232 ++++++++ include/asm-ia64/gcc_intrin.h | 58 +- include/asm-ia64/hw_irq.h | 24 +- include/asm-ia64/intel_intrin.h | 64 +- include/asm-ia64...
2008 Mar 05
51
[PATCH 00/50] ia64/xen take 3: ia64/xen domU paravirtualization
...| 2 +- drivers/xen/Makefile | 3 +- {arch/x86 => drivers}/xen/events.c | 33 +- {arch/x86 => drivers}/xen/features.c | 0 drivers/xen/grant-table.c | 37 +-- drivers/xen/xenbus/xenbus_client.c | 6 +- drivers/xen/xencomm.c | 232 ++++++++ include/asm-ia64/gcc_intrin.h | 58 +- include/asm-ia64/hw_irq.h | 24 +- include/asm-ia64/intel_intrin.h | 64 +- include/asm-ia64...
2007 Apr 29
33
[patch 00/32] xen: Xen implementation for paravirt_ops
Hi Andi, This series of patches implements the Xen paravirt-ops interface. It applies to 2.6.21 + 2.6.21-070428-1 + the patches I've posted over the last couple of days. Changes since the last posting: - update per review comments - comment each file - comment barrier use - use common cpu sibling setup - fixed a few minor bugs, specifically a traceirq mismatch warning - some
2007 Apr 29
33
[patch 00/32] xen: Xen implementation for paravirt_ops
Hi Andi, This series of patches implements the Xen paravirt-ops interface. It applies to 2.6.21 + 2.6.21-070428-1 + the patches I've posted over the last couple of days. Changes since the last posting: - update per review comments - comment each file - comment barrier use - use common cpu sibling setup - fixed a few minor bugs, specifically a traceirq mismatch warning - some
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths