Displaying 14 results from an estimated 14 matches for "__kernel_rt_sigreturn".
2011 Jul 19
2
[LLVMdev] Unable to run a java class by j3
...attempt to run a simple class file (Hey.class) by j3 and it returns following
error:
# j3 Desktop/Hey
Thread 0x20000000 received a SIGSEGV: either the VM code or an external
native method is bogus. Aborting...
; 0x81e5375 (0x200fec68) in _Z14sigsegvHandleriP7siginfoPv
; 0x440410 (0x200fec88) in __kernel_rt_sigreturn
; 0x8166100 (0x200ff078) in
_ZN2j35Class21lookupMethodDontThrowEPKN3mvm4UTF8ES4_bbPPS0_
; 0x8155c46 (0x200ff0e8) in _ZN2j35Jnjvm13loadBootstrapEv
; 0x8155ed6 (0x200ff158) in _ZN2j35Jnjvm13mainJavaStartEPNS_10JavaThreadE
; 0x81e4c7a (0x200ff248) in _ZN3mvm6Thread19internalThreadStartEPS0_
Aborted...
2011 Jul 19
0
[LLVMdev] Unable to run a java class by j3
...lass) by j3 and it returns
> following
> error:
>
> # j3 Desktop/Hey
>
> Thread 0x20000000 received a SIGSEGV: either the VM code or an external
> native method is bogus. Aborting...
> ; 0x81e5375 (0x200fec68) in _Z14sigsegvHandleriP7siginfoPv
> ; 0x440410 (0x200fec88) in __kernel_rt_sigreturn
> ; 0x8166100 (0x200ff078) in
> _ZN2j35Class21lookupMethodDontThrowEPKN3mvm4UTF8ES4_bbPPS0_
> ; 0x8155c46 (0x200ff0e8) in _ZN2j35Jnjvm13loadBootstrapEv
> ; 0x8155ed6 (0x200ff158) in _ZN2j35Jnjvm13mainJavaStartEPNS_10JavaThreadE
> ; 0x81e4c7a (0x200ff248) in _ZN3mvm6Thread19internalTh...
2007 Apr 18
1
[RFC, PATCH 7/24] i386 Vmi memory hole
Create a configurable hole in the linear address space at the top
of memory. A more advanced interface is needed to negotiate how
much space the hypervisor is allowed to steal, but in the end, it
seems most likely that a fixed constant size will be chosen for
the compiled kernel, potentially propagated to an information
page used by paravirtual initialization to determine interface
compatibility.
2007 Apr 18
1
[RFC, PATCH 7/24] i386 Vmi memory hole
Create a configurable hole in the linear address space at the top
of memory. A more advanced interface is needed to negotiate how
much space the hypervisor is allowed to steal, but in the end, it
seems most likely that a fixed constant size will be chosen for
the compiled kernel, potentially propagated to an information
page used by paravirtual initialization to determine interface
compatibility.
2007 Apr 18
1
[PATCH, experimental] i386 Allow the fixmap to be relocated at boot time
...=3D=3D=3D=3D=3D=3D
--- linux-2.6.13.orig/arch/i386/kernel/signal.c 2005-08-03 23:36:46.0000000=
00 -0700
+++ linux-2.6.13/arch/i386/kernel/signal.c 2005-08-05 15:11:33.000000000 -0=
700
@@ -345,6 +345,8 @@
See vsyscall-sigreturn.S. */
extern void __user __kernel_sigreturn;
extern void __user __kernel_rt_sigreturn;
+#define kernel_sigreturn (VSYSCALL_RELOCATION + (void __user *)&__kernel_=
sigreturn)
+#define kernel_rt_sigreturn (VSYSCALL_RELOCATION + (void __user *)&__kern=
el_rt_sigreturn)
=
static int setup_frame(int sig, struct k_sigaction *ka,
sigset_t *set, struct pt_regs * regs)...
2007 Apr 18
1
[PATCH, experimental] i386 Allow the fixmap to be relocated at boot time
...=3D=3D=3D=3D=3D=3D
--- linux-2.6.13.orig/arch/i386/kernel/signal.c 2005-08-03 23:36:46.0000000=
00 -0700
+++ linux-2.6.13/arch/i386/kernel/signal.c 2005-08-05 15:11:33.000000000 -0=
700
@@ -345,6 +345,8 @@
See vsyscall-sigreturn.S. */
extern void __user __kernel_sigreturn;
extern void __user __kernel_rt_sigreturn;
+#define kernel_sigreturn (VSYSCALL_RELOCATION + (void __user *)&__kernel_=
sigreturn)
+#define kernel_rt_sigreturn (VSYSCALL_RELOCATION + (void __user *)&__kern=
el_rt_sigreturn)
=
static int setup_frame(int sig, struct k_sigaction *ka,
sigset_t *set, struct pt_regs * regs)...
2010 Jun 15
0
Nouveau on nv11 and new xserver
http://article.gmane.org/gmane.comp.video.mesa3d.devel/19775
It crashes for me, too, slightly differently:
Backtrace:
[ 128.071] 0: X (xorg_backtrace+0x34) [0x80de4b4]
[ 128.071] 1: X (0x8048000+0x5b4ff) [0x80a34ff]
[ 128.071] 2: (vdso) (__kernel_rt_sigreturn+0x0) [0xffffe410]
[ 128.071] 3: /usr/X11R7/lib/xorg/modules/extensions/libdri2.so (0xb7371000+0x
3472) [0xb7374472]
[ 128.071] 4: X (0x8048000+0x270c1) [0x806f0c1]
[ 128.071] 5: X (0x8048000+0x1b028) [0x8063028]
[ 128.071] 6: /lib/libc.so.6 (__libc_start_main+0xe6) [0xb7420b86]
[ 128.072]...
2007 Apr 18
2
[PATCH] exec-shield style vdso move.
...orer = current->mm->context.vdso + (long)&__kernel_sigreturn;
if (ka->sa.sa_flags & SA_RESTORER)
restorer = ka->sa.sa_restorer;
@@ -447,7 +447,7 @@ static int setup_rt_frame(int sig, struc
goto give_sigsegv;
/* Set up to return from userspace. */
- restorer = &__kernel_rt_sigreturn;
+ restorer = current->mm->context.vdso + (long)&__kernel_rt_sigreturn;
if (ka->sa.sa_flags & SA_RESTORER)
restorer = ka->sa.sa_restorer;
err |= __put_user(restorer, &frame->pretcode);
diff -urpN --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-don...
2007 Apr 18
2
[PATCH] exec-shield style vdso move.
...orer = current->mm->context.vdso + (long)&__kernel_sigreturn;
if (ka->sa.sa_flags & SA_RESTORER)
restorer = ka->sa.sa_restorer;
@@ -447,7 +447,7 @@ static int setup_rt_frame(int sig, struc
goto give_sigsegv;
/* Set up to return from userspace. */
- restorer = &__kernel_rt_sigreturn;
+ restorer = current->mm->context.vdso + (long)&__kernel_rt_sigreturn;
if (ka->sa.sa_flags & SA_RESTORER)
restorer = ka->sa.sa_restorer;
err |= __put_user(restorer, &frame->pretcode);
diff -urpN --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-don...
2013 May 12
5
[Bug 64493] New: X server crashes when launch Savage XR
....0 108.00 1280 1376 1488
1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
[ 4863.472] (EE)
[ 4863.472] (EE) Backtrace:
[ 4863.494] (EE) 0: /usr/bin/Xorg (xorg_backtrace+0x49) [0x81d7ae9]
[ 4863.494] (EE) 1: /usr/bin/Xorg (0x8048000+0x193854) [0x81db854]
[ 4863.494] (EE) 2: linux-gate.so.1 (__kernel_rt_sigreturn+0x0) [0xb775d40c]
[ 4863.494] (EE) 3: /usr/lib/xorg/modules/dri/nouveau_dri.so
(0xb5639000+0x24b065) [0xb5884065]
[ 4863.494] (EE) 4: /usr/lib/xorg/modules/extensions/libglx.so
(0xb6f1e000+0xbd98) [0xb6f29d98]
[ 4863.494] (EE) 5: /usr/lib/xorg/modules/extensions/libglx.so
(0xb6f1e000+0x40300) [0...
2011 Sep 14
14
[Bug 40866] New: Caught signal 11 (Segmentation fault). Server aborting
.../~kernel-ppa/mainline/
add repository
http://ppa.launchpad.net/xorg-edgers/ppa/ubuntu
http://ppa.launchpad.net/ubuntu-x-swat/x-updates/ubuntu
Backtrace:
[ 19.598] 0: /usr/bin/X (xorg_backtrace+0x3b) [0x80ad18b]
[ 19.598] 1: /usr/bin/X (0x8048000+0x60685) [0x80a8685]
[ 19.598] 2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb77b740c]
[ 19.598] 3: /usr/lib/xorg/modules/drivers/nouveau_drv.so
(0xb732a000+0xc7b3) [0xb73367b3]
[ 19.598] 4: /usr/lib/xorg/modules/drivers/nouveau_drv.so
(0xb732a000+0xd168) [0xb7337168]
[ 19.598] 5: /usr/bin/X (AddScreen+0x198) [0x808d2b8]
[ 19.598] 6: /usr/bin/X (InitOutp...
2011 Jun 06
1
[Bug 38016] New: nouveau driver crashes xorg when starting KDE
...rovider for screen 0
(II) NOUVEAU(0): NVEnterVT is called.
(II) NOUVEAU(0): Setting screen physical size to 507 x 285
resize called 1920 1080
[...] unrelated input device stuff [...]
Backtrace:
0: /usr/bin/X (xorg_backtrace+0x37) [0x80e4927]
1: /usr/bin/X (0x8048000+0x5d34a) [0x80a534a]
2: (vdso) (__kernel_rt_sigreturn+0x0) [0xffffe40c]
3: /usr/lib/xorg/modules/drivers/nouveau_drv.so (0xb7361000+0x1f14f)
[0xb738014f]
4: /usr/lib/xorg/modules/drivers/nouveau_drv.so (0xb7361000+0x2003a)
[0xb738103a]
5: /usr/lib/xorg/modules/drivers/nouveau_drv.so (0xb7361000+0x2010c)
[0xb738110c]
6: /usr/lib/libdrm_nouveau.so.1 (no...
2010 Jun 21
0
Bug#586670: xen-hypervisor-3.4-i386: xserver does not work on i386 system in dom0, while works on amd64 system
...savage
voodoo
sis
r128
intel
apm
nouveau
mach64
nv
tdfx
s3virge
radeon
ark
openchrome
s3
mga
fbdev
vesa
vmware: Please ignore above "FATAL: Module vmwgfx not found."
Backtrace:
0: Xorg (xorg_backtrace+0x3b) [0x80addcb]
1: Xorg (0x8048000+0x5ab75) [0x80a2b75]
2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb788540c]
3: Xorg (0x8048000+0x104294) [0x814c294]
4: Xorg (xf86LoadModules+0xe8) [0x80ae5a8]
5: Xorg (DoConfigure+0x7b) [0x80c07ab]
6: Xorg (InitOutput+0x1da) [0x80b04ba]
7: Xorg (0x8048000+0x1e73b) [0x806673b]
8: /lib/i686/nosegneg/libc.so.6 (__libc_start_main+0xe6) [0xb75afc76]
9: Xorg (...
2010 Jun 17
0
nouveau - artefacts and crash with composite enabled (kwin4)
...config/udev: Adding input device PC Speaker
(/dev/input/event3)
[ 4326.427] (II) No input driver/identifier specified (ignoring)
[ 4411.078]
Backtrace:
[ 4411.078] 0: /usr/bin/X (xorg_backtrace+0x3b) [0x80e49db]
[ 4411.078] 1: /usr/bin/X (0x8048000+0x5c665) [0x80a4665]
[ 4411.078] 2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb770540c]
[ 4411.078] 3: /usr/bin/X (FreeClientResources+0xdf) [0x808d68f]
[ 4411.079] 4: /usr/bin/X (FreeAllResources+0x56) [0x808d746]
[ 4411.079] 5: /usr/bin/X (0x8048000+0x1a101) [0x8062101]
[ 4411.079] 6: /lib/libc.so.6 (__libc_start_main+0xe6) [0xb743cc76]
[ 4411.079] 7: /usr/bin...