Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-29 Thread Bernd Eckenfels
In article <[EMAIL PROTECTED]> you wrote:
> stat64("/dev/dri/card14", 0xbff9c8bc)   = -1 ENOENT (No such file or 
> directory)

> What is at fault? Certainly oo shouldn't just seg-fault, but should the
> permissions on /dev/dri/card* be crw-rw or crw-rw-rw-?

it is not a permission thing, it tells you, that you have not card14 - and i
dont know the dri interface but it looks unlikely that there ever will be
one .)

Greetings
Bernd
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-29 Thread Richard Hughes
On Fri, 28 Jan 2005 15:57:13 -0800, Stephen Hemminger wrote:
> Note: on 2.6.10
>   /dev/dri/card0  crw-rw-rw-
> on 2.6.11-rc2
>   /dev/dri/card0  crw-rw
>   /dev/dri/card1  crw-rw
> 
> Changing permissions seems to fix (it for startup), will try more and see
> if udev remembers not to turn them back.

Me too. (2.6.11-rc2-bk3, openoffice.org-1.1.3) I straced soffice and found
it hanging on /dev/dri:

geteuid32() = 500
stat64("/dev/dri", {st_mode=S_IFDIR|0755, st_size=80, ...}) = 0
stat64("/dev/dri/card14", 0xbff9c8bc)   = -1 ENOENT (No such file or directory)
munmap(0x9b4838, 8192)  = -1 EINVAL (Invalid argument)
munmap(0x949e248, 322082)   = -1 EINVAL (Invalid argument)
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
+++ killed by SIGSEGV +++

and with a chmod a+rw /dev/dri/card* everything is okay until I reboot,
and it defaults back to crw-rw

What is at fault? Certainly oo shouldn't just seg-fault, but should the
permissions on /dev/dri/card* be crw-rw or crw-rw-rw-?

Richard Hughes

-- 

http://www.hughsie.com/PUBLIC-KEY


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-28 Thread Stephen Hemminger
On Fri, 28 Jan 2005 18:46:13 -0500
Parag Warudkar <[EMAIL PROTECTED]> wrote:

> Lee Revell wrote:
> 
> >  
> >
> >>munmap(0x955838, 8192)  = -1 EINVAL (Invalid argument)
> >>munmap(0x80d7ff0, 3221222108)   = -1 EINVAL (Invalid argument)
> >>--- SIGSEGV (Segmentation fault) @ 0 (0) ---
> >>
> >>
> >
> >No, it really looks like OO tried to munmap() something incorrectly.
> >3,221,222,108 bytes at offset 0x80d7ff0?
> >
> >Lee
> >
> >  
> >
> May be that's another OO.o bug which gets triggered by failure to open 
> /dev/dri? Actually Stephen had OO working fine with earlier kernels, 
> where possibly /dev/dri/* permissions were appropriate and it was able 
> to open it - With new kernel the permissions seem to be improper which 
> is confirmed by strace --
> 
> open("/dev/dri/card0", O_RDWR)  = -1 EACCES (Permission denied)
> 
> Should be filed as a bug with OO.org - it shouldnt segfault due to DRI 
> permissions..
> 
> Parag

Note: on 2.6.10
/dev/dri/card0  crw-rw-rw-
on 2.6.11-rc2
/dev/dri/card0  crw-rw
/dev/dri/card1  crw-rw

Changing permissions seems to fix (it for startup), will try more and see
if udev remembers not to turn them back.

-- 
Stephen Hemminger   <[EMAIL PROTECTED]>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-28 Thread Lee Revell
On Fri, 2005-01-28 at 09:31 -0800, Stephen Hemminger wrote:
> Here is the strace output of the part that SEGV's, looks like a DRI issue??

[snip]

> munmap(0x955838, 8192)  = -1 EINVAL (Invalid argument)
> munmap(0x80d7ff0, 3221222108)   = -1 EINVAL (Invalid argument)
> --- SIGSEGV (Segmentation fault) @ 0 (0) ---

No, it really looks like OO tried to munmap() something incorrectly.
3,221,222,108 bytes at offset 0x80d7ff0?

Lee

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-28 Thread Parag Warudkar
Stephen Hemminger wrote:
Here is the strace output of the part that SEGV's, looks like a DRI issue??
 

Yep.. If you haven't already, just change the permissions on 
/dev/dri/card0 to give access to your user id and it should be fine. 
(Reporter of this bug had to do the same in order to get it working)

Something in the kernel changes as far as DRI goes - Dont know what. And 
I know why I wasn't affected - NVIDIA driver which doesnt use 
/dev/dri/*. Though Trever seems to be having an entirely different 
problem - one oddity being the continuos -EINTRs that his OO.o gets on 
startup.

Trever - If your problem isn't solved yet - Can you run gdb 
/path/to/ooffice from commandline and then when it segfaults, post the 
backtrace?

Parag
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-27 Thread Trever L. Adams
I didn't look at the trace. My only problem is in saving new files. I
can copy an old one, rename it and start, empty it and save fine. I just
can't save new ones.

Anyway, I hope this gets fixed. I am running pure rawhide Fedora Core,
just so you know... latest of everything.

Trever

On Thu, 2005-01-27 at 18:49 -0500, Parag Warudkar wrote:
>  From strace output which Trever sent, OO.o seems to be getting many 
> -EINTRs (Interrupted System Call) which are attempted to be restarted 
> but again recieve EINTR when restarted. (futex, accept and poll are the 
> ones which get EINTR).
> 
> Whereas, when OO.o successfully starts up on my machine, I get no EINTRs 
> at all.
> 
> Stephen - Is it possible for you to post strace from your machine ? If 
> you see the same symptoms we can look at what changed in that area.
> 
> Thanks
> Parag
> 
> Stephen Hemminger wrote:
> 
> >On my laptop with Fedora Core 3, OpenOffice 1.0.1, 1.0.4 and the pre 2.0 
> >version
> >all work fine running 2.6.10-FCxx kernel but get a SEGV when running on 
> >2.6.11-rc1 or 2.6.11-rc2
> >
> >Any hints?
> >
> >
> >  
> >
> 
> 
--
"There are two races of people - men and women - no matter what women's
libbers would have you pretend. The male is motivated by toys and
science because men are born with no purpose in the universe except to
procreate. there is lots of time to kill beyond that...Women, however,
are born with a center. They can create the universe, mother it, teach
it, nurture it. Men read science fiction to build the future. Women
don't need to read it. They are the future." -- Ray Bradbury

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-27 Thread Parag Warudkar
From strace output which Trever sent, OO.o seems to be getting many 
-EINTRs (Interrupted System Call) which are attempted to be restarted 
but again recieve EINTR when restarted. (futex, accept and poll are the 
ones which get EINTR).

Whereas, when OO.o successfully starts up on my machine, I get no EINTRs 
at all.

Stephen - Is it possible for you to post strace from your machine ? If 
you see the same symptoms we can look at what changed in that area.

Thanks
Parag
Stephen Hemminger wrote:
On my laptop with Fedora Core 3, OpenOffice 1.0.1, 1.0.4 and the pre 2.0 version
all work fine running 2.6.10-FCxx kernel but get a SEGV when running on 
2.6.11-rc1 or 2.6.11-rc2
Any hints?
 

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-27 Thread Trever L. Adams
I am seeing crashes in FC4 rawhide with the 2.6.xx kernel in FC4 rawhide
as well. However, I only see  it if I start, and then try to save the
document (without or without changes).. i.e. saving a new document... I
may see this under saving as as well, but I rarely do that so I don't
know. (AMD Athlon here, not Athlon64)

That is the ONLY crash I see.

Trever

On Wed, 2005-01-26 at 22:14 -0500, Parag Warudkar wrote:
> Stephen Hemminger wrote:
> 
> >On my laptop with Fedora Core 3, OpenOffice 1.0.1, 1.0.4 and the pre 2.0 
> >version
> >all work fine running 2.6.10-FCxx kernel but get a SEGV when running on 
> >2.6.11-rc1 or 2.6.11-rc2
> >
> >Any hints?
> >  
> >
> Works fine here -  FC3-x86 on Athlon64 and 2.6.11-rc2 stock. Both  OO.o 
> 1.1.3 and latest M69 run fine.
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to [EMAIL PROTECTED]
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 
--
"The idea that Bill Gates has appeared like a knight in shining armour
to lead all customers out of a mire of technological chaos neatly
ignores the fact that it was he who, by peddling second-rate technology,
led them into it in the first place." -- Douglas Adams, on Windows '95.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-26 Thread Parag Warudkar
Stephen Hemminger wrote:
On my laptop with Fedora Core 3, OpenOffice 1.0.1, 1.0.4 and the pre 2.0 version
all work fine running 2.6.10-FCxx kernel but get a SEGV when running on 
2.6.11-rc1 or 2.6.11-rc2
Any hints?
 

Works fine here -  FC3-x86 on Athlon64 and 2.6.11-rc2 stock. Both  OO.o 
1.1.3 and latest M69 run fine.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-26 Thread Stephen Hemminger
On my laptop with Fedora Core 3, OpenOffice 1.0.1, 1.0.4 and the pre 2.0 version
all work fine running 2.6.10-FCxx kernel but get a SEGV when running on 
2.6.11-rc1 or 2.6.11-rc2

Any hints?


-- 
Stephen Hemminger   <[EMAIL PROTECTED]>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-23 Thread Martin Josefsson
On Sat, 2005-01-22 at 18:38 -0800, Randy.Dunlap wrote:

> > Distribution: Debian
> > Hardware Environment: Pentum III 733 MHz
> > Software Environment: Debian Sid
> > Problem Description:
> > While starting open Office crashes, it did not happend on 2.6.10, but 
> > happend on
> > 2.6.11. rc1 and rc2. The only thing that has changed is the kernel. If i go 
> > back
> > to 2.6.10 OpenOffice starts just fine.
> 
> OO works for me on 2.6.11-rc2, but my OO is 1.1.1.
> The bugzilla mentions 1.1.2yyy and 1.1.3zzz, so I'd see if you
> (diego) can try some 1.1.3 OO.

OO in debian unstable, version 1.1.3-4 works just fine on 2.6.11-rc2
here

-- 
/Martin


signature.asc
Description: This is a digitally signed message part


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-23 Thread Matthias-Christian Ott
Felipe Alfaro Solana wrote:
On 22 Jan 2005, at 18:33, Matthias-Christian Ott wrote:
Hi!
I'm suing Arch Linux and the Kernel 2.6.11-rc2 -- it works great. Try 
to recompile your
^
suing? My God! More legal trouble.
Didn't you mean "using"? ;-)
-
To unsubscribe from this list: send the line "unsubscribe 
linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Oh sorry that's just a typo.
Matthias-Christian Ott
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-22 Thread Alessandro Suardi
On Sat, 22 Jan 2005 18:18:55 +0100, Alessandro Suardi
<[EMAIL PROTECTED]> wrote:
> On Sat, 22 Jan 2005 08:56:25 -0800, Martin J. Bligh <[EMAIL PROTECTED]> wrote:
> > Please contact bug submitter for more info, not myself.
> >
> > -
> >
> > http://bugme.osdl.org/show_bug.cgi?id=4081

[snip]

> Doesn't happen here:
> 
> [EMAIL PROTECTED] asuardi]$ grep openoffice /var/log/rpmpkgs
> openoffice.org-1.1.2-11.4.fc2.i386.rpm
> openoffice.org-i18n-1.1.2-11.4.fc2.i386.rpm
> openoffice.org-libs-1.1.2-11.4.fc2.i386.rpm
> [EMAIL PROTECTED] asuardi]$ cat /proc/version
> Linux version 2.6.11-rc1-bk9 ([EMAIL PROTECTED]) (gcc version 3.4.3) #1
> Fri Jan 21 15:46:16 CET 2005
> 
> Will try -rc2 later...

The above OO RPMs are also okay with -rc2 under FC2.

--alessandro
 
 "And every dream, every, is just a dream after all"
  
(Heather Nova, "Paper Cup")
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-22 Thread Randy.Dunlap
Martin J. Bligh wrote:
Please contact bug submitter for more info, not myself.
-
http://bugme.osdl.org/show_bug.cgi?id=4081
   Summary: OpenOffice crashes while starting due to a threading
error
Kernel Version: 2.6.11-rc2
Status: NEW
  Severity: blocking
 Owner: [EMAIL PROTECTED]
 Submitter: [EMAIL PROTECTED]
Distribution: Debian
Hardware Environment: Pentum III 733 MHz
Software Environment: Debian Sid
Problem Description:
While starting open Office crashes, it did not happend on 2.6.10, but happend on
2.6.11. rc1 and rc2. The only thing that has changed is the kernel. If i go back
to 2.6.10 OpenOffice starts just fine.
OO works for me on 2.6.11-rc2, but my OO is 1.1.1.
The bugzilla mentions 1.1.2yyy and 1.1.3zzz, so I'd see if you
(diego) can try some 1.1.3 OO.
--
~Randy
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-22 Thread Felipe Alfaro Solana
On 22 Jan 2005, at 18:33, Matthias-Christian Ott wrote:
Hi!
I'm suing Arch Linux and the Kernel 2.6.11-rc2 -- it works great. Try 
to recompile your
^
suing? My God! More legal trouble.
Didn't you mean "using"? ;-)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Fw: [Bugme-new] [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-22 Thread Andrew Morton

Is anyone else seeing this?


Begin forwarded message:

Date: Sat, 22 Jan 2005 08:35:26 -0800
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: [Bugme-new] [Bug 4081] New: OpenOffice crashes while starting due to a 
threading error


http://bugme.osdl.org/show_bug.cgi?id=4081

   Summary: OpenOffice crashes while starting due to a threading
error
Kernel Version: 2.6.11-rc2
Status: NEW
  Severity: blocking
 Owner: [EMAIL PROTECTED]
 Submitter: [EMAIL PROTECTED]


Distribution: Debian
Hardware Environment: Pentum III 733 MHz
Software Environment: Debian Sid
Problem Description:
While starting open Office crashes, it did not happend on 2.6.10, but happend on
2.6.11. rc1 and rc2. The only thing that has changed is the kernel. If i go back
to 2.6.10 OpenOffice starts just fine.

gdb shows that it crashes during this call:
thread_get_info_callback: cannot get thread info: generic error

the logs kern.log and messages don't show anything related to this crash.

Steps to reproduce:

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-22 Thread Matthias-Christian Ott
Martin J. Bligh wrote:
Please contact bug submitter for more info, not myself.
-
http://bugme.osdl.org/show_bug.cgi?id=4081
  Summary: OpenOffice crashes while starting due to a threading
   error
   Kernel Version: 2.6.11-rc2
   Status: NEW
 Severity: blocking
Owner: [EMAIL PROTECTED]
Submitter: [EMAIL PROTECTED]
Distribution: Debian
Hardware Environment: Pentum III 733 MHz
Software Environment: Debian Sid
Problem Description:
While starting open Office crashes, it did not happend on 2.6.10, but happend on
2.6.11. rc1 and rc2. The only thing that has changed is the kernel. If i go back
to 2.6.10 OpenOffice starts just fine.
gdb shows that it crashes during this call:
thread_get_info_callback: cannot get thread info: generic error
the logs kern.log and messages don't show anything related to this crash.
Steps to reproduce:
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/
 

Hi!
I'm suing Arch Linux and the Kernel 2.6.11-rc2 -- it works great. Try to 
recompile your OO.org.

Matthias-Christian Ott
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-22 Thread Alessandro Suardi
On Sat, 22 Jan 2005 08:56:25 -0800, Martin J. Bligh <[EMAIL PROTECTED]> wrote:
> Please contact bug submitter for more info, not myself.
> 
> -
> 
> http://bugme.osdl.org/show_bug.cgi?id=4081
> 
>Summary: OpenOffice crashes while starting due to a threading
> error
> Kernel Version: 2.6.11-rc2
> Status: NEW
>   Severity: blocking
>  Owner: [EMAIL PROTECTED]
>  Submitter: [EMAIL PROTECTED]
> 
> Distribution: Debian
> Hardware Environment: Pentum III 733 MHz
> Software Environment: Debian Sid
> Problem Description:
> While starting open Office crashes, it did not happend on 2.6.10, but happend 
> on
> 2.6.11. rc1 and rc2. The only thing that has changed is the kernel. If i go 
> back
> to 2.6.10 OpenOffice starts just fine.
> 
> gdb shows that it crashes during this call:
> thread_get_info_callback: cannot get thread info: generic error
> 
> the logs kern.log and messages don't show anything related to this crash.
> 
> Steps to reproduce:
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to [EMAIL PROTECTED]
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 

Doesn't happen here:

[EMAIL PROTECTED] asuardi]$ grep openoffice /var/log/rpmpkgs
openoffice.org-1.1.2-11.4.fc2.i386.rpm
openoffice.org-i18n-1.1.2-11.4.fc2.i386.rpm
openoffice.org-libs-1.1.2-11.4.fc2.i386.rpm
[EMAIL PROTECTED] asuardi]$ cat /proc/version
Linux version 2.6.11-rc1-bk9 ([EMAIL PROTECTED]) (gcc version 3.4.3) #1
Fri Jan 21 15:46:16 CET 2005

Will try -rc2 later...

--alessandro
 
 "And every dream, every, is just a dream after all"
  
(Heather Nova, "Paper Cup")
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[Bug 4081] New: OpenOffice crashes while starting due to a threading error

2005-01-22 Thread Martin J. Bligh
Please contact bug submitter for more info, not myself.

-

http://bugme.osdl.org/show_bug.cgi?id=4081

   Summary: OpenOffice crashes while starting due to a threading
error
Kernel Version: 2.6.11-rc2
Status: NEW
  Severity: blocking
 Owner: [EMAIL PROTECTED]
 Submitter: [EMAIL PROTECTED]


Distribution: Debian
Hardware Environment: Pentum III 733 MHz
Software Environment: Debian Sid
Problem Description:
While starting open Office crashes, it did not happend on 2.6.10, but happend on
2.6.11. rc1 and rc2. The only thing that has changed is the kernel. If i go back
to 2.6.10 OpenOffice starts just fine.

gdb shows that it crashes during this call:
thread_get_info_callback: cannot get thread info: generic error

the logs kern.log and messages don't show anything related to this crash.

Steps to reproduce:


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/