Chrome crashing system (amd64-10.0-CURRENT)

2012-05-17 Thread Conrad J. Sabatier
For the last week or so, I've been unable to run chrome. Any attempt to start it up will cause the system either to freeze up or reboot. To make matters worse, no trace of what's happening is anywhere to be found. Nothing in any log files. The system doesn't drop into the kernel debugger,

Re: Chrome crashing system (amd64-10.0-CURRENT)

2012-05-17 Thread John Hixson
On Thu, May 17, 2012 at 01:15:54AM -0500, Conrad J. Sabatier wrote: For the last week or so, I've been unable to run chrome. Any attempt to start it up will cause the system either to freeze up or reboot. To make matters worse, no trace of what's happening is anywhere to be found. Nothing

Re: buildkernel fails

2012-05-17 Thread Joel Dahl
On 16-05-2012 23:41, Dimitry Andric wrote: On 2012-05-16 23:18, Joel Dahl wrote: Hi, I did a buildworld+buildkernel on my workstation today and buildkernel fails with: cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -g -Wall -Wredundant-decls -Wnested-externs

FreeBSD and LDAP users, bug or feature?

2012-05-17 Thread Joel Dahl
Hi, I have a machine running FreeBSD and openldap24-server, and several client machines running FreeBSD and openldap24-client and I'm experiencing a weird behaviour with adduser/pw. I create my LDAP users on the LDAP server, with UIDs starting at 5001. Local users on the server and clients should

Re: new panic in cpu_reset() with WITNESS

2012-05-17 Thread Andriy Gapon
on 25/01/2012 23:52 Andriy Gapon said the following: on 24/01/2012 14:32 Gleb Smirnoff said the following: Yes, now: Rebooting... lock order reversal: 1st 0x80937140 smp rendezvous (smp rendezvous) @ /usr/src/head/sys/kern/kern_shutdown.c:542 2nd 0xfe0001f5d838 uart_hwmtx

Re: make delete-old performance.

2012-05-17 Thread Dimitry Andric
On 2012-05-17 05:18, b. f. wrote:... The slowdown is probably due - at least in part - to two factors: - the list of files to be checked for removal has grown substantially, because missing entries for old knobs and new entries for new knobs have been added; and - a new (and slower)

Re: Chrome crashing system (amd64-10.0-CURRENT)

2012-05-17 Thread Chuck Burns
On 5/17/2012 2:11 AM, John Hixson wrote: On Thu, May 17, 2012 at 01:15:54AM -0500, Conrad J. Sabatier wrote: For the last week or so, I've been unable to run chrome. Any attempt to start it up will cause the system either to freeze up or reboot. To add to this, I've had the same problem on

Re: FreeBSD and LDAP users, bug or feature?

2012-05-17 Thread Mark Felder
Check man adduser.conf(5) There is an option for uidstart which should do what you want. If you set it to 1000 every time you run adduser it will show: # adduser Username: foo Full name: bar Uid [1000]: Don't worry -- it's just showing you the starting range. If there is already a UID of

Re: new panic in cpu_reset() with WITNESS

2012-05-17 Thread Attilio Rao
2012/5/17, Andriy Gapon a...@freebsd.org: on 25/01/2012 23:52 Andriy Gapon said the following: on 24/01/2012 14:32 Gleb Smirnoff said the following: Yes, now: Rebooting... lock order reversal: 1st 0x80937140 smp rendezvous (smp rendezvous) @

Re: ACPI 'driver bug: Unable to set devclass'

2012-05-17 Thread John Baldwin
On Wednesday, May 16, 2012 4:07:43 pm John Baldwin wrote: On Wednesday, May 16, 2012 12:18:25 pm Andriy Gapon wrote: on 16/05/2012 17:50 John Baldwin said the following: On Tuesday, May 15, 2012 12:35:12 pm Andriy Gapon wrote: Not sure what you disagree with... First, the wildcard

Re: Ethernet Drivers: Question on ifp-if_ioctl invocation for SIOCADDMULTI and SIOCDELMULTI

2012-05-17 Thread John Baldwin
On Wednesday, May 16, 2012 2:41:25 pm David Somayajulu wrote: Hi All, When ifp-if_ioctl() is invoked for the ioctl cmd SIOCADDMULTI, IN_MULTI_LOCK() is called in one of the functions in_joingroup() in the caller stack. From netinet/in_var.h, line 357 : #define IN_MULTI_LOCK()

Re: Chrome crashing system (amd64-10.0-CURRENT)

2012-05-17 Thread Dimitry Andric
On 2012-05-17 14:20, Chuck Burns wrote: On 5/17/2012 2:11 AM, John Hixson wrote: On Thu, May 17, 2012 at 01:15:54AM -0500, Conrad J. Sabatier wrote: For the last week or so, I've been unable to run chrome. Any attempt to start it up will cause the system either to freeze up or reboot. To

Re: ACPI 'driver bug: Unable to set devclass'

2012-05-17 Thread Andriy Gapon
on 17/05/2012 17:05 John Baldwin said the following: On Wednesday, May 16, 2012 4:07:43 pm John Baldwin wrote: Oh, whoops. Actually, the right way to do this I think is bus_hint_device_unit() (and/or, not make the unit number in cpuX mean anything at all, but use a separate ivar to track

Re: make delete-old performance.

2012-05-17 Thread Jilles Tjoelker
On Thu, May 17, 2012 at 02:13:40PM +0200, Dimitry Andric wrote: On 2012-05-17 05:18, b. f. wrote:... The slowdown is probably due - at least in part - to two factors: - the list of files to be checked for removal has grown substantially, because missing entries for old knobs and new

GCC update for testing

2012-05-17 Thread Pedro Giffuni
Hi; I took a bunch of patches that were merged into the GCC 4.1 branch (under GPLv2) and prepared a patch for merging them into our base gcc. These are supposed to be bug fixes only. You can get the patch here: http://people.freebsd.org/~pfg/patches/patch-contrib-gcc And, for those really

Re: Chrome crashing system (amd64-10.0-CURRENT)

2012-05-17 Thread Evan Martin
These kinds of hard locks often point at graphics driver problems, but normally Chrome relies on a driver whitelist that likely doesn't include any FreeBSD drivers. Did you perhaps set a flag somewhere to bypass a blacklist? You could try some command line flags like

Re: GCC update for testing

2012-05-17 Thread Dimitry Andric
On 2012-05-17 17:44, Pedro Giffuni wrote: Hi; I took a bunch of patches that were merged into the GCC 4.1 branch (under GPLv2) and prepared a patch for merging them into our base gcc. These are supposed to be bug fixes only. You can get the patch here:

Re: FreeBSD and LDAP users, bug or feature?

2012-05-17 Thread Joel Dahl
On 17-05-2012 8:24, Mark Felder wrote: Check man adduser.conf(5) There is an option for uidstart which should do what you want. If you set it to 1000 every time you run adduser it will show: Thanks, setting uidstart to 1000 indeed works around the problem. :) However, I would still like

VNET jails freebsd 9.0

2012-05-17 Thread Krzysztof Kowalski
Hi, i was trying to make jail, under VB 4.1.14r77440 WINDOWS7 as host, using this: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/jails-build.html http://wiki.polymorf.fr/index.php/Howto:FreeBSD_jail_vnet I set everything like wiki says, recompiled kernel and patched /etc/rc.d/jail,

Re: GCC update for testing

2012-05-17 Thread Pedro Giffuni
Hi Dimitry; On 05/17/12 11:44, Dimitry Andric wrote: On 2012-05-17 17:44, Pedro Giffuni wrote: Hi; I took a bunch of patches that were merged into the GCC 4.1 branch (under GPLv2) and prepared a patch for merging them into our base gcc. These are supposed to be bug fixes only. You can get

Re: ACPI 'driver bug: Unable to set devclass'

2012-05-17 Thread John Baldwin
On Thursday, May 17, 2012 11:33:56 am Andriy Gapon wrote: on 17/05/2012 17:05 John Baldwin said the following: On Wednesday, May 16, 2012 4:07:43 pm John Baldwin wrote: Oh, whoops. Actually, the right way to do this I think is bus_hint_device_unit() (and/or, not make the unit number in

Re: FreeBSD 10 prognostication...

2012-05-17 Thread Christer Solskogen
On Thu, May 17, 2012 at 4:57 AM, Chuck Burns brea...@gmail.com wrote: You guys DO realize that's a troll website, right? And you're being seriously trolled.. right? The URL is legit! This is noes trollz! -- chs, ___ freebsd-current@freebsd.org

[panic] zfs_zget() panic during 'svn update'

2012-05-17 Thread Glen Barber
Hi, I'm running -CURRENT from a few weeks ago (r234559M), and during 'svn update', had the machine panic. I have kgdb output available here, and am happy to provide additional information if needed: http://people.freebsd.org/~gjb/zfs_zget-panic.kgdb.txt Regards, Glen

Re: random device not loaded; using insecure entropy during boot

2012-05-17 Thread Andriy Gapon
on 14/05/2012 21:17 Bruce Cran said the following: While booting -current I noticed a new warning introduced in r230230** http://svnweb.freebsd.org/base?view=revisionrevision=230230 (though it's not in 'dmesg' once booted): FreeBSD/SMP: 1 package(s) x 2 core(s) x 2 SMT threads cpu0

Re: FreeBSD and LDAP users, bug or feature?

2012-05-17 Thread Mark Felder
On Thu, 17 May 2012 13:41:19 -0500, Joel Dahl j...@vnode.se wrote: Thanks, setting uidstart to 1000 indeed works around the problem. :) However, I would still like to know if this is intended behaviour. I'm not sure but hopefully someone here can answer that for you.

Re: [review request] usr.sbin/service - make showing files configurable

2012-05-17 Thread Doug Barton
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 05/14/2012 06:35, Bryan Drewery wrote: On 5/13/2012 6:15 PM, Doug Barton wrote: On 5/12/2012 8:23 PM, Bryan Drewery wrote: Hi, I found service(8) to be inconsistent that it listed files with `service -e`, but plain services with

Re: [review request] usr.sbin/service - make showing files configurable

2012-05-17 Thread Bryan Drewery
On 5/17/2012 4:37 PM, Doug Barton wrote: On 05/14/2012 06:35, Bryan Drewery wrote: On 5/13/2012 6:15 PM, Doug Barton wrote: On 5/12/2012 8:23 PM, Bryan Drewery wrote: Hi, I found service(8) to be inconsistent that it listed files with `service -e`, but plain services with `service -l`

Re: ports/bash4 --enable-static fails

2012-05-17 Thread Sean Bruno
On Thu, 2012-05-10 at 05:56 -0700, Chet Ramey wrote: On 5/10/12 12:20 AM, Craig Rodrigues wrote: Bash is trying to override the malloc() functions in libc with its own implementation in lib/malloc/malloc.c . I have seen this type of trick before 3rd party code that tries to override the

Re: [review request] usr.sbin/service - make showing files configurable

2012-05-17 Thread Doug Barton
On 05/17/2012 02:51 PM, Bryan Drewery wrote: Yeah it's what I get for mashing a pseudo example up and not testing it! S'ok, I screwed up ${service##*/} in mine. :) ___ freebsd-current@freebsd.org mailing list

Re: Chrome crashing system (amd64-10.0-CURRENT)

2012-05-17 Thread Conrad J. Sabatier
On Thu, 17 May 2012 08:55:49 -0700 Evan Martin e...@chromium.org wrote: These kinds of hard locks often point at graphics driver problems, but normally Chrome relies on a driver whitelist that likely doesn't include any FreeBSD drivers. Did you perhaps set a flag somewhere to bypass a

Re: Chrome crashing system (amd64-10.0-CURRENT)

2012-05-17 Thread Conrad J. Sabatier
On Thu, 17 May 2012 16:12:15 -0700 Evan Martin e...@chromium.org wrote: On Thu, May 17, 2012 at 4:08 PM, Conrad J. Sabatier conr...@cox.net wrote: Thanks.  I tried those, and it still locked up. I finally just moved away ~/.config/chromium, and it started up OK. Luckily, I was able to

Re: Chrome crashing system (amd64-10.0-CURRENT)

2012-05-17 Thread Conrad J. Sabatier
On Thu, 17 May 2012 07:20:51 -0500 Chuck Burns brea...@gmail.com wrote: On 5/17/2012 2:11 AM, John Hixson wrote: On Thu, May 17, 2012 at 01:15:54AM -0500, Conrad J. Sabatier wrote: For the last week or so, I've been unable to run chrome. Any attempt to start it up will cause the system

Re: Chrome crashing system (amd64-10.0-CURRENT)

2012-05-17 Thread Evan Martin
On Thu, May 17, 2012 at 4:08 PM, Conrad J. Sabatier conr...@cox.net wrote: Thanks.  I tried those, and it still locked up. I finally just moved away ~/.config/chromium, and it started up OK. Luckily, I was able to restore pretty much everything from my synced data. It's a little surprising

Re: FreeBSD 10 prognostication...

2012-05-17 Thread Vance Siemens
Eh, sorry. I got excited at the prospect of downloading FreeBSD from the App Store and having the installer just work in a modern GUI. You have to admit, FreeBSD is lacking in this area. It would be a boon. On Wed, May 16, 2012 at 7:18 AM, Dag-Erling Smørgrav d...@des.no wrote: Vance Siemens

Re: FreeBSD 10 prognostication...

2012-05-17 Thread Hamell, Rick (SPARQ)
What, 8bit color ANSI isn't GUI enough? But seriously, it feels like it works even worse then it did a decade ago. Rick Hamell Sent from my iPhone On May 17, 2012, at 4:20 PM, Vance Siemens vance.siem...@gmail.com wrote: Eh, sorry. I got excited at the prospect of downloading FreeBSD from