search for: xiaofeng

Displaying 20 results from an estimated 28 matches for "xiaofeng".

2004 Aug 18
4
LTP system call test all pass!
After fix bug 130 and 131, and some LTP bugs. ocfs2 can now pass all LTP filesystem related system call testcases. detail result see attach. ------------------- Intel China Software Lab. iNet: 8-752-1243 8621-52574545-1243(O) xfling@users.sourceforge.net Opinions are my own and don't represent those of my employer -------------- next part -------------- A non-text attachment was
2005 Sep 05
2
[PATCH][1/6] add a hypercall number for virtual device in unmodified guest
add a hypercall number for virtual device in unmodified guest There are 6 patches for para-driver support in vmx guest. This is the first one. Signed-off-by: Xiaofeng Ling <xiaofeng.ling@intel.com> Signed-off-by: Arun Sharma <arun.sharma@intel.com> diff -r 287d36b46fa3 xen/arch/x86/x86_32/entry.S --- a/xen/arch/x86/x86_32/entry.S Tue Aug 30 20:36:49 2005 +++ b/xen/arch/x86/x86_32/entry.S Fri Sep 2 22:46:13 2005 @@ -812,6 +812,7 @@ .long...
2004 Oct 09
1
about memory alloc
Hi, I have a question, If I start 2 or more guest linux, does the physical memory of code segment and readonly data segment be reused? What''s the relationship between the physical memory and the number of guest os that can create? xiaofeng ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguid...
2005 Dec 08
0
[PATCH]Don''t unshadow current used shadow L2 table.
# HG changeset patch # User Xiaofeng Ling <xiaofeng.ling@intel.com> # Node ID cc6e19224d0b755d24358cd15d1a40f894d320b4 # Parent b215584242c43415eccd008b90c812f3d04b398d Don''t unshadow when the shadow l2 is the current used shadow table. Otherwise, when destorying the domain, if the current sl2 is unpinned, the shadow p...
2005 Nov 29
0
[PATCH]small fix for shadow
# HG changeset patch # User Xiaofeng Ling <xiaofeng.ling@intel.com> # Node ID 188b619dad2998f0625b247ee298def1919696ca # Parent 90d9dff476923318f34c993016c9ada8979ee06d small fix for shadow Signed-off-by:Xiaofeng Ling <xiaofeng.ling@intel.com> diff -r 90d9dff47692 -r 188b619dad29 xen/arch/x86/shadow.c --- a/xen/arch/x86...
2005 Sep 01
3
question about page_to_phys
The page_to_phys is defined as #define page_to_phys(page) (phys_to_machine(page_to_pseudophys(page))) so it return machine addresss while virt_to_phys return psedophys. include/asm-xen/asm-i386/io.h this is really confusing. why not define page_to_machine? _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com
2005 Nov 08
1
VMX domain status report Nov. 8 7646
We have test latest xen (ChangeSet 7646) on VT platform with Intel 915 chipset : The VMX can not be created for the known issue http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=388 <http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=382> But it is ok after adding xiaofeng''s patch. IA32: Build&Boot SMP xen0 without problem Can startup XenU with different configuration IA32 issues contain: VMX can not be created IA32E: Build&Boot SMP xen0 without problem Can startup XenU with different configuration IA32E...
2004 Jun 02
2
[Patch] for bug 81
Index: namei.c =================================================================== --- namei.c (revision 968) +++ namei.c (working copy) @@ -526,7 +526,7 @@ status = -EBUSY; - if (!empty_dir(inode)) { + if ( S_ISDIR (inode->i_mode) && !empty_dir(inode)) { LOG_TRACE_STR ("dentry is not empty, cannot delete"); goto
2012 Nov 30
3
protentially serious R error
...5 5 6 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 8 8 8 9 9 9 9 10 10 10 10 10 10 10 [89] 10 10 10 10 10 10 10 10 10 10 10 10 Every time he re-runs the code there always always a "NA"(highlighted). Does any one know why? Your help is greatly appreciated. Xiaofeng -- View this message in context: http://r.789695.n4.nabble.com/protentially-serious-R-error-tp4651495.html Sent from the R help mailing list archive at Nabble.com.
2005 Jun 29
0
[PATCH] fix xc_domain_memory_increase_reservation return value
in xc_domain_memory_increase_reservation, when do_dom_mem_op return 0, it shall also return -1,I met this problem when I try to allocate domain memory. Signed-off-by: Xiaofeng Ling <xiaofeng.ling@intel.com> diff -Nru a/tools/libxc/xc_domain.c b/tools/libxc/xc_domain.c --- a/tools/libxc/xc_domain.c 2005-06-29 17:16:11 +08:00 +++ b/tools/libxc/xc_domain.c 2005-06-29 17:16:11 +08:00 @@ -243,7 +243,7 @@ if (err == mem_kb / 4) return 0; - if (er...
2005 Sep 05
0
[PATCH][4/6] Add to virtual device operations
Add two virtual device operations: 1.set the callback irq for event channel 2.setup the hypercall paramerter share page. Signed-off-by: Ke Yu <ke.yu@intel.com> Signed-off-by: Xiaofeng Ling <xiaofeng.ling@intel.com> Signed-off-by: Arun Sharma <arun.sharma@intel.com> diff -r 287d36b46fa3 xen/arch/x86/vmx.c --- a/xen/arch/x86/vmx.c Tue Aug 30 20:36:49 2005 +++ b/xen/arch/x86/vmx.c Fri Sep 2 22:46:13 2005 @@ -1752,6 +1803,81 @@ asm volatile("movq %0,%%cr2&q...
2005 Oct 13
0
[PATCH]Send keys in vmx
...ample: sendkey ctrl-alt-f1 This patch is useful to send keys that your graphical user interface intercepts at low level, such as ctrl-alt-f1 in X Window. Signed-off-by: Dan Xu <dan.d.xu@intel.com> Signed-off-by: Zhai, Edwin <edwin.zhai@intel.com> Signed-off-by: Xiaofeng Ling <xiaofeng.ling@intel.com> Xu Dan CSD-OTC PRC Virtualization Intel (China) Limited _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 Oct 14
0
[PATCH]rtc emulation for xenU
...hen the rc scripts run the command hwclock. The patch attached resolves the issue. The patch adds a simple rtc emulation and also on i386, hwclock can get correct date when xenU enabled pirq binding, without this patch, hwclock read will timeout because of lack of update interrupt. Signed-off-by: Xiaofeng Ling <xiaofeng.ling@intel.com> Signed-off-by: Jun Nakajima <jun.nakajima@intel.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2004 Sep 07
1
Performance Specs
Hi all. Are there any specs about performance of Asterisk? I want to know how many simultaneous SIP/VoIP connections on one Linux box. I don't care whether official specs or user tested specs. Thanks in advance, Xiaofeng
2005 Oct 20
3
[PATCH]Cannot send special keys, such as Ctrl+Alt+Del
...command "sendkey" to deal with it in the monitor, you can send keys to the vm. Use - to press several keys simultaneously. Example: sendkey ctrl-alt-f1 Signed-off-by: Dan Xu <dan.d.xu@intel.com> Signed-off-by: Zhai, Edwin <edwin.zhai@intel.com> Signed-off-by: Xiaofeng Ling <xiaofeng.ling@intel.com> Thanks Dan _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 May 11
4
Should shadow_lock be spin_lock_recursive?
During our testing, we found this code path where xen attempts to grab the shadow_lock, while holding it - leading to a deadlock. >> free_dom_mem-> >> shadow_sync_and_drop_references-> >> shadow_lock -> ..................... first lock >> shadow_remove_all_access-> >> remove_all_access_in_page-> >> put_page-> >>
2005 Jun 30
0
[PATCH][2/10] Extend the VMX intercept mechanism to include mmio as well as portio.
Extend the VMX intercept mechanism to include mmio as well as portio. Signed-off-by: Yunhong Jiang <yunhong.jiang@intel.com> Signed-off-by: Xiaofeng Ling <xiaofeng.ling@intel.com> Signed-off-by: Arun Sharma <arun.sharma@intel.com> diff -r febfcd0a1a0a -r 9a43d5c12b95 xen/include/asm-x86/vmx_platform.h --- a/xen/include/asm-x86/vmx_platform.h Thu Jun 30 03:20:48 2005 +++ b/xen/include/asm-x86/vmx_platform.h Thu Jun 30 04:08:50 2005...
2004 Jul 02
0
[Patch] We resolve the throughput drop problemwhe nr eading filesin OCFS2 volume in the patch "ocfs2-truncate-pages-1.patch"a gainstsvn 1226.
...on the whole or part of the file. For ordinary application, maybe the current logic is enough. How about it? >-----Original Message----- >From: khackel@ca2.us.oracle.com=20 >[mailto:khackel@ca2.us.oracle.com] On Behalf Of Kurt Hackel >Sent: 2004=C4=EA7=D4=C22=C8=D5 0:11 >To: Ling, Xiaofeng >Cc: Wim Coekaerts; Zhang, Sonic; Fu, Michael; Yang, Elton; Ocfs2-Devel >Subject: Re: [Ocfs2-devel] [Patch] We resolve the throughput=20 >drop problemwhe nr eading filesin OCFS2 volume in the patch=20 >"ocfs2-truncate-pages-1.patch"a gainstsvn 1226. > >Hi, > >Great...
2004 Aug 17
1
[Bug] LTP: mkdir fail after setreuid
...} printf("mkdir %s successful\n", good_dir); exit(0); }=20 if skip the setreuid, the test can pass. >-----Original Message----- >From: ocfs2-devel-bounces@oss.oracle.com=20 >[mailto:ocfs2-devel-bounces@oss.oracle.com] On Behalf Of Ling, Xiaofeng >Sent: 2004=C4=EA8=D4=C216=C8=D5 13:30 >To: ocfs2-devel@oss.oracle.com >Subject: [Ocfs2-devel] new ltp result > >I rerun ltp on svn1358, the result is better. > >=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D...
2005 Nov 03
7
VMX status daily report Nov. 3
We have test latest xen (ChangeSet 7608) on VT platform with Intel 915 chipset and Here is the test summary: IA32: Build&Boot SMP xen0 without problem Can startup XenU with different configuration IA32 issues contain: VMX can not be created IA32E: Build&Boot SMP xen0 without problem Can startup XenU with different configuration IA32E issues