Re: CURRENT crashes with nvidia GPU BLOB : vm_radix_insert: key 23c078 is already present

2013-08-08 Thread Sean Bruno
On Thu, 2013-08-08 at 11:30 -0700, Adrian Chadd wrote: Can you go over some previous versions in -HEAD and see when it was introduced? -adrian On 8 August 2013 11:10, O. Hartmann ohart...@zedat.fu-berlin.de wrote: The most recent CURRENT doesn't work with the x11/nvidia-driver

i386 panic

2013-08-12 Thread Sean Bruno
http://people.freebsd.org/~sbruno/10_i386_vmfault.txt I can never tell if stuff like this is because I'm not nerfing the system RAM correctly or if this is i386 bit-rot. I set hw.physmem=2g in loader.conf to try and get the system to boot, but I don't think I did it right? Sean

Re: i386 panic

2013-08-12 Thread Sean Bruno
. On Mon, Aug 12, 2013 at 3:43 PM, Sean Bruno sean_br...@yahoo.com wrote: http://people.freebsd.org/~sbruno/10_i386_vmfault.txt I can never tell if stuff like this is because I'm not nerfing the system RAM correctly or if this is i386 bit-rot

Re: i386 panic

2013-08-12 Thread Sean Bruno
On Mon, 2013-08-12 at 12:43 -0700, Sean Bruno wrote: http://people.freebsd.org/~sbruno/10_i386_vmfault.txt I can never tell if stuff like this is because I'm not nerfing the system RAM correctly or if this is i386 bit-rot. I set hw.physmem=2g in loader.conf to try and get the system

Re: i386 panic

2013-08-12 Thread Sean Bruno
On Mon, 2013-08-12 at 21:36 -0600, Scott Long wrote: On Aug 12, 2013, at 1:43 PM, Sean Bruno sean_br...@yahoo.com wrote: http://people.freebsd.org/~sbruno/10_i386_vmfault.txt I can never tell if stuff like this is because I'm not nerfing the system RAM correctly or if this is i386 bit

bsd patch regression?

2013-08-27 Thread Sean Bruno
Colin generated a patch for xen things that does some pretty typical behavior. bsdpatch really didn't handle it well and rejected some things and flat out refused to create sys/modules/xenhvm/Makefile for me. http://lists.freebsd.org/pipermail/freebsd-xen/2013-August/001697.html When applying

Interesting panic from the Yahoo builder (10-current)

2013-09-06 Thread Sean Bruno
Our yBSD builder needs to mount a disk image temporarily that has a dos partition (for openstack-ish things) to put configs into it. It seems that under high stress, we can squeeze a panic out of it in namei(). Sean Unread portion of the kernel message buffer: panic: namei: nameiop

random(4) update causes mips compile fail | mips boot fail

2013-09-07 Thread Sean Bruno
with nodevice random I can no longer compile for MIPS --- kernel.debug --- pseudo_rng.o:(.data+0x3c): undefined reference to `random_null_func' pseudo_rng.o:(.data+0x44): undefined reference to `random_null_func' pseudo_rng.o:(.data+0x74): undefined reference to `random_null_func'

Re: random(4) update causes mips compile fail | mips boot fail

2013-09-07 Thread Sean Bruno
On Sat, 2013-09-07 at 18:34 +0100, Mark R V Murray wrote: Configuration file: /etc/cfg/hostapd.wlan0.conf Using interface wlan0 with hwaddr 00:00:88:88:22:22 and ssid TESTBRUNO Entropy device is blocking. Can you please see if you can get the output of sysctl -a | grep random at that

Re: random(4) update causes mips compile fail | mips boot fail

2013-09-07 Thread Sean Bruno
On Sat, 2013-09-07 at 18:39 +0100, Mark R V Murray wrote: On 7 Sep 2013, at 17:43, Sean Bruno sean_br...@yahoo.com wrote: trying to enable random on my DIR-825 kernconf I get this on boot: Configuration file: /etc/cfg/hostapd.wlan0.conf Using interface wlan0 with hwaddr 00:00:88:88:22:22

Re: random(4) update causes mips compile fail | mips boot fail

2013-09-07 Thread Sean Bruno
On Sat, 2013-09-07 at 19:40 +0100, Mark R V Murray wrote: Looks like it does indeed work if that is set to 1. This DIR-825 config, should be loading random as a module, not built into the kernel due to size limitations of the kernel on this board. Hmm. I'll set it back to 1, but

Re: random(4) update causes mips compile fail | mips boot fail

2013-09-07 Thread Sean Bruno
On Sat, 2013-09-07 at 19:56 +0100, Mark R V Murray wrote: Ok. Right now, the mips kernel doesn't build unless I have random built in, we were using it as a module previously. I'm testing a fix, but if you want to help out, please move the random_null_func() from randomdev.c to

Re: random(4) update causes mips compile fail | mips boot fail

2013-09-07 Thread Sean Bruno
Nearly there - I saw that too. Proposed fix enclosed. M Compile succeeds, booted up and I still see the blocking message and the machine does not post fully. setting sys/dev/random/randomdev_soft.c .seeded = 1. allows the system to boot properly. Sean signature.asc Description:

Re: Interesting panic from the Yahoo builder (10-current)

2013-09-08 Thread Sean Bruno
On Sat, 2013-09-07 at 17:05 +0200, Davide Italiano wrote: On Fri, Sep 6, 2013 at 6:00 PM, Sean Bruno sean_br...@yahoo.com wrote: Our yBSD builder needs to mount a disk image temporarily that has a dos partition (for openstack-ish things) to put configs into it. It seems that under high

Doing it wrong: Building world with lang/clang-devel

2013-09-20 Thread Sean Bruno
wow, that didn't work at all. :-) I set these in make.conf: CC=/usr/local/bin/clang C++=/usr/local/bin/clang++ CPP=/usr/local/bin/clang++ It exploded pretty badly: http://people.freebsd.org/~sbruno/doingitwrong.txt Any reason that this shouldn't work? $ pkg info |grep clang

panic: Lock lle not exclusively locked @ /usr/src/sys/kern/kern_rwlock.c:140

2013-09-22 Thread Sean Bruno
Got a panic this morning after updating to 10.0-ALPHA-2 today while installing ports to a clean system. I can hold the box at the db prompt for a bit if someone wants me to look at things Sean signature.asc Description: This is a digitally signed message part

Re: Doing it wrong: Building world with lang/clang-devel and lang/gcc49

2013-09-24 Thread Sean Bruno
On Sun, 2013-09-22 at 16:53 -0500, Brooks Davis wrote: On Sat, Sep 21, 2013 at 03:42:16PM +0400, Lev Serebryakov wrote: Hello, Sean. You wrote 20 2013 ??., 22:39:30: SB wow, that didn't work at all. :-) SB I set these in make.conf: SB CC=/usr/local/bin/clang

Re: Doing it wrong: Building world with lang/clang-devel and lang/gcc49

2013-09-25 Thread Sean Bruno
On Tue, 2013-09-24 at 22:15 -0700, Sean Bruno wrote: On Sun, 2013-09-22 at 16:53 -0500, Brooks Davis wrote: On Sat, Sep 21, 2013 at 03:42:16PM +0400, Lev Serebryakov wrote: Hello, Sean. You wrote 20 2013 ??., 22:39:30: SB wow, that didn't work at all

Re: XEN additions cause failure to compile kernel

2013-10-01 Thread Sean Bruno
On Tue, 2013-10-01 at 17:34 +0100, John wrote: Hello list. Using latest sources: root@host0:/usr/src # svn info Path: . Working Copy Root Path: /usr/src URL: https://svn0.eu.freebsd.org/base/releng/9.2 Relative URL: ^/releng/9.2 Repository Root: https://svn0.eu.freebsd.org/base

Re: XEN additions cause failure to compile kernel

2013-10-01 Thread Sean Bruno
On Tue, 2013-10-01 at 22:17 +0100, John wrote: On Tue, Oct 01, 2013 at 12:06:13PM -0700, Sean Bruno wrote: Can you post your complete kernconf? sean Hi, Here it is: Ok, so this email thread is on freebsd-current and I think you're trying to buld a XENHVM kernel for stable/9

drm2/radeon dfixed_trunc() warnings

2013-10-06 Thread Sean Bruno
These caught my eye today, and the checks strewn about sys/dev/drm2/radeon seem completely bogus to me, but I don't have the h/w to test it at the moment. /usr/src/sys/modules/drm2/radeonkms/../../../dev/drm2/radeon/rs690.c:491:37: warning: comparison of unsigned expression 0 is always false

X related ports not finding version strings and hanging

2013-10-06 Thread Sean Bruno
Was doing a portmaster -a today and noted that bsd.xorg.mk seems to be causing problems duing the update. When this happens, some prompt is waiting for me to hit enter that has scrolled past and I cannot see it. === All cairo-1.10.2_5,2 libGL-8.0.5_4 (13/35) make: /usr/ports/Mk/bsd.xorg.mk

Re: X related ports not finding version strings and hanging

2013-10-06 Thread Sean Bruno
On Sun, 2013-10-06 at 15:28 -0700, Sean Bruno wrote: Was doing a portmaster -a today and noted that bsd.xorg.mk seems to be causing problems duing the update. When this happens, some prompt is waiting for me to hit enter that has scrolled past and I cannot see it. === All cairo

[patch] Re: drm2/radeon dfixed_trunc() warnings

2013-10-07 Thread Sean Bruno
On Sun, 2013-10-06 at 14:39 -0700, Sean Bruno wrote: These caught my eye today, and the checks strewn about sys/dev/drm2/radeon seem completely bogus to me, but I don't have the h/w to test it at the moment. /usr/src/sys/modules/drm2/radeonkms/../../../dev/drm2/radeon/rs690.c:491:37

i386-wine + 10.0

2013-10-11 Thread Sean Bruno
I think I built everything according to https://wiki.freebsd.org/i386-Wine and got a package out of it. I think I missed something obvious here. When I try to run simple windows things I get: err:module:load_builtin_dll failed to load .so lib for builtin Lwinex11.drv:

Re: i386-wine + 10.0

2013-10-13 Thread Sean Bruno
On Sat, 2013-10-12 at 13:12 +0200, Tomasz Kowalczyk wrote: When I try to run simple windows things I get: err:module:load_builtin_dll failed to load .so lib for builtin Lwinex11.drv: /usr/local/lib/libXext.so.6: unsupported file layout Think I had to add: /usr/local/lib

contrib/gcclibs/libssp security warning

2013-10-20 Thread Sean Bruno
There's an unchecked syslog call inside of libssp/ssp.c /usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp/ssp.c:137:23: warning: format string is not a string literal (potentially insecure) [-Wformat-security] syslog (LOG_CRIT, msg1); ^~~~ 1 warning

gperf/src/options.cc -- quiesce clang warnings -Wlogical-op-parentheses

2013-10-20 Thread Sean Bruno
gperf has some clang warnings that seem to be harmless, but annoying regarding some of the logical operations around detecting ascii chars: c++ -O2 -pipe -I/usr/obj/usr/src/tmp/legacy/usr/include -Wno-c ++11-extensions -I/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib

Re: contrib/gcclibs/libssp security warning

2013-10-21 Thread Sean Bruno
On Mon, 2013-10-21 at 08:44 +0200, Dimitry Andric wrote: On Oct 21, 2013, at 05:47, Sean Bruno sean_br...@yahoo.com wrote: There's an unchecked syslog call inside of libssp/ssp.c /usr/src/gnu/lib/libssp/../../../contrib/gcclibs/libssp/ssp.c:137:23: warning: format string

Re: gperf/src/options.cc -- quiesce clang warnings -Wlogical-op-parentheses

2013-10-21 Thread Sean Bruno
On Sun, 2013-10-20 at 23:50 -0400, Sean Bruno wrote: gperf has some clang warnings that seem to be harmless, but annoying regarding some of the logical operations around detecting ascii chars: c++ -O2 -pipe -I/usr/obj/usr/src/tmp/legacy/usr/include -Wno-c ++11-extensions -I/usr/src/gnu

Re: gperf/src/options.cc -- quiesce clang warnings -Wlogical-op-parentheses

2013-10-24 Thread Sean Bruno
On Tue, 2013-10-22 at 09:47 +0100, David Chisnall wrote: On 22 Oct 2013, at 00:43, Sean Bruno sean_br...@yahoo.com wrote: Heh, Matthew suggested the obvious in private mail, it seems that this would be better spelled as isalpha :-) This looks wrong. The behaviour of isalpha() depends

Re: gperf/src/options.cc -- quiesce clang warnings -Wlogical-op-parentheses

2013-10-24 Thread Sean Bruno
On Thu, 2013-10-24 at 21:24 -0400, David Chisnall wrote: Don't forget the freelocale() at the end. ah, ok. I wish that there was some kind of example that I could go off of in the man page. I'm sort of trundling my way through various bits of the system to find the obvious example of how to

Re: gperf/src/options.cc -- quiesce clang warnings -Wlogical-op-parentheses

2013-10-25 Thread Sean Bruno
On Fri, 2013-10-25 at 06:38 -0400, David Chisnall wrote: I'm simply trying to address the warnings that appear due to clang. I find the builds very noisy and if there's a better way to address this issue, I'm totally open to suggestions. Well, for contrib code that isn't going to be

[PATCH] quiesce clang warnings for opie/libopie

2013-10-25 Thread Sean Bruno
Spent some time investigating warnings emitted by the build for libopie and such. http://people.freebsd.org/~sbruno/libopie_warns.txt Most of this is harmless and clang emits clear directives and solutions to solve these warnings. Patch attached to do just that and make the build happy.

Re: gperf/src/options.cc -- quiesce clang warnings -Wlogical-op-parentheses

2013-10-26 Thread Sean Bruno
On Fri, 2013-10-25 at 10:04 -0400, Sean Bruno wrote: On Fri, 2013-10-25 at 06:38 -0400, David Chisnall wrote: I'm simply trying to address the warnings that appear due to clang. I find the builds very noisy and if there's a better way to address this issue, I'm totally open

[PATCH] contrib/groff Queisce -Wdangling else

2013-10-26 Thread Sean Bruno
This adds proper braces to clear Clang warnings about dangling else statements in groff. There is no(intended) functional change. http://people.freebsd.org/~sbruno/groff_dangling_else.txt sean signature.asc Description: This is a digitally signed message part

Re: [PATCH] quiesce clang warnings for opie/libopie

2013-10-26 Thread Sean Bruno
On Fri, 2013-10-25 at 10:13 -0400, Sean Bruno wrote: Spent some time investigating warnings emitted by the build for libopie and such. http://people.freebsd.org/~sbruno/libopie_warns.txt Most of this is harmless and clang emits clear directives and solutions to solve these warnings

Re: newcons comming

2013-10-26 Thread Sean Bruno
On Sat, 2013-10-26 at 22:32 +0300, Aleksandr Rybalko wrote: On Sat, 26 Oct 2013 10:45:32 +0200 d...@gmx.com wrote: Suppose that Newcons gets in quickly. I use a Radeon 9600 card. Will I see something useful on my screen (with KMS and the new Xorg and things like that), or will my screen

Re: [PATCH] contrib/groff Queisce -Wdangling else

2013-10-27 Thread Sean Bruno
On Sat, 2013-10-26 at 20:22 -0400, Eitan Adler wrote: On Sat, Oct 26, 2013 at 11:04 AM, Sean Bruno sean_br...@yahoo.com wrote: This adds proper braces to clear Clang warnings about dangling else statements in groff. There is no(intended) functional change. For contributed code why

Re: [PATCH] contrib/groff Queisce -Wdangling else [updated]

2013-10-27 Thread Sean Bruno
On Sat, 2013-10-26 at 11:04 -0400, Sean Bruno wrote: This adds proper braces to clear Clang warnings about dangling else statements in groff. There is no(intended) functional change. http://people.freebsd.org/~sbruno/groff_dangling_else.txt sean I've updated the patch at this link

Re: CURRENT issue with /dev/cs

2013-10-28 Thread Sean Bruno
On Mon, 2013-10-28 at 10:27 -0400, Outback Dingo wrote: cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions

libreadline rl_message() and building the same object file 6 times?

2013-10-29 Thread Sean Bruno
I *think* its safe to change this invocation of rl_message to omit the third argument, but I'm not 100%. Second, why on earth does a buildworld emit this warning 6 times? Its as though bmake things it needs to compile it repeatedly, and its not the only such time I've seen this across the tree.

Re: libreadline rl_message() and building the same object file 6 times?

2013-10-30 Thread Sean Bruno
On Wed, 2013-10-30 at 00:06 +0200, Konstantin Belousov wrote: Second, why on earth does a buildworld emit this warning 6 times? Its as though bmake things it needs to compile it repeatedly, and its not the only such time I've seen this across the tree. This probably means I don't know

Re: libreadline rl_message() and building the same object file 6 times?

2013-10-30 Thread Sean Bruno
On Wed, 2013-10-30 at 22:24 +0200, Konstantin Belousov wrote: Thank you for the explanation. Is there a trivial way to abort building all the objects or fail if one fails? Or is this done in parallel? This is done automatically, no ? Bmake seems to be more advanced in this regard, e.g.

[PATCH] Adjust binutils to quiesce -Wstring-plus-int

2013-10-30 Thread Sean Bruno
Spent some time doing string maths today. More or less, change the static char intel_syntax to an int and use it as an array index instead of doing pointer math. Sean http://people.freebsd.org/~sbruno/binutils_opcodes.txt signature.asc Description: This is a digitally signed message part

Re: Add support for Intel AMT technology on Intel Lynx Point chipset

2013-11-07 Thread Sean Bruno
On Wed, 2013-11-06 at 11:16 +0200, Dmitry Luhtionov wrote: --- /usr/src/sys/dev/uart/uart_bus_pci.c.orig2013-11-01 14:45:23.0 +0200 +++ /usr/src/sys/dev/uart/uart_bus_pci.c2013-11-04 11:15:54.0 +0200 @@ -122,6 +122,7 @@ { 0x8086, 0x8812, 0x, 0, Intel EG20T Serial

Any suggestions on how to fix this error?

2013-11-07 Thread Sean Bruno
cc: warning: argument unused during compilation: '-L/var/tmp/home/sbruno/bsd/head/lib32/usr/lib32' This shows up on buildworld on amd64. I'm not 100% clear where this comes from nor how to clean it out where it doesn't belong or if it even means anything. sean signature.asc Description: This

Re: [head tinderbox] failure on amd64/amd64

2013-11-14 Thread Sean Bruno
[...] c++ -O2 -pipe -Qunused-arguments -fstack-protector -Wsystem-headers -Werror -Wno-empty-body -Wno-string-plus-int -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter

kasserts behind invariants

2013-12-13 Thread Sean Bruno
I guess this may have been argued before, but I don't see why we would want to hide specific things like: sys/kern/subr_lock.c /* Check for double-init and zero object. */ KASSERT(!lock_initalized(lock), (lock \%s\ %p already initialized, name, lock)); If I hadn't completely missed the

Re: kasserts behind invariants

2013-12-13 Thread Sean Bruno
On Fri, 2013-12-13 at 14:43 -0800, Alfred Perlstein wrote: On 12/13/13 1:50 PM, Sean Bruno wrote: I guess this may have been argued before, but I don't see why we would want to hide specific things like: sys/kern/subr_lock.c /* Check for double-init and zero object. */ KASSERT

Re: ipmi(4)/isa woes

2011-10-12 Thread Sean Bruno
On Tue, 2011-10-11 at 15:34 -0700, Arnaud Lacombe wrote: Hi folks, I've got a machine where ipmi(4) seem to be unable to fully attach. 10-current kernel complains the following way: ipmi0: IPMI System Interface at iomem 0-0x1 on isa0 ipmi0: KCS mode found at mem 0x0 alignment 0x1 on isa

Re: panic at vm_page_wire with FreeBSD 9.0 Beta 3

2011-10-28 Thread Sean Bruno
On Fri, 2011-10-21 at 08:25 -0700, Penta Upa wrote: Attached is a test module (vmtest) and the makefile used. Uname output from the system is I only see a Makefile attached here. Can you attach the code you are using? Sean ___

9.0 NFS Installs

2011-11-07 Thread Sean Bruno
I noted that we no longer have the disc1.iso in this release. What should I use to populate a NFS rootfs for netinstalls? This was what I had been using(8.2-RELEASE) to populate NFS roots for netinstalls. This allowed you to boot up into something that was self-contained. The other ISO's seem

Re: 9.0 NFS Installs

2011-11-07 Thread Sean Bruno
On Mon, 2011-11-07 at 10:29 -0800, Nathan Whitehorn wrote: On 11/07/11 11:20, Sean Bruno wrote: I noted that we no longer have the disc1.iso in this release. What should I use to populate a NFS rootfs for netinstalls? This was what I had been using(8.2-RELEASE) to populate NFS roots

Re: 9.0-RC1 fails to boot (run_interrupt_driven_hooks: still waiting...)

2011-11-13 Thread Sean Bruno
On Sat, 2011-11-12 at 23:43 -0800, Andriy Gapon wrote: I had a Firewire card in the machine - removing it caused the problem to go away. I think that Sean has been looking for someone who can reproduce the problem and is willing to help debugging it. -- Andriy Gapon Indeed. If

Re: Remote access to HP Proliant hardware available to fix the problem with failing booting 9.0 on ciss(4), HP SmartArray P410i

2011-11-22 Thread Sean Bruno
On Tue, 2011-11-22 at 14:59 -0800, Palle Girgensohn wrote: Hi, When installing 9.0 RC1 on our HP servers, we of course wanted to use gpt intead of fdisk. However, it doesn't work. First I tried gptzfsboot, it failed with an error (see this thread:

NFS + SVN problem?

2011-11-23 Thread Sean Bruno
Not sure what this all means, but when I attempt to check out HEAD on an NFS mount in the fbsd cluster (nfs server is a netapp filer), I'm getting an odd failure error. FreeBSD bhyve.freebsd.org 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r227883: Wed Nov 23 06:08:40 PST 2011

Re: NFS + SVN problem?

2011-11-23 Thread Sean Bruno
On Wed, 2011-11-23 at 09:58 -0800, Rick Macklem wrote: I don't know if Dimitry tried this, but you could also try the nolockd option, so that byte range locking is done locally in the client and avoids the NLM. Good luck with it and please let us know how it goes, rick This seems to allow

Re: NFS + SVN problem?

2011-11-28 Thread Sean Bruno
Oh, and don't hesitate to try NFSv4. It should do the locking correctly without needing nolockd and the more testing it gets, the better.;-) rick Removing soft,intr had no effect. This, I suspect will be problematic for clusteradm@ if we start updating hosts in the cluster. Sean

Console Spam: acpi_tz0: _TMP value is absurd, ignored (-73.0C)

2011-11-30 Thread Sean Bruno
I have a Shuttle based intel box that appears to have some pretty bad ACPI implementation. Is there a good way to quiesce this spam? The console fills up with repeated warnings that never cease. FreeBSD testbox 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r228164S: Wed Nov 30 16:19:16 PST 2011

Re: Console Spam: acpi_tz0: _TMP value is absurd, ignored (-73.0C) [solved]

2011-12-01 Thread Sean Bruno
On Wed, 2011-11-30 at 15:55 -0800, Jung-uk Kim wrote: On Wednesday 30 November 2011 06:40 pm, Andriy Gapon wrote: on 01/12/2011 01:22 Sean Bruno said the following: I have a Shuttle based intel box that appears to have some pretty bad ACPI implementation. Is there a good way to quiesce

Malformed conditional (${MK_CTF} != no)

2011-12-01 Thread Sean Bruno
I've noted that this morning's svn update seems to be breaking pretty badly. Is this related to the DTRACE conf changes? [seanb@sbpi386 ~/head/sys/modules/firewire]$ make === firewire (all) /usr/home/seanb/head/sys/modules/firewire/firewire/../../../conf/kmod.mk, line 204: Malformed conditional

Re: est man page

2012-06-12 Thread Sean Bruno
On Tue, 2012-06-05 at 14:13 -0700, Sean Bruno wrote: On Tue, 2012-06-05 at 11:55 -0700, Sean Bruno wrote: allrighty, after some doc reviews by Glen, I've thwacked together a quick and dirty est(4). Any objections? http://people.freebsd.org/~sbruno/est_man.txt view via: groff -S -P-h -Wall

Re: est man page

2012-06-13 Thread Sean Bruno
se http://people.freebsd.org/~sbruno/est_man.txt Looks good. Attached a diff for some small fixes. Updated again with feedback that I've gotten. I changed the Note that est interface is automatically loaded to Note that est capabilities are automatically loaded Sean

Re: est man page

2012-06-18 Thread Sean Bruno
On Wed, 2012-06-13 at 11:06 -0700, Sean Bruno wrote: se http://people.freebsd.org/~sbruno/est_man.txt Looks good. Attached a diff for some small fixes. Updated again with feedback that I've gotten. I changed the Note that est interface is automatically loaded to Note that est

Re: Call for bge(4) testers

2012-09-19 Thread Sean Bruno
On Fri, 2012-09-14 at 14:27 -0700, YongHyeon PYUN wrote: All, There were lots of reports that stock bge(4) does not work on Dell Rx20/HP DL 360 G8. With the help of Broadcom and BCM5719/BCM5720 users I managed to address the issue but I had to touch very sensitive part of driver. Before

Re: Call for bge(4) testers

2012-09-27 Thread Sean Bruno
On Wed, 2012-09-19 at 09:44 -0700, Sean Bruno wrote: On Fri, 2012-09-14 at 14:27 -0700, YongHyeon PYUN wrote: All, There were lots of reports that stock bge(4) does not work on Dell Rx20/HP DL 360 G8. With the help of Broadcom and BCM5719/BCM5720 users I managed to address the issue

Re: Call for bge(4) testers

2012-09-28 Thread Sean Bruno
On Thu, 2012-09-27 at 17:09 -0700, Sean Bruno wrote: We have seen 2 instances of one or more of the HP machines failing and dropping off the network. however, we don't have specifics yet. It looks like this specific error was ACPI related, not BGE related. The C6 setting in the BIOS has

Re: Call for bge(4) testers

2012-10-02 Thread Sean Bruno
On Tue, 2012-10-02 at 15:59 -0700, YongHyeon PYUN wrote: Sean, do you have a box with BCM5703/5704/5714/5715 controller? I have a 5704C in an HP DL380G4 here that seems to be working. I'll have to poke around further to see what else I have lying around. bge0: HP NC7782 Gigabit Server Adapter,

Re: svn MFC to stable/8

2012-10-04 Thread Sean Bruno
On Thu, 2012-10-04 at 11:10 -0700, Rick Macklem wrote: Hi, Hopefully someone familiar with svn can help. When I try to MFC a kernel change to stable/8, it works, but I end up with tons of mergeinfo. (It looks like every directory under sys.) Does this matter or is there a trick to avoid

[CFT]hwpmc update for sandybridge-e

2012-10-04 Thread Sean Bruno
So, I did the bear minimum and kind of hacked things together without understanding precisely what I was doing, and I was able to massage the sandybridge-e CPUs into giving me some basic functions. Comments or concerns before I commit this? http://people.freebsd.org/~sbruno/pmc_sandybridge.txt

Re: [CFT]hwpmc update for sandybridge-e

2012-10-18 Thread Sean Bruno
Sure, I will separate it out. If there are no further comments, can I ask Sean to commit on my behalf? Can you do the man page to include both in the commit? Except that point seems good to me. Thanks! Fabien Thanks, Hiren I shall await your svn diff.

Re: Removing firewire support from GENERIC

2012-10-19 Thread Sean Bruno
On Fri, 2012-10-19 at 07:25 -0700, Dag-Erling Smørgrav wrote: Once more, with patch. DES Ack. I think this is sensible. Sean ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe,

Re: [CFT]hwpmc update for sandybridge-e

2012-10-19 Thread Sean Bruno
On Fri, 2012-10-19 at 00:04 -0700, hiren panchasara wrote: On Thu, Oct 18, 2012 at 10:07 AM, Sean Bruno sean...@yahoo-inc.com wrote: Sure, I will separate it out. If there are no further comments, can I ask Sean to commit on my

Re: [CFT]hwpmc update for sandybridge-e

2012-10-19 Thread Sean Bruno
On Fri, 2012-10-19 at 00:04 -0700, hiren panchasara wrote: On Thu, Oct 18, 2012 at 10:07 AM, Sean Bruno sean...@yahoo-inc.com wrote: Sure, I will separate it out. If there are no further comments, can I ask Sean to commit on my

Re: patch: hwpmc nits

2012-10-23 Thread Sean Bruno
On Mon, 2012-10-22 at 10:33 -0700, hiren panchasara wrote: On Mon, Oct 22, 2012 at 9:25 AM, Jim Harris jim.har...@gmail.com wrote: On Sun, Oct 21, 2012 at 12:19 AM, hiren panchasara hiren.panchas...@gmail.com wrote:

Re: patch: hwpmc nits

2012-10-24 Thread Sean Bruno
On Sun, 2012-10-21 at 00:19 -0700, hiren panchasara wrote: http://www.strugglingcoder.info/patches/hwpmc_nits_1.txt Fixing a few typos with this patch. Please let me know if this looks okay. Thanks, Hiren Sendinglib/libpmc/libpmc.c Sendinglib/libpmc/pmc.ivybridge.3

Is there a FreeBSD 9+ version of this?

2011-12-06 Thread Sean Bruno
http://www.freebsd.org/doc/handbook/geom-mirror.html ___ 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

Dog Food tm

2011-12-06 Thread Sean Bruno
Was trying to use gmirror(4) or zfs(4) today to get a machine in the cluster setup with s/w raid and was completely flummoxed by the intricacies of manual setup. Chances are, I just am not smart enough to wind my way though the various how tos and wiki pages that I've been browsing to get the job

Re: Dog Food tm

2011-12-08 Thread Sean Bruno
On Thu, 2011-12-08 at 02:08 -0800, Peter Maloney wrote: And what problems did you run into? More or less, trying to do gmirror(4) style mirroring on GPT partitions doesn't work. See http://www.freebsd.org/doc/handbook/geom-mirror.html for the BIG RED WARNING that says why. This guide worked

Re: NFS + SVN problem?

2011-12-13 Thread Sean Bruno
On Tue, 2011-12-13 at 07:53 -0800, Rick Macklem wrote: Dimitry Andric wrote: On 2011-11-23 19:26, Sean Bruno wrote: On Wed, 2011-11-23 at 09:58 -0800, Rick Macklem wrote: I don't know if Dimitry tried this, but you could also try the nolockd option, so that byte range locking is done

dogfooding over in clusteradm land

2011-12-14 Thread Sean Bruno
We're seeing what looks like a syncher/ufs resource starvation on 9.0 on the cvs2svn ports conversion box. I'm not sure what resource is tapped out. Effectively, I cannot access the directory under use and the converter application stalls out waiting for some resource that isn't clear. (Peter

Re: dogfooding over in clusteradm land [cvs2svn for ports]

2011-12-14 Thread Sean Bruno
On Wed, 2011-12-14 at 05:20 -0800, Sean Bruno wrote: We're seeing what looks like a syncher/ufs resource starvation on 9.0 on the cvs2svn ports conversion box. I'm not sure what resource is tapped out. Effectively, I cannot access the directory under use and the converter application stalls

Re: SVN - CVS gateway stalled?

2011-12-28 Thread Sean Bruno
On Wed, 2011-12-28 at 12:49 -0800, Michael Butler wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I noticed updates come from SVN today but haven't yet seen them in CVS. Is it busted again? Clusteradm@ can take a look at this ... I think. Sean signature.asc Description: This is a

Re: dogfooding over in clusteradm land

2012-01-03 Thread Sean Bruno
On Tue, 2012-01-03 at 04:46 -0800, Florian Smeets wrote: Yes, the patch fixes the problem. The cvs2svn run completed this time. 9132.25 real 8387.05 user 403.86 sys I did not see any significant syncer activity in top -S anymore. Thanks a lot. Florian Currently

Re: Freebsd 9.0 release and dmesg

2012-02-06 Thread Sean Bruno
On Mon, 2012-02-06 at 09:24 -0800, JD wrote: dmesg no longer outputs the kernel messages. $ dmesg $ $ which dmesg /sbin/dmesg $what /sbin/dmesg /sbin/dmesg: So, I have no idea what version of dmesg got installed. Anyone on 9.0 Release have this problem? How to fix it?

Re: projects/mfi_head to -current next week

2012-04-05 Thread Sean Bruno
On Sat, 2012-03-17 at 10:31 -0700, Alex Keda wrote: On 16.03.2012 19:39, Doug Ambrisko wrote: Hi folks, I'd like to start merging mfi(4) from projects/head_mfi into -current next week. The mfi(4) driver is stable and I don't know of any issues with it now. I fixed a few issues that I

ports/bash4 --enable-static fails

2012-05-09 Thread Sean Bruno
I'm assuming that the recent jemalloc updates have broken something subtly that is now causing static symbol compilation to fail. ports/bash4 isn't the simplest case, but its the most obvious one that is in my face. http://people.freebsd.org/~sbruno/bash4_jemalloc.txt Sean

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

est man page

2012-06-05 Thread Sean Bruno
I note that x86/cpufreq/est.c has some tuneables and I have processors that seem to be not supported by est even though they appear to have Speedstep features: p4tcc0: CPU Frequency Thermal Control on cpu0 est1: Enhanced SpeedStep Frequency Control on cpu1 est: CPU supports Enhanced Speedstep,

Re: est man page

2012-06-05 Thread Sean Bruno
On Tue, 2012-06-05 at 11:55 -0700, Sean Bruno wrote: I note that x86/cpufreq/est.c has some tuneables and I have processors that seem to be not supported by est even though they appear to have Speedstep features: p4tcc0: CPU Frequency Thermal Control on cpu0 est1: Enhanced SpeedStep

Re: Fixing clang warnings in hwpmc

2013-01-12 Thread Sean Bruno
On Mon, 2013-01-07 at 16:34 -0800, hiren panchasara wrote: http://www.strugglingcoder.info/patches/hwpmc_clang_warnings.txt A trivial patch to fix a couple of clang warnings. Thanks, Hiren Ack. compiles good. Commit in progress. Sean signature.asc Description: This is a digitally

Re: Intel 82574 issue reported on Slashdot

2013-02-11 Thread Sean Bruno
On Fri, 2013-02-08 at 10:16 -0800, Jack Vogel wrote: For those that may have run across the story on Slashdot about this NIC, here is our statement: Recently there were a few stories published, based on a blog post by an end-user, suggesting specific network packets may cause the Intel®

Re: ZFS problems

2013-02-27 Thread sean bruno
On Wed, Feb 27, 2013 at 2:44 PM, Steven Hartland kill...@multiplay.co.uk wrote: - Original Message - From: Derrick Dantavious Edwards I updated sources a couple of days ago and when I rebooted to continue to the upgrade process I received errors when I attempted to mount zfs

Re: [head tinderbox] failure on i386/i386

2013-03-24 Thread Sean Bruno
[...] cc -O2 -pipe -I/src/sbin/fsck_ffs -I/src/sbin/fsck_ffs/../mount -DRESCUE -std=gnu99 -Qunused-arguments -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-tautological-compare

Re: [head tinderbox] failure on ia64/ia64

2013-03-24 Thread Sean Bruno
On Sun, 2013-03-24 at 03:57 +, FreeBSD Tinderbox wrote: cc -O2 -pipe -I/src/sbin/fsck_ffs -I/src/sbin/fsck_ffs/../mount -DRESCUE -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/sbin/fsck_ffs/ea.c cc -O2 -pipe -I/src/sbin/fsck_ffs

Re: Kernel panic CURRENT r248596 at virtualbox-ose-kmod module load

2013-03-25 Thread sean bruno
Yes - it is correctly http://svnweb.freebsd.org/ports/head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd_VM_OBJECT_RENAME.c?r1=314797r2=315200 Ah, thank you. My patch definitely was not right and I was wondering where the kpanic on load/startup

Re: rebooting nvidia + keyboard issues

2013-04-08 Thread Sean Bruno
On Sun, 2013-03-31 at 00:25 -0700, Waitman Gobble wrote: I noticed the machine rebooting randomly every 20 seconds to 5 minutes. Disabling the nvidia driver seems to fix the problem, and I was able to update after applying ports/177459 patch. The updated nvidia driver seems to have solved the

Re: RE: rebooting nvidia + keyboard issues

2013-04-08 Thread Sean Bruno
On Wed, 2013-04-03 at 11:07 -0700, Adrian Chadd wrote: Hi, can you guys please ensure a PR is filed with all the information you've just included? the clang team would likely love to have this much information in a bug report. Thanks! adrian I've started a p/r for this as I

Re: mirror site ftp3.za.freebsd.org

2013-04-15 Thread Sean Bruno
On Mon, 2013-04-15 at 11:22 +0200, Ian FREISLICH wrote: Hi For quite some time this mirror site has been unreachable. AFAICT, my ex colleagues who used to maintain it have moved on and it's now been left unmaintained. I left there in 2004 and Mark Murray who set it up left shortly

  1   2   3   4   >