Re: Implement base NLS catalog conversion from 8bit locales to utf-8

2015-04-05 Thread Dmitry Marakasov
* Dmitry Marakasov (amd...@amdmi3.ru) wrote: I've just noticed that though we have NLS files for 8bit locales: # ls /usr/share/nls/ru_RU.KOI8-R/ ee.catgrep.catlibc.cattcsh.cat we don't for UTF-8: # ls /usr/share/nls/ru_RU.UTF-8/ tcsh.cat Seemingly

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread Alan Cox
On 04/05/2015 15:17, Gleb Smirnoff wrote: On Sun, Apr 05, 2015 at 03:07:56PM -0500, Alan Cox wrote: A On 04/05/2015 14:34, Gleb Smirnoff wrote: A On Sun, Apr 05, 2015 at 12:45:00PM -0500, Alan Cox wrote: A A On 04/05/2015 10:47, Gleb Smirnoff wrote: A A On Sun, Apr 05, 2015 at 06:37:58AM

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread David Wolfskill
On Sun, Apr 05, 2015 at 05:57:08PM -0500, Alan Cox wrote: ... A Just curious, amd64 or i386? Panics on amd64, while building a kernel for i386, if that matters :) Maybe. I didn't trip the assertion building amd64 kernels or world. Maybe the difference is that the machine in

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread Rui Paulo
On Apr 5, 2015, at 13:07, Alan Cox a...@rice.edu wrote: On 04/05/2015 14:34, Gleb Smirnoff wrote: On Sun, Apr 05, 2015 at 12:45:00PM -0500, Alan Cox wrote: A On 04/05/2015 10:47, Gleb Smirnoff wrote: A On Sun, Apr 05, 2015 at 06:37:58AM -0700, David Wolfskill wrote: A D It ocurred rather

Implement base NLS catalog conversion from 8bit locales to utf-8

2015-04-05 Thread Dmitry Marakasov
Hi! I've just noticed that though we have NLS files for 8bit locales: # ls /usr/share/nls/ru_RU.KOI8-R/ ee.cat grep.catlibc.cattcsh.cat we don't for UTF-8: # ls /usr/share/nls/ru_RU.UTF-8/ tcsh.cat Seemingly this is easily fixable by just converting catalogs with

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread Alan Cox
On 04/05/2015 19:49, Rui Paulo wrote: On Apr 5, 2015, at 13:07, Alan Cox a...@rice.edu wrote: On 04/05/2015 14:34, Gleb Smirnoff wrote: On Sun, Apr 05, 2015 at 12:45:00PM -0500, Alan Cox wrote: A On 04/05/2015 10:47, Gleb Smirnoff wrote: A On Sun, Apr 05, 2015 at 06:37:58AM -0700, David

Build failed in Jenkins: FreeBSD_HEAD #2632

2015-04-05 Thread jenkins-admin
See https://jenkins.freebsd.org/job/FreeBSD_HEAD/2632/changes Changes: [adrian] Add support for the MIPS74K SoC family performance counters events. These are similar to the mips24k performance counters - some are available on perfcnt0/3, some are available on perfcnt1/4. However, the events

panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread David Wolfskill
It ocurred rather late in the transition to multi-user mode, but prior to starting xdm (on my laptop). Previous (working) head/i386 for this machine was r281074. Here's the first bit of the crashinfo (yes, I have a crash dump): g1-254.catwhisker.org dumped core - see /var/crash/vmcore.3 Sun

Jenkins build is back to normal : FreeBSD_HEAD #2633

2015-04-05 Thread jenkins-admin
See https://jenkins.freebsd.org/job/FreeBSD_HEAD/2633/changes ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread Alan Cox
On 04/05/2015 10:47, Gleb Smirnoff wrote: On Sun, Apr 05, 2015 at 06:37:58AM -0700, David Wolfskill wrote: D It ocurred rather late in the transition to multi-user mode, but D prior to starting xdm (on my laptop). D D Previous (working) head/i386 for this machine was r281074. D D Here's

Re: [Heads up] : You may need to update your gcc ports.

2015-04-05 Thread Aryeh Friedman
On Sun, Apr 5, 2015 at 1:39 PM, Pedro Giffuni p...@freebsd.org wrote: Hello; I was going to add this to the UPDATING file but this file is not meant for changes affecting ports so here it goes instead: 20150415: Our libc headers are starting to use gcc-style attributes to hint

Nothing can boot anymore - video issues

2015-04-05 Thread Shawn Webb
So I just updated my laptop and desktop to a recent HEAD. Both machines boot using gptzfsboot. The boot spinner shows, then when it's supposed to transition to the Beastie logo screen, the monitor funks out. Booting never finishes. Below is a link to a picture of my laptop.

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread Konstantin Belousov
On Sun, Apr 05, 2015 at 06:47:21PM +0300, Gleb Smirnoff wrote: This is r281079. Since vm_page_advise() may call vm_page_dirty() in the MADV_DONTNEED case, the assertion is valid. So, looks like vm_fault_dontneed() needs W-lock on the first_object. Either this, or vm_page_advise() could be

[Heads up] : You may need to update your gcc ports.

2015-04-05 Thread Pedro Giffuni
Hello; I was going to add this to the UPDATING file but this file is not meant for changes affecting ports so here it goes instead: 20150415: Our libc headers are starting to use gcc-style attributes to hint the compiler about probable optimizations or errors. Unfortunately

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread Gleb Smirnoff
On Sun, Apr 05, 2015 at 06:37:58AM -0700, David Wolfskill wrote: D It ocurred rather late in the transition to multi-user mode, but D prior to starting xdm (on my laptop). D D Previous (working) head/i386 for this machine was r281074. D D Here's the first bit of the crashinfo (yes, I have a

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread David Wolfskill
On Sun, Apr 05, 2015 at 08:37:23PM +0300, Konstantin Belousov wrote: On Sun, Apr 05, 2015 at 06:47:21PM +0300, Gleb Smirnoff wrote: This is r281079. Since vm_page_advise() may call vm_page_dirty() in the MADV_DONTNEED case, the assertion is valid. So, looks like vm_fault_dontneed() needs

Re: [Heads up] : You may need to update your gcc ports.

2015-04-05 Thread Pedro Giffuni
On 04/05/15 13:00, Aryeh Friedman wrote: On Sun, Apr 5, 2015 at 1:39 PM, Pedro Giffuni p...@freebsd.org wrote: Hello; I was going to add this to the UPDATING file but this file is not meant for changes affecting ports so here it goes instead: 20150415: Our libc headers are starting

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread David Wolfskill
On Sun, Apr 05, 2015 at 10:47:03AM -0700, David Wolfskill wrote: ... Either this, or vm_page_advise() could be changed to do nothing in the case of MADV_DONTNEED operation and a need to call vm_page_dirty(), if the object is only read-locked. I have since managed to build (successfully)

Re: Nothing can boot anymore - video issues

2015-04-05 Thread Rui Paulo
On Apr 5, 2015, at 09:11, Shawn Webb shawn.w...@hardenedbsd.org wrote: So I just updated my laptop and desktop to a recent HEAD. Both machines boot using gptzfsboot. The boot spinner shows, then when it's supposed to transition to the Beastie logo screen, the monitor funks out. Booting never

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread Gleb Smirnoff
On Sun, Apr 05, 2015 at 12:45:00PM -0500, Alan Cox wrote: A On 04/05/2015 10:47, Gleb Smirnoff wrote: A On Sun, Apr 05, 2015 at 06:37:58AM -0700, David Wolfskill wrote: A D It ocurred rather late in the transition to multi-user mode, but A D prior to starting xdm (on my laptop). A D A D

Re: [Heads up] : You may need to update your gcc ports.

2015-04-05 Thread Alexander Kabaev
On Sun, 05 Apr 2015 12:39:46 -0500 Pedro Giffuni p...@freebsd.org wrote: Hello; I was going to add this to the UPDATING file but this file is not meant for changes affecting ports so here it goes instead: 20150415: Our libc headers are starting to use gcc-style attributes to

Re: [Heads up] : You may need to update your gcc ports.

2015-04-05 Thread Aryeh Friedman
On Sun, Apr 5, 2015 at 3:45 PM, Alexander Kabaev kab...@gmail.com wrote: On Sun, 05 Apr 2015 12:39:46 -0500 Pedro Giffuni p...@freebsd.org wrote: Hello; I was going to add this to the UPDATING file but this file is not meant for changes affecting ports so here it goes instead: 20150415:

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread Alan Cox
On 04/05/2015 14:34, Gleb Smirnoff wrote: On Sun, Apr 05, 2015 at 12:45:00PM -0500, Alan Cox wrote: A On 04/05/2015 10:47, Gleb Smirnoff wrote: A On Sun, Apr 05, 2015 at 06:37:58AM -0700, David Wolfskill wrote: A D It ocurred rather late in the transition to multi-user mode, but A D prior

Re: panic: Lock vm object not exclusively locked @ /usr/src/sys/vm/vm_page.c:2637

2015-04-05 Thread Gleb Smirnoff
On Sun, Apr 05, 2015 at 03:07:56PM -0500, Alan Cox wrote: A On 04/05/2015 14:34, Gleb Smirnoff wrote: A On Sun, Apr 05, 2015 at 12:45:00PM -0500, Alan Cox wrote: A A On 04/05/2015 10:47, Gleb Smirnoff wrote: A A On Sun, Apr 05, 2015 at 06:37:58AM -0700, David Wolfskill wrote: A A D It