search for: cr2

Displaying 20 results from an estimated 1082 matches for "cr2".

2001 Jul 23
2
hang-up with log="x" and segments (PR#1030)
I experienced the following problem with R 1.3.0 which is probably a bug. The program hangs-up if 1.) a coordinate of segments is outside the ploting region and 2.) the option log="x" is used. ## ## works fine ## plot(1,1, xlim=c(0.5, 2), ylim=c(0.5, 2)) segments(0.5 , 1.2, 1, 0.6) segments(0.25, 1.2, 1, 0.6) segments(1 , 1.2, 1, 0.6) ## ## hang-up ## plot(1,1, xlim=c(0.5, 2),
2008 Oct 10
0
page-fault address in cr2 on stack frame
I need to extend the kernel stack frame just like xen used to pass faulting address in cr2 on the stack frame. Can anyone please tell me until what version of xen was the contents of cr2 was passed on stack frame?? Should I check in version 2.0? _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 Apr 18
2
lhype on 2.6.20-rc2: Guest didn't handle trap 6 at c071b594 (cr2=00000000, err=0)
...dd: Running guest failed: No such file or directory When I subsequently retry, I get the same, but third and following tries only give: lhype_add: Running guest failed: No such file or directory $ dmesg | tail lhype: mapped hypervisor at ffc00000 (...) Guest didn't handle trap 6 at c071b594 (cr2=00000000,err=0) Guest 0 dead drivers/lhype/init.c:424 $ file linux.img linux.img: x86 boot sector, LInux i386 boot LOader $ file vmlinux vmlinux: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), statically linked, not stripped Any clues? I think I've followed lhype.txt to the letter...
2007 Apr 18
2
lhype on 2.6.20-rc2: Guest didn't handle trap 6 at c071b594 (cr2=00000000, err=0)
...dd: Running guest failed: No such file or directory When I subsequently retry, I get the same, but third and following tries only give: lhype_add: Running guest failed: No such file or directory $ dmesg | tail lhype: mapped hypervisor at ffc00000 (...) Guest didn't handle trap 6 at c071b594 (cr2=00000000,err=0) Guest 0 dead drivers/lhype/init.c:424 $ file linux.img linux.img: x86 boot sector, LInux i386 boot LOader $ file vmlinux vmlinux: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), statically linked, not stripped Any clues? I think I've followed lhype.txt to the letter...
2012 May 30
12
[PATCH v2 0/4] XEN: fix vmx exception mistake
Changes from v1: - Define new struct hvm_trap to represent information of trap, include instruction length. - Renames hvm_inject_exception to hvm_inject_trap. Then define a couple of wrappers around that function for existing callers, so that their parameter lists actually *shrink*. This series of patches fix the mistake for debug exception(#DB), overflow exception(#OF) and INT3(#BP),
2011 Sep 01
0
PANIC: early exception 0e rip 10:0 error 10 cr2 0
Hi all, I installed XEN on a CentOS 6 server, as per these instructions: http://www.crc.id.au/xen-on-rhel6-scientific-linux-6-centos-6-howto/ And the server now gives this error on reboot: PANIC: early exception 0e rip 10:0 error 10 cr2 0 These are the packages that were installed before the reboot: Total download size: 33 M Installed size: 116 M Is this ok [y/N]: y Downloading Packages: (1/14): PyXML-0.8.4-19.el6.x86_64.rpm | 892 kB 00:00 (2/14): SDL-1.2.14-2.el6.x86_64.rpm...
2017 Sep 11
4
Case statement in sqldf
...FY) using case expression in sqldf and I am getting a null FY , see the code below . Please advise me as to how I can do this mutation. library(zoo) library(lubridate) library(stringr) library(RH2) library(sqldf) cr$ReportDate = as.Date(cr$ReportDate, format ='%Y-%m-%d') > cr2 = sqldf(" select ReportDate + , case + when ReportDate between '2012-04-01' and '2013-03-31' + then '2012_13' + when ReportDate between '2013-04-01' and '2014-0...
2019 Sep 10
1
[RFC PATCH v6 69/92] kvm: x86: keep the page protected if tracked by the introspection tool
...changed, 7 insertions(+), 2 deletions(-) > > diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c > index 2c06de73a784..06f44ce8ed07 100644 > --- a/arch/x86/kvm/x86.c > +++ b/arch/x86/kvm/x86.c > @@ -6311,7 +6311,8 @@ static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t cr2, > indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages; > spin_unlock(&vcpu->kvm->mmu_lock); > > - if (indirect_shadow_pages) > + if (indirect_shadow_pages > + && !kvmi_tracked_gfn(vcpu, gpa_to_gfn(gpa))) > kvm_mmu_unprotect_...
2008 May 15
1
Panic on CPU 0
Hi all, I''m trying to boot XEN. I get the following error though Panic on CPU 0: Early fatal page fault at e008:ff134570 (cr2=fffdf020, ec=0000) Reboot in five seconds... Unknown interrupt (cr2=fffdf020) My system has 2GB of RAM. Has anyone had the same problem and can give an hint? Thanks. In case anyone had done the same I''m doing, I''m actually downloading XEN from the network (using etherboot) Thi...
2011 May 31
2
correlatation matrix
...;- data.frame(rep(NA,nrow(dat.m))) pval.mat <- data.frame(rep(NA,nrow(dat.m))) for(i in 1:nc) { cr <- vector() pv <- vector() print(paste(i," mirs out of ", nc,sep="")) for (k in 1:nrow(dat.m)) { #print(paste(k," genes out of ", nrow(dat.m),sep="")) cr2 <- cor.test(as.numeric(dat.mi[i,]),as.numeric(dat.m[k,])) cr <- c(cr,cr2$estimate) pv <- c(pv,cr2$p.value) } cor.mat <- cbind(cor.mat,as.vector(cr)) pval.mat <- cbind(pval.mat,as.vector(pv)) } The columns in the output represent miRNAs and the rows mRNAs. The code works fine but tak...
2018 May 16
2
Compile error while building LLDB
...B/PDBSymbol.h:13: In file included from llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h:14: In file included from llvm/DebugInfo/PDB/PDBTypes.h:13: In file included from llvm/DebugInfo/CodeView/CodeView.h:509: llvm/DebugInfo/CodeView/CodeViewRegisters.def:80:13: error: expected identifier CV_REGISTER(CR2, 82) ^ /usr/include/sys/termios.h:186:14: note: expanded from macro 'CR2' #define CR2 0x00002000 ^ In file included from llvm/lldb-6.0.0.src/source/API/SystemInitializerFull.cpp:89: In file included from llvm/lldb-6.0.0.src/source/./Plugins/Sy...
2017 Sep 11
0
Case statement in sqldf
...null FY , see the code below . > > Please advise me as to how I can do this mutation. > > library(zoo) > library(lubridate) > library(stringr) > library(RH2) > library(sqldf) > > cr$ReportDate = as.Date(cr$ReportDate, format ='%Y-%m-%d') > >> cr2 = sqldf(" select ReportDate > + , case > + when ReportDate between '2012-04-01' and '2013-03-31' > + then '2012_13' > + when ReportDate between '2013-04-01...
2010 Nov 16
0
Bug#603713: xen-hypervisor-4.0-amd64: amd64 Dom0-Kernel crashes in early boot-stage
...0000000000000000 r8: 0000000000000000 (XEN) r9: 0000000000000000 r10: 0000000000000000 r11: 0000000000000000 (XEN) r12: 0000000000000000 r13: 0000000000000000 r14: 0000000000000000 (XEN) r15: 0000000000000000 cr0: 0000000000000000 cr4: 0000000000002660 (XEN) cr3: 0000000000000000 cr2: 0000000000000000 (XEN) ds: 0000 es: 0000 fs: 0000 gs: 0000 ss: 0000 cs: 0000 (XEN) *** Dumping Dom0 vcpu#1 state: *** (XEN) RIP: 0000:[<0000000000000000>] (XEN) RFLAGS: 0000000000000000 EM: 1 CONTEXT: pv guest (XEN) rax: 0000000000000000 rbx: 0000000000000000 rcx: 000000...
2011 Sep 02
2
PANIC: early exception 0e rip 10:0 error 10 cr2 0
Hi all, I installed XEN on a CentOS 6 server, as per these instructions: http://www.crc.id.au/xen-on-rhel6-scientific-linux-6-centos-6-howto/ And the server now gives this error on reboot: PANIC: early exception 0e rip 10:0 error 10 cr2 0 These are the packages that were installed before the reboot: Total download size: 33 M Installed size: 116 M Is this ok [y/N]: y Downloading Packages: (1/14): PyXML-0.8.4-19.el6.x86_64.rpm | 892 kB 00:00 (2/14): SDL-1.2.14-2.el6.x86_64.rpm...
2017 Sep 11
0
Case statement in sqldf
...o a particular character string; however, the H2 database does have date types. See FAQ #4 on the sqldf github home page for more info. https://github.com/ggrothendieck/sqldf ) This works: library(sqldf) library(RH2) cr <- data.frame(ReportDate = as.Date("2017-09-11")) # input cr2 = sqldf(" select ReportDate , case when ReportDate between '2012-04-01' and '2013-03-31' then '2012_13' when ReportDate between '2013-04-01' and '2014-03-31'...
2007 Apr 30
0
[PATCH] lguest: properly kill guest userspace programs accessing kernel mem
...+), 6 deletions(-) =================================================================== --- a/drivers/lguest/core.c +++ b/drivers/lguest/core.c @@ -346,7 +346,7 @@ int run_guest(struct lguest *lg, char *_ } break; case 14: /* We've intercepted a page fault. */ - if (demand_page(lg, cr2, lg->regs->errcode & 2)) + if (demand_page(lg, cr2, lg->regs->errcode)) continue; /* If lguest_data is NULL, this won't hurt. */ =================================================================== --- a/drivers/lguest/lg.h +++ b/drivers/lguest/lg.h @@ -216,7 +216,7...
2007 Apr 30
0
[PATCH] lguest: properly kill guest userspace programs accessing kernel mem
...+), 6 deletions(-) =================================================================== --- a/drivers/lguest/core.c +++ b/drivers/lguest/core.c @@ -346,7 +346,7 @@ int run_guest(struct lguest *lg, char *_ } break; case 14: /* We've intercepted a page fault. */ - if (demand_page(lg, cr2, lg->regs->errcode & 2)) + if (demand_page(lg, cr2, lg->regs->errcode)) continue; /* If lguest_data is NULL, this won't hurt. */ =================================================================== --- a/drivers/lguest/lg.h +++ b/drivers/lguest/lg.h @@ -216,7 +216,7...
2013 Jul 31
3
[PATCH] virtio-scsi: Fix virtqueue affinity setup
...f880077f6ff00 R09: 0000000000000001 R10: ffffffff8143e673 R11: 0000000000000001 R12: 0000000000000001 R13: ffff880077fd0800 R14: 0000000000000000 R15: ffff88007bf489b0 FS: 0000000000000000(0000) GS:ffff88007ea00000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b CR2: 0000000000000020 CR3: 0000000079f8b000 CR4: 00000000000006f0 Stack: ffff880077fd0d28 0000000000000000 ffff880077fd0800 0000000000000008 ffff88007bfe5a78 ffffffff8179b37d ffff88007bccc800 ffff88007bccc800 ffff88007bfe5a98 ffffffff8179b3b6 ffff88007bccc800 ffff880077fd0d28 Call Trace: [&lt...
2013 Jul 31
3
[PATCH] virtio-scsi: Fix virtqueue affinity setup
...f880077f6ff00 R09: 0000000000000001 R10: ffffffff8143e673 R11: 0000000000000001 R12: 0000000000000001 R13: ffff880077fd0800 R14: 0000000000000000 R15: ffff88007bf489b0 FS: 0000000000000000(0000) GS:ffff88007ea00000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b CR2: 0000000000000020 CR3: 0000000079f8b000 CR4: 00000000000006f0 Stack: ffff880077fd0d28 0000000000000000 ffff880077fd0800 0000000000000008 ffff88007bfe5a78 ffffffff8179b37d ffff88007bccc800 ffff88007bccc800 ffff88007bfe5a98 ffffffff8179b3b6 ffff88007bccc800 ffff880077fd0d28 Call Trace: [&lt...
2017 Dec 14
1
Xen PV DomU running Kernel 4.14.5-1.el7.elrepo.x86_64: xl -v vcpu-set <domU> <val> triggers domU kernel WARNING, then domU becomes unresponsive
...0000000000000000 R09: ffffc90040393a08 R10: 0000000000000000 R11: 000000000000005f R12: 0000000000000000 R13: ffff8800069ea000 R14: ffff88007f60a040 R15: 0000000000000000 FS: 00007f685ca0a700(0000) GS:ffff88007f600000(0000) knlGS:0000000000000000 CS: e033 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000000000010 CR3: 000000000683a000 CR4: 0000000000042660 Call Trace: ? coretemp_add_core+0x50/0x50 [coretemp] cpuhp_invoke_callback+0xe9/0x700 ? put_prev_task_fair+0x26/0x40 ? __schedule+0x2d0/0x6e0 ? __wake_up_common+0x84/0x130 ? __wake_up_common+0x84/0x130 cpuhp_thread_fun+0xee...