All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix a typo
@ 2007-05-20 13:24 Dong, Eddie
       [not found] ` <10EA09EFD8728347A513008B6B0DA77A014E8ABD-wq7ZOvIWXbNpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
  0 siblings, 1 reply; 16+ messages in thread
From: Dong, Eddie @ 2007-05-20 13:24 UTC (permalink / raw)
  To: kvm-devel

[-- Attachment #1: Type: text/plain, Size: 615 bytes --]

Seems a typo leaking our eyes :-(

	
	Fixing a typo which mixes X86_64 and CONFIG_X86_64 and block 64
bits guest now.

        Signed-off-by: Yaozu (Eddie) Dong <eddie.dong-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>


diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c
index 5f4bdc0..9bf8c04 100644
--- a/drivers/kvm/vmx.c
+++ b/drivers/kvm/vmx.c
@@ -479,7 +479,7 @@ static void setup_msrs(struct kvm_vcpu *vcpu)
 	int index, save_nmsrs;
 
 	save_nmsrs = 0;
-#ifdef X86_64
+#ifdef CONFIG_X86_64
 	if (is_long_mode(vcpu)) {
 		index = __find_msr_index(vcpu, MSR_SYSCALL_MASK);
 		if (index >= 0)

[-- Attachment #2: fix1.patch --]
[-- Type: application/octet-stream, Size: 377 bytes --]

diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c
index 5f4bdc0..9bf8c04 100644
--- a/drivers/kvm/vmx.c
+++ b/drivers/kvm/vmx.c
@@ -479,7 +479,7 @@ static void setup_msrs(struct kvm_vcpu *vcpu)
 	int index, save_nmsrs;
 
 	save_nmsrs = 0;
-#ifdef X86_64
+#ifdef CONFIG_X86_64
 	if (is_long_mode(vcpu)) {
 		index = __find_msr_index(vcpu, MSR_SYSCALL_MASK);
 		if (index >= 0)

[-- Attachment #3: Type: text/plain, Size: 286 bytes --]

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

[-- Attachment #4: Type: text/plain, Size: 186 bytes --]

_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [PATCH] fix a typo
       [not found] ` <10EA09EFD8728347A513008B6B0DA77A014E8ABD-wq7ZOvIWXbNpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
@ 2007-05-20 13:30   ` Avi Kivity
  0 siblings, 0 replies; 16+ messages in thread
From: Avi Kivity @ 2007-05-20 13:30 UTC (permalink / raw)
  To: Dong, Eddie; +Cc: kvm-devel

Dong, Eddie wrote:
> Seems a typo leaking our eyes :-(
>
> 	
> 	Fixing a typo which mixes X86_64 and CONFIG_X86_64 and block 64
> bits guest now.
>
>   

Ouch.  Applied & pushed.  Thanks.

-- 
error compiling committee.c: too many arguments to function


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH] Fix a typo
@ 2007-07-04 14:16 Li, Xin B
  0 siblings, 0 replies; 16+ messages in thread
From: Li, Xin B @ 2007-07-04 14:16 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 56 bytes --]

Fix a typo
Signed-off-by: Xin Li <xin.b.li@intel.com>

[-- Attachment #2: typo.patch --]
[-- Type: application/octet-stream, Size: 1231 bytes --]

diff -r e7d40fadbf17 xen/arch/x86/hvm/vmx/vmcs.c
--- a/xen/arch/x86/hvm/vmx/vmcs.c	Wed Jul 04 10:34:18 2007 +0100
+++ b/xen/arch/x86/hvm/vmx/vmcs.c	Wed Jul 04 15:11:36 2007 +0800
@@ -80,7 +80,7 @@ void vmx_init_vmcs_config(void)
         min, opt, MSR_IA32_VMX_PINBASED_CTLS);
 
     min = (CPU_BASED_HLT_EXITING |
-           CPU_BASED_INVDPG_EXITING |
+           CPU_BASED_INVLPG_EXITING |
            CPU_BASED_MWAIT_EXITING |
            CPU_BASED_MOV_DR_EXITING |
            CPU_BASED_ACTIVATE_IO_BITMAP |
diff -r e7d40fadbf17 xen/include/asm-x86/hvm/vmx/vmcs.h
--- a/xen/include/asm-x86/hvm/vmx/vmcs.h	Wed Jul 04 10:34:18 2007 +0100
+++ b/xen/include/asm-x86/hvm/vmx/vmcs.h	Wed Jul 04 15:11:55 2007 +0800
@@ -97,7 +97,7 @@ void vmx_vmcs_exit(struct vcpu *v);
 #define CPU_BASED_VIRTUAL_INTR_PENDING        0x00000004
 #define CPU_BASED_USE_TSC_OFFSETING           0x00000008
 #define CPU_BASED_HLT_EXITING                 0x00000080
-#define CPU_BASED_INVDPG_EXITING              0x00000200
+#define CPU_BASED_INVLPG_EXITING              0x00000200
 #define CPU_BASED_MWAIT_EXITING               0x00000400
 #define CPU_BASED_RDPMC_EXITING               0x00000800
 #define CPU_BASED_RDTSC_EXITING               0x00001000

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH] Fix a typo
@ 2008-04-11  7:43 Masaki Kanno
  0 siblings, 0 replies; 16+ messages in thread
From: Masaki Kanno @ 2008-04-11  7:43 UTC (permalink / raw)
  To: xen-devel

Fix a typo.

Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com>

Best regards,
 Kan

diff -r 8d750b7acfa3 tools/libxc/xc_domain_save.c
--- a/tools/libxc/xc_domain_save.c	Thu Apr 10 11:11:25 2008 +0100
+++ b/tools/libxc/xc_domain_save.c	Fri Apr 11 16:39:56 2008 +0900
@@ -223,7 +223,7 @@ static int ratewrite(int io_fd, int live
                 {
                     budget += BURST_BUDGET;
                     last_put.tv_usec += burst_time_us;
-                    if ( last_put.tv_usec > 1000000 
+                    if ( last_put.tv_usec > 1000000 )
                     {
                         last_put.tv_usec -= 1000000;
                         last_put.tv_sec++;

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH] Fix a typo.
  2008-06-09 22:50   ` [PATCH] Make it possible to create a new Git repository in project parent directory Robin Rosenberg
@ 2008-06-09 22:50     ` Robin Rosenberg
  0 siblings, 0 replies; 16+ messages in thread
From: Robin Rosenberg @ 2008-06-09 22:50 UTC (permalink / raw)
  To: git; +Cc: spearce, Robin Rosenberg

From: Robin Rosenberg <robin.rosenberg@dewire.com>

Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>

diff --git a/org.spearce.egit.ui/src/org/spearce/egit/ui/internal/actions/ResetAction.java b/org.spearce.egit.ui/src/org/spearce/egit/ui/internal/actions/ResetAction.java
index 2187278..7ca48af 100644
--- a/org.spearce.egit.ui/src/org/spearce/egit/ui/internal/actions/ResetAction.java
+++ b/org.spearce.egit.ui/src/org/spearce/egit/ui/internal/actions/ResetAction.java
@@ -24,7 +24,7 @@ import org.spearce.egit.ui.internal.dialogs.BranchSelectionDialog;
 import org.spearce.jgit.lib.Repository;
 
 /**
- * An acton to reset the current branch to a specific revision.
+ * An action to reset the current branch to a specific revision.
  *
  * @see ResetOperation
  */
-- 
1.5.5.1.178.g1f811

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [PATCH] Fix a typo.
@ 2008-08-29  3:14 ` Zhang, Xiantao
  0 siblings, 0 replies; 16+ messages in thread
From: Zhang, Xiantao @ 2008-08-29  3:14 UTC (permalink / raw)
  To: kvm-ia64

[-- Attachment #1: Type: text/plain, Size: 680 bytes --]

From 297fb289f827e7921ae105d3a8ff79ca4c43a03a Mon Sep 17 00:00:00 2001
From: Xiantao Zhang <xiantao.zhang@intel.com>
Date: Fri, 29 Aug 2008 10:55:26 +0800
Subject: [PATCH] kvm: Qemu: Fix a typo.

VGA_RAM_SIZE -> GFW_SIZE.
Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
---
 qemu/hw/ipf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/qemu/hw/ipf.c b/qemu/hw/ipf.c
index 60ff634..c1a7bee 100644
--- a/qemu/hw/ipf.c
+++ b/qemu/hw/ipf.c
@@ -681,5 +681,5 @@ QEMUMachine ipf_machine = {
     "itanium",
     "Itanium Platform",
     ipf_init_pci,
-    VGA_RAM_SIZE + VGA_RAM_SIZE,
+    VGA_RAM_SIZE + GFW_SIZE,
 };
-- 
1.5.1

[-- Attachment #2: 0001-kvm-Qemu-Fix-a-typo.patch --]
[-- Type: application/octet-stream, Size: 657 bytes --]

From 297fb289f827e7921ae105d3a8ff79ca4c43a03a Mon Sep 17 00:00:00 2001
From: Xiantao Zhang <xiantao.zhang@intel.com>
Date: Fri, 29 Aug 2008 10:55:26 +0800
Subject: [PATCH] kvm: Qemu: Fix a typo.

VGA_RAM_SIZE -> GFW_SIZE.
Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
---
 qemu/hw/ipf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/qemu/hw/ipf.c b/qemu/hw/ipf.c
index 60ff634..c1a7bee 100644
--- a/qemu/hw/ipf.c
+++ b/qemu/hw/ipf.c
@@ -681,5 +681,5 @@ QEMUMachine ipf_machine = {
     "itanium",
     "Itanium Platform",
     ipf_init_pci,
-    VGA_RAM_SIZE + VGA_RAM_SIZE,
+    VGA_RAM_SIZE + GFW_SIZE,
 };
-- 
1.5.1


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [PATCH] Fix a typo.
@ 2008-08-29  3:14 ` Zhang, Xiantao
  0 siblings, 0 replies; 16+ messages in thread
From: Zhang, Xiantao @ 2008-08-29  3:14 UTC (permalink / raw)
  To: kvm-ia64, kvm; +Cc: Avi Kivity

[-- Attachment #1: Type: text/plain, Size: 681 bytes --]

>From 297fb289f827e7921ae105d3a8ff79ca4c43a03a Mon Sep 17 00:00:00 2001
From: Xiantao Zhang <xiantao.zhang@intel.com>
Date: Fri, 29 Aug 2008 10:55:26 +0800
Subject: [PATCH] kvm: Qemu: Fix a typo.

VGA_RAM_SIZE -> GFW_SIZE.
Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
---
 qemu/hw/ipf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/qemu/hw/ipf.c b/qemu/hw/ipf.c
index 60ff634..c1a7bee 100644
--- a/qemu/hw/ipf.c
+++ b/qemu/hw/ipf.c
@@ -681,5 +681,5 @@ QEMUMachine ipf_machine = {
     "itanium",
     "Itanium Platform",
     ipf_init_pci,
-    VGA_RAM_SIZE + VGA_RAM_SIZE,
+    VGA_RAM_SIZE + GFW_SIZE,
 };
-- 
1.5.1

[-- Attachment #2: 0001-kvm-Qemu-Fix-a-typo.patch --]
[-- Type: application/octet-stream, Size: 657 bytes --]

From 297fb289f827e7921ae105d3a8ff79ca4c43a03a Mon Sep 17 00:00:00 2001
From: Xiantao Zhang <xiantao.zhang@intel.com>
Date: Fri, 29 Aug 2008 10:55:26 +0800
Subject: [PATCH] kvm: Qemu: Fix a typo.

VGA_RAM_SIZE -> GFW_SIZE.
Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
---
 qemu/hw/ipf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/qemu/hw/ipf.c b/qemu/hw/ipf.c
index 60ff634..c1a7bee 100644
--- a/qemu/hw/ipf.c
+++ b/qemu/hw/ipf.c
@@ -681,5 +681,5 @@ QEMUMachine ipf_machine = {
     "itanium",
     "Itanium Platform",
     ipf_init_pci,
-    VGA_RAM_SIZE + VGA_RAM_SIZE,
+    VGA_RAM_SIZE + GFW_SIZE,
 };
-- 
1.5.1


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [PATCH] Fix a typo.
  2008-08-29  3:14 ` Zhang, Xiantao
@ 2008-08-29 11:57   ` Avi Kivity
  -1 siblings, 0 replies; 16+ messages in thread
From: Avi Kivity @ 2008-08-29 11:57 UTC (permalink / raw)
  To: kvm-ia64

Zhang, Xiantao wrote:
> From 297fb289f827e7921ae105d3a8ff79ca4c43a03a Mon Sep 17 00:00:00 2001
> From: Xiantao Zhang <xiantao.zhang@intel.com>
> Date: Fri, 29 Aug 2008 10:55:26 +0800
> Subject: [PATCH] kvm: Qemu: Fix a typo.
>
> VGA_RAM_SIZE -> GFW_SIZE.
>   

Applied, thanks.

-- 
I have a truly marvellous patch that fixes the bug which this
signature is too narrow to contain.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH] Fix a typo.
@ 2008-08-29 11:57   ` Avi Kivity
  0 siblings, 0 replies; 16+ messages in thread
From: Avi Kivity @ 2008-08-29 11:57 UTC (permalink / raw)
  To: Zhang, Xiantao; +Cc: kvm-ia64, kvm

Zhang, Xiantao wrote:
> From 297fb289f827e7921ae105d3a8ff79ca4c43a03a Mon Sep 17 00:00:00 2001
> From: Xiantao Zhang <xiantao.zhang@intel.com>
> Date: Fri, 29 Aug 2008 10:55:26 +0800
> Subject: [PATCH] kvm: Qemu: Fix a typo.
>
> VGA_RAM_SIZE -> GFW_SIZE.
>   

Applied, thanks.

-- 
I have a truly marvellous patch that fixes the bug which this
signature is too narrow to contain.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH] Fix a typo
@ 2011-10-24 13:51 Jeff Liu
  2011-10-24 14:09 ` Jens Axboe
  0 siblings, 1 reply; 16+ messages in thread
From: Jeff Liu @ 2011-10-24 13:51 UTC (permalink / raw)
  To: linux-kernel; +Cc: axboe

Signed-off-by: Jie Liu <jeff.liu@oracle.com>

---
 block/blk-cgroup.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/block/blk-cgroup.h b/block/blk-cgroup.h
index a71d290..6f3ace7 100644
--- a/block/blk-cgroup.h
+++ b/block/blk-cgroup.h
@@ -188,7 +188,7 @@ struct blkio_policy_node {
 	union {
 		unsigned int weight;
 		/*
-		 * Rate read/write in terms of byptes per second
+		 * Rate read/write in terms of bytes per second
 		 * Whether this rate represents read or write is determined
 		 * by file type "fileid".
 		 */
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [PATCH] Fix a typo
  2011-10-24 13:51 [PATCH] Fix " Jeff Liu
@ 2011-10-24 14:09 ` Jens Axboe
  0 siblings, 0 replies; 16+ messages in thread
From: Jens Axboe @ 2011-10-24 14:09 UTC (permalink / raw)
  To: jeff.liu; +Cc: linux-kernel

On 2011-10-24 15:51, Jeff Liu wrote:
> Signed-off-by: Jie Liu <jeff.liu@oracle.com>

Applied, but please next time use a more reasonable subject line.

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH] Fix a typo
@ 2011-12-31 10:16 Zhu Yanhai
  2012-01-02 13:33 ` Jens Axboe
  0 siblings, 1 reply; 16+ messages in thread
From: Zhu Yanhai @ 2011-12-31 10:16 UTC (permalink / raw)
  To: fio; +Cc: Zhu Yanhai

The man page line of 'fadvise_hit' is exactly opposite to its true meaning.

Signed-off-by: Zhu Yanhai <gaoyang.zyh@taobao.com>

diff --git a/fio.1 b/fio.1
index aeba39a..75c8ec6 100644
--- a/fio.1
+++ b/fio.1
@@ -281,7 +281,7 @@ because ZFS doesn't support it. Default: 'posix'.
 .RE
 .TP
 .BI fadvise_hint \fR=\fPbool
-Disable use of \fIposix_fadvise\fR\|(2) to advise the kernel what I/O patterns
+Use of \fIposix_fadvise\fR\|(2) to advise the kernel what I/O patterns
 are likely to be issued. Default: true.
 .TP
 .BI size \fR=\fPint
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [PATCH] Fix a typo
  2011-12-31 10:16 [PATCH] Fix a typo Zhu Yanhai
@ 2012-01-02 13:33 ` Jens Axboe
  0 siblings, 0 replies; 16+ messages in thread
From: Jens Axboe @ 2012-01-02 13:33 UTC (permalink / raw)
  To: Zhu Yanhai; +Cc: fio, Zhu Yanhai

On 2011-12-31 11:16, Zhu Yanhai wrote:
> The man page line of 'fadvise_hit' is exactly opposite to its true meaning.

That is worded a bit strange. Thanks, applied.

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH] fix a typo
@ 2019-12-05 12:18 wu860403
  2019-12-05 15:00 ` Jens Axboe
  0 siblings, 1 reply; 16+ messages in thread
From: wu860403 @ 2019-12-05 12:18 UTC (permalink / raw)
  To: io-uring; +Cc: LimingWu

From: LimingWu <19092205@suning.com>

 thatn -> than
Signed-off-by: Liming Wu <19092205@suning.com>
---
 fs/io_uring.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/io_uring.c b/fs/io_uring.c
index 4fd4cf9..b4d7f01 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -145,7 +145,7 @@ struct io_rings {
 	/*
 	 * Number of completion events lost because the queue was full;
 	 * this should be avoided by the application by making sure
-	 * there are not more requests pending thatn there is space in
+	 * there are not more requests pending than there is space in
 	 * the completion queue.
 	 *
 	 * Written by the kernel, shouldn't be modified by the
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [PATCH] fix a typo
  2019-12-05 12:18 [PATCH] fix " wu860403
@ 2019-12-05 15:00 ` Jens Axboe
  0 siblings, 0 replies; 16+ messages in thread
From: Jens Axboe @ 2019-12-05 15:00 UTC (permalink / raw)
  To: wu860403, io-uring; +Cc: LimingWu

On 12/5/19 5:18 AM, wu860403@gmail.com wrote:
> From: LimingWu <19092205@suning.com>
> 
>  thatn -> than
> Signed-off-by: Liming Wu <19092205@suning.com>

I applied this, but I fixed it up a bit. The subject line should include
io_uring.

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH] Fix a typo
@ 2024-10-14 13:12 chun-awa
  0 siblings, 0 replies; 16+ messages in thread
From: chun-awa @ 2024-10-14 13:12 UTC (permalink / raw)
  To: alexs, siyanteng, corbet; +Cc: linux-doc, linux-kernel, chun-awa

Signed-off-by: chun-awa <chun-awa@qq.com>
---
 .../translations/zh_CN/admin-guide/tainted-kernels.rst          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/translations/zh_CN/admin-guide/tainted-kernels.rst b/Documentation/translations/zh_CN/admin-guide/tainted-kernels.rst
index bc51d7cff..33c36e1b5 100644
--- a/Documentation/translations/zh_CN/admin-guide/tainted-kernels.rst
+++ b/Documentation/translations/zh_CN/admin-guide/tainted-kernels.rst
@@ -80,7 +80,7 @@ BUG、Oops或Panics消息中的污染标志
 ===  =====  ======  ========================================================
  位  日志     数字  内核被污染的原因
 ===  =====  ======  ========================================================
-  0   G/P        1  已加载专用模块
+  0   G/P        1  已加载专有模块
   1   _/F        2  模块被强制加载
   2   _/S        4  内核运行在不合规范的系统上
   3   _/R        8  模块被强制卸载
-- 
2.47.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2024-10-14 13:25 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-31 10:16 [PATCH] Fix a typo Zhu Yanhai
2012-01-02 13:33 ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2024-10-14 13:12 chun-awa
2019-12-05 12:18 [PATCH] fix " wu860403
2019-12-05 15:00 ` Jens Axboe
2011-10-24 13:51 [PATCH] Fix " Jeff Liu
2011-10-24 14:09 ` Jens Axboe
2008-08-29  3:14 Zhang, Xiantao
2008-08-29  3:14 ` Zhang, Xiantao
2008-08-29 11:57 ` Avi Kivity
2008-08-29 11:57   ` Avi Kivity
2008-06-09 22:50 [EGIT PATCHES] Assorted minor fixes Robin Rosenberg
2008-06-09 22:50 ` [PATCH] Reset the graph plotter internals when HEAD has changed Robin Rosenberg
2008-06-09 22:50   ` [PATCH] Make it possible to create a new Git repository in project parent directory Robin Rosenberg
2008-06-09 22:50     ` [PATCH] Fix a typo Robin Rosenberg
2008-04-11  7:43 Masaki Kanno
2007-07-04 14:16 Li, Xin B
2007-05-20 13:24 [PATCH] fix " Dong, Eddie
     [not found] ` <10EA09EFD8728347A513008B6B0DA77A014E8ABD-wq7ZOvIWXbNpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2007-05-20 13:30   ` Avi Kivity

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.