Re: firefox 12 crash on FreeBSD 7

2012-05-03 Thread Dmitry Morozovsky
On Wed, 2 May 2012, Florian Smeets wrote:

> >>> after portupgrading www/firefox port to version 12, I'm constantly have 
> >>> crashes 
> >>> by "bad system call" signal.
> >>>
> >>> on stderr there is
> >>>
> >>> (firefox-bin:95162): libnotify-WARNING **: Failed to connect to proxy
> >>> Bad system call (core dumped)
> >>>
> >>>  ktrace shows 
> >>>
> >>>  95162 firefox-bin CALL  ksem_init(0xbfbf350c,0)
> >>>  95162 firefox-bin RET   ksem_init -1 errno 78 Function not implemented
> >>>  95162 firefox-bin PSIG  SIGSYS SIG_DFL
> >>
> >> can you try loading the sem module? Also have a look at pkg-message
> >> (Firefox and HTML5). Perhaps firefox 12 needs the module for other
> >> things now?!
> > 
> > I thought I'm aware of this, and I do have semaphores in my kernel:
> > 
> > root@woozle:/usr/ports# config -x /boot/kernel/kernel | grep -i sem
> > options SYSVSEM
> > 
> > or it this other semaphores?
> > 
> 
> Yes, it's POSIX semaphores (options P1003_1B_SEMAPHORES).

For the record and search engines: yes, the cause was posix semaphores absence.

Thanks all for the kick in right direction ;)

-- 
Sincerely,
D.Marck [DM5020, MCK-RIPE, DM3-RIPN]
[ FreeBSD committer: ma...@freebsd.org ]

*** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- ma...@rinet.ru ***

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: firefox 12 crash on FreeBSD 7

2012-05-02 Thread Florian Smeets
On 02.05.12 18:06, Dmitry Morozovsky wrote:
> On Wed, 2 May 2012, Florian Smeets wrote:
> 
>>> after portupgrading www/firefox port to version 12, I'm constantly have 
>>> crashes 
>>> by "bad system call" signal.
>>>
>>> on stderr there is
>>>
>>> (firefox-bin:95162): libnotify-WARNING **: Failed to connect to proxy
>>> Bad system call (core dumped)
>>>
>>>  ktrace shows 
>>>
>>>  95162 firefox-bin CALL  ksem_init(0xbfbf350c,0)
>>>  95162 firefox-bin RET   ksem_init -1 errno 78 Function not implemented
>>>  95162 firefox-bin PSIG  SIGSYS SIG_DFL
>>
>> Hi Dmitry,
>>
>> can you try loading the sem module? Also have a look at pkg-message
>> (Firefox and HTML5). Perhaps firefox 12 needs the module for other
>> things now?!
> 
> I thought I'm aware of this, and I do have semaphores in my kernel:
> 
> root@woozle:/usr/ports# config -x /boot/kernel/kernel | grep -i sem
> options SYSVSEM
> 
> or it this other semaphores?
> 

Yes, it's POSIX semaphores (options P1003_1B_SEMAPHORES).

Florian



signature.asc
Description: OpenPGP digital signature


Re: firefox 12 crash on FreeBSD 7

2012-05-02 Thread Robert Huff

Dmitry Morozovsky writes:

>  > can you try loading the sem module? Also have a look at pkg-message
>  > (Firefox and HTML5). Perhaps firefox 12 needs the module for other
>  > things now?!
>  
>  I thought I'm aware of this, and I do have semaphores in my kernel:
>  
>  root@woozle:/usr/ports# config -x /boot/kernel/kernel | grep -i sem
>  options SYSVSEM
>  
>  or it this other semaphores?

Perhaps "P1003_1B_SEMAPHORES"?



Robert Huff

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: firefox 12 crash on FreeBSD 7

2012-05-02 Thread Dmitry Morozovsky
On Wed, 2 May 2012, Florian Smeets wrote:

> > after portupgrading www/firefox port to version 12, I'm constantly have 
> > crashes 
> > by "bad system call" signal.
> > 
> > on stderr there is
> > 
> > (firefox-bin:95162): libnotify-WARNING **: Failed to connect to proxy
> > Bad system call (core dumped)
> > 
> >  ktrace shows 
> > 
> >  95162 firefox-bin CALL  ksem_init(0xbfbf350c,0)
> >  95162 firefox-bin RET   ksem_init -1 errno 78 Function not implemented
> >  95162 firefox-bin PSIG  SIGSYS SIG_DFL
> 
> Hi Dmitry,
> 
> can you try loading the sem module? Also have a look at pkg-message
> (Firefox and HTML5). Perhaps firefox 12 needs the module for other
> things now?!

I thought I'm aware of this, and I do have semaphores in my kernel:

root@woozle:/usr/ports# config -x /boot/kernel/kernel | grep -i sem
options SYSVSEM

or it this other semaphores?


-- 
Sincerely,
D.Marck [DM5020, MCK-RIPE, DM3-RIPN]
[ FreeBSD committer: ma...@freebsd.org ]

*** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- ma...@rinet.ru ***

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: firefox 12 crash on FreeBSD 7

2012-05-02 Thread Florian Smeets
On 05/02/2012 16:38, Dmitry Morozovsky wrote:
> Dear colleagues,
> 
> after portupgrading www/firefox port to version 12, I'm constantly have 
> crashes 
> by "bad system call" signal.
> 
> on stderr there is
> 
> (firefox-bin:95162): libnotify-WARNING **: Failed to connect to proxy
> Bad system call (core dumped)
> 
>  ktrace shows 
> 
>  95162 firefox-bin CALL  ksem_init(0xbfbf350c,0)
>  95162 firefox-bin RET   ksem_init -1 errno 78 Function not implemented
>  95162 firefox-bin PSIG  SIGSYS SIG_DFL

Hi Dmitry,

can you try loading the sem module? Also have a look at pkg-message
(Firefox and HTML5). Perhaps firefox 12 needs the module for other
things now?!

HTH,
Florian
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


firefox 12 crash on FreeBSD 7

2012-05-02 Thread Dmitry Morozovsky
Dear colleagues,

after portupgrading www/firefox port to version 12, I'm constantly have crashes 
by "bad system call" signal.

on stderr there is

(firefox-bin:95162): libnotify-WARNING **: Failed to connect to proxy
Bad system call (core dumped)

 ktrace shows 

 95162 firefox-bin CALL  sigprocmask(SIG_SETMASK,0x4ae010d8,0)
 95162 firefox-bin RET   sigprocmask 0
 95162 firefox-bin CALL  sigprocmask(SIG_BLOCK,0xbfbf32b0,0x4ae010d8)
 95162 firefox-bin RET   sigprocmask 0
 95162 firefox-bin CALL  sigprocmask(SIG_SETMASK,0x4ae010d8,0)
 95162 firefox-bin RET   sigprocmask 0
 95162 firefox-bin RET   clock_gettime 0
 95162 firefox-bin CALL  clock_gettime(0x4,0xbe7eccc8)
 95162 firefox-bin RET   clock_gettime 0
 95162 firefox-bin CALL  ksem_init(0xbfbf350c,0)
 95162 firefox-bin RET   ksem_init -1 errno 78 Function not implemented
 95162 firefox-bin PSIG  SIGSYS SIG_DFL
 95162 firefox-bin NAMI  "firefox-bin.core"
 95162 firefox-bin GIO   fd 18 wrote 20 bytes
 
rebuilding libnotify and firefox does not help.

any hints?

Thanks!

-- 
Sincerely,
D.Marck [DM5020, MCK-RIPE, DM3-RIPN]
[ FreeBSD committer: ma...@freebsd.org ]

*** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- ma...@rinet.ru ***

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"