kern/144824: boot problem on USB (root partition mounting)

2010-03-17 Thread Gilles Blanc

Number: 144824
Category:   kern
Synopsis:   boot problem on USB (root partition mounting)
Confidential:   no
Severity:   non-critical
Priority:   medium
Responsible:freebsd-bugs
State:  open
Quarter:
Keywords:   
Date-Required:
Class:  sw-bug
Submitter-Id:   current-users
Arrival-Date:   Wed Mar 17 16:50:01 UTC 2010
Closed-Date:
Last-Modified:
Originator: Gilles Blanc
Release:8.0-RELEASE (current)
Organization:
Linagora
Environment:
FreeBSD freedaemon.par.lng 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Sat Nov 21 
15:02:08 UTC 2009 r...@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  
amd64
Description:
The current system on boot (file /sys/kern/vfs_mount.c) uses a queue to wait 
for devices to be initialized before mounting root (or try to do so). This 
queue is filled for instance by usb driver (using root_mount_hold function), 
so if we boot on a USB key, the function root_mount_prepare holds the root 
mount time until USB is available (that is to say the queue has be emptied by 
using root_mount_rel on all the identifiers filled by the usb driver).

Actually, it only waits for USB to be physically available, but not 
necessarily umass or scsi (scsi-da). To be more precise, the system is not 
deterministic, because to be mounted, a root partition on a USB key needs both 
umass then scsi to be initialized, and if most of the time the mount process 
works, it is because the 'root_holds' list is not empty, and threads are 
running concurrently (for example one have wired a usb key on usb0, the system 
sequentially initializes usb0 to usb7, and during that time, umass0 and da0 are 
initialized too).

Unfortunately, some servers are not that kind, and root mounting just fails 
('vfs_mountroot' function asks to 'vfs_mountroot_try' to mount USB root 
partition, which is not yet available), so we are in a situation where the 
ROOT MOUNT ERROR prompt appears, to mount our partition by hand, which is not 
very acceptable on production servers (we would have to go some kilometers just 
to type ufs:/dev/da0s1a each time we reboot...).

The problem is not blocking for most of FreeBSD users, but it prevents us to 
migrate our systems (which is quite a big problem).
How-To-Repeat:
If you have a machine presenting this problem, you can repeat it easily (it 
fails 95% of the time) ; if not (like in my development laptop), you will never 
succeed to fail.
Fix:
I have tried to add locks in umass and scsi drivers. In umass driver, it is in 
the /sys/dev/usb/storage/umass.c file, in function 'umass_attach' (in our 
supermicro server, umass has enough time to initialize, but I have been 
rigorous). In scsi driver, it is in the /sys/cam/scsi/scsi_da.c file, in 
function 'dastart', part DA_STATE_PROBE2 of the switch/case. Unfortunately, 
between this two pairs of locking/unlocking, the root mounting thread preempts 
and as the list is empty during this very short time, it tries to mount root 
partition and fails as usual. It is not possible to add a lock in umass and 
remove it in scsi, because of the API which works with pointers on the lock 
list at the removal.

So another solution has to be considered, that is what I propose with this 
patch. Simply, in the vfs_mountroot_try, I try several times, with a little 
pause between, to call the 'kernel_mount' function. The number of trials is 3 
by default, but can be customized through the new vfs.root.mounttrymax option 
in /boot/loader.conf (even set to 0, if we want to go back to the initial 
behavior). Each time the mount process fails and we can retry, a message 
appears, the thread sleeps for one second, and then try again. If it is really 
impossible to mount root, then we continue in the normal process of prompt.

Actually, there is still some problems on some USB ports (the other ones on the 
same machine work great at the first or second mounting retrial). I suspect a 
deeper problem in 'kernel_mount', because using the prompt doesn't mount the 
device, or worse can lead to page fault or locking. But my patch is enough to 
resolve the original problem as far as it is possible in the state of things.

I hope it will be reviewed and accepted as soon as possible.

Patch attached with submission follows:

--- vfs_mount.c 2010-03-17 15:30:45.0 +0100
+++ vfs_mount.c 2010-03-17 14:49:52.0 +0100
@@ -1798,6 +1806,8 @@
int error;
charpatt[32];
charerrmsg[255];
+   charnbtry;
+   int rootmounttrymax;
 
vfsname = NULL;
path= NULL;
@@ -1805,6 +1815,8 @@
ma  = NULL;
error   = EINVAL;
bzero(errmsg, sizeof(errmsg));
+   nbtry   = 0;
+   rootmounttrymax = 3;
 
if (mountfrom == NULL)
return (error); /* don't complain */
@@ -1827,7 +1839,18 @@
ma = mount_arg(ma, errmsg, errmsg, sizeof(errmsg));
ma = 

kern/144826: Add support for bcm5761,bcm5784,bcm5785 gigabyte lan

2010-03-17 Thread Jason Garrett

Number: 144826
Category:   kern
Synopsis:   Add support for bcm5761,bcm5784,bcm5785 gigabyte lan
Confidential:   no
Severity:   serious
Priority:   low
Responsible:freebsd-bugs
State:  open
Quarter:
Keywords:   
Date-Required:
Class:  change-request
Submitter-Id:   current-users
Arrival-Date:   Wed Mar 17 19:30:01 UTC 2010
Closed-Date:
Last-Modified:
Originator: Jason Garrett
Release:9-CURRENT
Organization:
Environment:
FreeBSD host.name.omitted 9.0-CURRENT FreeBSD 9.0-CURRENT #0 Tue Mar 16 
22:46:09 UTC 2010 r...@host.name.omitted:/usr/obj/usr/src/sys/XEON amd64
Description:
Support for several broadcom gigabit ethernet are not in the bge(4) driver, 
specifically bcm5761, bcm5784, bcm5785. There is a pactch floating around at 
http://nccs.christian.net/bge_bcm5784_patch.htm I will include them as .txt 
files for completeness.

I have installed and tested this patch on 8.0-RELEASE AND 9.0-CURRENT. The 
patch is working as expected. (I have the BCM5761 on a Dell T3500 workstation).

NOTE: These files were not written by me, but contact to the original author 
has gone unanswered.
How-To-Repeat:
Install any supported version of FreeBSD on a machine that utilizes one of 
these chips. Ethernet driver is not in the tree for these.
Fix:
See patches attached.

NOTE: Patches that I included are for 8 or later. 7.x patches are on the web 
page listed.

NOTE2: I can only submit one patch, where actually there are 2.

Patch attached with submission follows:

diff -u -r bge.org/if_bge.c bge/if_bge.c
--- bge.org/if_bge.c2009-06-26 11:45:06.0 +
+++ bge/if_bge.c2009-07-27 17:02:40.0 +
@@ -34,7 +34,8 @@
 #include sys/cdefs.h
 __FBSDID($FreeBSD: src/sys/dev/bge/if_bge.c,v 1.226 2009/06/26 11:45:06 
rwatson Exp $);
 
-/*
+/* Patch version 1 
+ * adapted from openBSD patch to add support for BCM5761,5784,5785
  * Broadcom BCM570x family gigabit ethernet driver for FreeBSD.
  *
  * The Broadcom BCM5700 is based on technology originally developed by
@@ -170,6 +171,7 @@
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5720 },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5721 },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5722 },
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM5723 },/*added 
by patch*/
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5750 },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5750M },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5751 },
@@ -184,10 +186,18 @@
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5754M },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5755 },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5755M },
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM5756 },
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM5761 },/*added 
by patch*/
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM5761E },   /*added 
by patch*/
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM5761S },   /*added 
by patch*/
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM5761SE },  /*added 
by patch*/
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM5764 },/*added 
by patch*/
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5780 },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5780S },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5781 },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5782 },
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM5784 },/*added 
by patch*/
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM5785 },/*added 
by patch*/
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5786 },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5787 },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5787M },
@@ -198,6 +208,10 @@
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5903M },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5906 },
{ BCOM_VENDORID,BCOM_DEVICEID_BCM5906M },
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM57720 },   /*added 
by patch*/
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM57760 },   /*added 
by patch*/
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM57780 },   /*added 
by patch*/
+   { BCOM_VENDORID,BCOM_DEVICEID_BCM57790 },   /*added 
by patch*/
 
{ SK_VENDORID,  SK_DEVICEID_ALTIMA },
 
@@ -271,6 +285,10 @@
{ BGE_CHIPID_BCM5755_A1,BCM5755 A1 },
{ BGE_CHIPID_BCM5755_A2,BCM5755 A2 },
{ BGE_CHIPID_BCM5722_A0,BCM5722 A0 },
+   { BGE_CHIPID_BCM5761_A0,BCM5761 A0 }, /*added by 
patch*/
+   { BGE_CHIPID_BCM5761_A1,BCM5761 A1 }, /*added by 
patch*/
+   { BGE_CHIPID_BCM5784_A0,BCM5784 A0 }, /*added by 
patch*/
+   { BGE_CHIPID_BCM5784_A1,BCM5784 A1 }, /*added by 
patch*/
/* 5754 and 5787 share the same 

Check Your Head - Where's Your Attitude of Gratitude?

2010-03-17 Thread TEEN TRUTH REPORT
Having trouble viewing this email?
Click here
http://campaign.constantcontact.com/render?v=001u8SjZbUCyfOcc5V8xIurowVjG5EA86t0nfb-0lw3oHAcQGY4jBozzJupjzHSrSv-DvHaZS4ivC4HD7QRhDO2HekoySg_egogyp_9R0CPAQuOHBP11ba3dQ%3D%3D


Teen Truth Live 
[http://r20.rs6.net/tn.jsp?et=1103194684398s=1080e=001CNQSTw856GXP_spxwpO-kHRKw1cltGKK-Jyj-bUKb8IPMNBSgeFcLxXIENWFjXBTmHL0n49S_nAZDtUchy668a9qYiZGgF6Ih_Opk7yWQqypEhG6PIvAWw==]


TEEN TRUTH REPORT

March 17, 2010

CONTENTS

News
Conferences 
Awareness Week
Testimonial
Featured Film
What's Up With Your Attitude?
TT: Voices - I Am Grateful
Simple Truth
TT: The Best of TTN
TTL: Pic from the Road



NEWS

Here's the latest from our
TEEN TRUTH newsroom:

Sacramento Film Fest 2010 
[http://r20.rs6.net/tn.jsp?et=1103194684398s=1080e=001CNQSTw856GUV75UCfPMd5Mofm7gRfTa-9KQ5jI8FDmPHnvJhYkMUyren4HChgndo7bCfJJ-BRVSGdbu9x9TgFj0Cq6JiJAHXhoNGbM17cBhhNiIQxc_YdUiPdZ6sLx_9RKPa0kKVMGU=]

The Sacramento International Film Festival will be presenting the award-winning 
film TEEN TRUTH: AN INSIDE LOOK AT BODY IMAGE during their Kick Off  Preview 
Day
at Sacramento State University on April 11 at 1pm.
Click here 
[http://r20.rs6.net/tn.jsp?et=1103194684398s=1080e=001CNQSTw856GXKdv3qChh89qPuorL_nOxXGfdRtNAjsybTcfwv43aJsZC2Ons_CZo1ov8QcixRuDBBKo96cIFIwnegKpKj5uUWlpEkweY8vIIa1uvJVWRwyxa_s9G4iSiYT_mYEvmbuE-cO63XG8V3U2jNKhfqyAyMiav4gwy1HDXlVY8AcJ6e99TDyVUueqkOsz1mPEl9LYIViQyNYiXJjeJLiGib3Pzv]
for more info!


CONFERENCES

TEEN TRUTH will be presenting at these upcoming conferences:

Boost 2010 
[http://r20.rs6.net/tn.jsp?et=1103194684398s=1080e=001CNQSTw856GWaxkK96xgoiR_QPkPRpa4G8pgWQElfk8SDntEJt4IR5GLEfUEjoPTb7ultSNmq3oTFYGsRAYgKgXLaW9jSVwAd92yBOnuuWaCpm5kKjfCx9izXqA9VAJUr]

BOOST Conference 
[http://r20.rs6.net/tn.jsp?et=1103194684398s=1080e=001CNQSTw856GWaxkK96xgoiR_QPkPRpa4G8pgWQElfk8SDntEJt4IR5GLEfUEjoPTb7ultSNmq3oTFYGsRAYgKgXLaW9jSVwAd92yBOnuuWaCpm5kKjfCx9izXqA9VAJUr]
April 28-May 1
Palm Springs, California
Rachel's Challenge 
[http://r20.rs6.net/tn.jsp?et=1103194684398s=1080e=001CNQSTw856GV_rz-XW8bj7FHdFgiYqXZB8pW9trqowFG7QfPDIvdXpThogZH90AttK0JPEL3DEwzBl6mopn5CkC53x-zU8Pisnmz_C3FCuD8idDYlwzJJmFh2f8ZQFPhGD3UeEN3J3BJF1usOS-XULMtuN3GNyktWPD1_9FGSv_xvkdthjDNiAQ==]
Rachel's Challenge Summit 
[http://r20.rs6.net/tn.jsp?et=1103194684398s=1080e=001CNQSTw856GV_rz-XW8bj7FHdFgiYqXZB8pW9trqowFG7QfPDIvdXpThogZH90AttK0JPEL3DEwzBl6mopn5CkC53x-zU8Pisnmz_C3FCuD8idDYlwzJJmFh2f8ZQFPhGD3UeEN3J3BJF1usOS-XULMtuN3GNyktWPD1_9FGSv_xvkdthjDNiAQ==]
June 23-26, 2010
Denver, Colorado

The Principals' Partnership 
[http://r20.rs6.net/tn.jsp?et=1103194684398s=1080e=001CNQSTw856GVe8-2xz_qGOkVBIdUQvoC7vvWLT_OOO38x9F-Jvc87_1xWB913kdQbmfOyUpEUwrP3SBHREVmQx9Pl6csyC-PrSjzSNrPahGinDVXdxtuG1W9QfxZrTR-m]

The Principals' Partnership Conference 
[http://r20.rs6.net/tn.jsp?et=1103194684398s=1080e=001CNQSTw856GVHgF8z6Axh9TOX7nPWE34wocS0dWWSicAgsuJfXF0qyXFfYw-PDzdcFwyVUzNFvMBd_o9uawkv9sapTX24XE6BSU0H1yVlb4f1CuRZxvXBuSI4Uy0lqz6tUe5slVnOnjZ5e20XnmasWg==]
July 11-14, 2010
Palm Springs, California


YOUTH VIOLENCE
PREVENTION WEEK

March 22-26 is Youth Violence Prevention Awareness Week
and a great opportunity to engage your students in powerful dialog about their 
lives,
futures and how they can commit to creating positive change.
Our TEEN TRUTH LIVE:
BULLY  SCHOOL VIOLENCE program gives students a safe outlet to share their 
stories
and
an empowering platform to develop solutions that prevent youth violence.
Contact us 
[http://r20.rs6.net/tn.jsp?et=1103194684398s=1080e=001CNQSTw856GVnb5gyXE9lu9TkydgHqIqwHbsm4AjPn5Hxur5QkBm9YD7heRS_CTRGfVdr8JxuhePwVDmsXjZskpK_mMCklPP55N5IrGZV1zby5N12C18QIY6g_mrdx1fv]
to bring TEEN TRUTH
to your school!


TESTIMONIAL

TEEN TRUTH LIVE:
BULLY  SCHOOL VIOLENCE
Thank You Teen Truth! Everyone used to make fun
of others and I would always get called Goth Girl or Emo because I
wore black and kids would think I was a creep. After your TEEN TRUTH LIVE:
BULLY  SCHOOL VIOLENCEpresentation everyone gets to know me instead of just 
judging
at
first.
I have made many new friends and I love it how everyone no longer has to worry 
about
all the pressure.
Thank You!!!
- Hannah Elaine Williams,
VC Middle School


FEATURED FILM

TEEN TRUTH filmmaking team, Erahm Christopher and JC Pohl, recommend the 
following
film because it made them think
THE UNITED STATES OF LELAND
Directed by:
Matthew Ryan Hoge
Written by:
Matthew Ryan Hoge
Set in a mundane neighborhood in California, this compelling drama made us THINK
 how easily a teen's negative perspective and 

Re: bin/144139: x11/xscreensaver-gnome can't build because of bug in GCC 4.2

2010-03-17 Thread mezz
Synopsis: x11/xscreensaver-gnome can't build because of bug in GCC 4.2

Responsible-Changed-From-To: gnome-freebsd-bugs
Responsible-Changed-By: mezz
Responsible-Changed-When: Wed Mar 17 20:11:58 UTC 2010
Responsible-Changed-Why: 
Not our bug anymore.

http://www.freebsd.org/cgi/query-pr.cgi?pr=144139
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org


Re: kern/144826: [patch] Add support for bcm5761, bcm5784, bcm5785 gigabyte lan

2010-03-17 Thread brucec
Old Synopsis: Add support for bcm5761,bcm5784,bcm5785 gigabyte lan
New Synopsis: [patch] Add support for bcm5761,bcm5784,bcm5785 gigabyte lan

Responsible-Changed-From-To: freebsd-bugs-freebsd-net
Responsible-Changed-By: brucec
Responsible-Changed-When: Wed Mar 17 21:46:41 UTC 2010
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=144826
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org


Re: conf/144842: ipv6_default_interface causes route complaints from -cloning

2010-03-17 Thread hrs
Synopsis: ipv6_default_interface causes route complaints from -cloning

Responsible-Changed-From-To: freebsd-bugs-hrs
Responsible-Changed-By: hrs
Responsible-Changed-When: Thu Mar 18 02:03:46 UTC 2010
Responsible-Changed-Why: 
I'll handle this.

http://www.freebsd.org/cgi/query-pr.cgi?pr=144842
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org


kern/144843: [firewire] fwcontrol(8) -S causes kernel panic

2010-03-17 Thread Dieter

Number: 144843
Category:   kern
Synopsis:   [firewire] fwcontrol(8) -S causes kernel panic
Confidential:   no
Severity:   critical
Priority:   medium
Responsible:freebsd-bugs
State:  open
Quarter:
Keywords:   
Date-Required:
Class:  sw-bug
Submitter-Id:   current-users
Arrival-Date:   Thu Mar 18 02:30:01 UTC 2010
Closed-Date:
Last-Modified:
Originator: Dieter
Release:8.0
Organization:
Environment:
8.0 RELEASE   amd64
Description:
FreeBSD 8.0
amd64
fwohci1: NEC uPD72871/2 mem 0xfdeff000-0xfdef irq 19 at device 8.0 on pci2

The command
/usr/sbin/fwcontrol -u 1 -S  file.dv
quickly and reproducably panics the kernel.
4 attempts - 4 panics.

Panic #1: I wasn't expecting the panic the first time,
so by the time I got to the console the lovely firmware
had already scribbled all over the panic (I assume)
message.

==

Panic #2: Output of fwcontrol:

NTSC
012

On the console:

Fatal trap 12: page fault while in kernel mode
cpuid = 0; apic id = 00
fault virtual address   = 0x4b631d1411d0
fault code  = supervisor read data, page not present
instruction pointer = 0x20:0x80857d67
stack pointer   = 0x28:0xff8040677830
frame pointer   = 0x28:0xff8040677860
code segment= base 0x0, limit 0xf, type 0x1b
= DPL 0, pres 1, long 1, def32 0, gran 1
processor eflags= interrupt enabled, resume, IOPL = 0
current process = 2177 (fwcontrol)
trap number = 12
panic: page fault
cpuid = 0
Uptime: 7m28s
Cannot dump. Device not defined or unavailable.
Automatic reboot in 15 seconds - press a key on the console to abort

==

Panic #3: No output from fwcontrol this time.

On the console:

kernel trap 9 with interrupts disabled


Fatal trap 9: general protection fault while in kernel mode
cpuid = 0; apic id = 00
instruction pointer = 0x20:0x80846e63
stack pointer   = 0x28:0xff80406db880
frame pointer   = 0x28:0xff80406db8e0
code segment= base 0x0, limit 0xf, type 0x1b
= DPL 0, pres 1, long 1, def32 0, gran 1
processor eflags= resume, IOPL = 0
current process = 2156 (fwcontrol)
trap number = 9
panic: general protection fault
cpuid = 0
Uptime: 4m51s


HUNG  Had to press reset.

==

Panic #4: this time in single user mode.  Userlnd was
still scribling on the screen, after the page fault,
but it is another trap 12: page fault while in kernel mode,
probably the same as #2.

==

Using a FreeBSD 7.1 binary of fwcontrol with 8.0 kernel does not cause a panic.

Developers please note: you do NOT need a firewire device
to receive the DV data.  All you need is a firewire controller
and a DV file.  If you don't have a DV file, ffmpeg can transcode
mpeg to DV.  The file doesn't need to be very long, the panic
happens in less than one second.

The good news: it should be easy and fast to reproduce.

How-To-Repeat:
# fwcontrol -S file.dv

Fix:
Workaround: use 7.1 binary of fwcontrol(8).


Release-Note:
Audit-Trail:
Unformatted:
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org


kern/144844: souce in svn in 8/stable branch different from shipped source - causing PPP errors with mpd

2010-03-17 Thread Gabriel Brinton

Number: 144844
Category:   kern
Synopsis:   souce in svn in 8/stable branch different from shipped source 
- causing PPP errors with mpd
Confidential:   no
Severity:   critical
Priority:   low
Responsible:freebsd-bugs
State:  open
Quarter:
Keywords:   
Date-Required:
Class:  sw-bug
Submitter-Id:   current-users
Arrival-Date:   Thu Mar 18 03:20:00 UTC 2010
Closed-Date:
Last-Modified:
Originator: Gabriel Brinton
Release:8.0-stable
Organization:
Environment:
Description:

The NGM_TTY_COOKIE value in ng_tty.h in svn is set at 1226109660
/stable/8/sys/netgraph/ng_tty.h
http://svn.freebsd.org/viewvc/base/head/sys/netgraph/ng_tty.h?annotate=1847
60#l50

50  mav 184760  #define NGM_TTY_COOKIE   1226109660
51  julian  52419   
52   /* Default hot char */
53   #define NG_TTY_DFL_HOTCHAR 0x7e/* PPP flag byte */

However, the value in the actual source file shipped with 8.0-stable i386 is 
something different. 

This is causing errors in the mpd program (v 5.5 and possibly others) which 
expects the value to be as reported in svn.

How-To-Repeat:
No need to repeat. Discrepancy between released code and what source tree 
reports as released.
Fix:
update code to reflect svn.

Release-Note:
Audit-Trail:
Unformatted:
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org


Re: kern/144843: [firewire] [panic] fwcontrol(8) -S causes kernel panic

2010-03-17 Thread linimon
Old Synopsis: [firewire] fwcontrol(8) -S causes kernel panic
New Synopsis: [firewire] [panic] fwcontrol(8) -S causes kernel panic

Responsible-Changed-From-To: freebsd-bugs-freebsd-firewire
Responsible-Changed-By: linimon
Responsible-Changed-When: Thu Mar 18 04:20:49 UTC 2010
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=144843
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org


Re: kern/144844: [netgraph] souce in svn in 8/stable branch different from shipped source - causing PPP errors with mpd

2010-03-17 Thread linimon
Old Synopsis: souce in svn in 8/stable branch different from shipped source - 
causing PPP errors with mpd
New Synopsis: [netgraph] souce in svn in 8/stable branch different from shipped 
source - causing PPP errors with mpd

Responsible-Changed-From-To: freebsd-bugs-freebsd-net
Responsible-Changed-By: linimon
Responsible-Changed-When: Thu Mar 18 04:21:55 UTC 2010
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=144844
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org


Re: kern/66225: [netgraph] [patch] extend ng_eiface(4) control messages

2010-03-17 Thread linimon
Synopsis: [netgraph] [patch] extend ng_eiface(4) control messages

Responsible-Changed-From-To: freebsd-bugs-freebsd-net
Responsible-Changed-By: linimon
Responsible-Changed-When: Thu Mar 18 04:24:15 UTC 2010
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=66225
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org


Re: kern/82881: [netgraph] [panic] ng_fec(4) causes kernel panic after interface detach

2010-03-17 Thread linimon
Synopsis: [netgraph] [panic] ng_fec(4) causes kernel panic after interface 
detach

Responsible-Changed-From-To: freebsd-bugs-freebsd-net
Responsible-Changed-By: linimon
Responsible-Changed-When: Thu Mar 18 04:25:10 UTC 2010
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=82881
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org


Re: kern/87421: [netgraph] [panic]: ng_ether + ng_eiface + if_bridge

2010-03-17 Thread linimon
Synopsis: [netgraph] [panic]: ng_ether + ng_eiface + if_bridge

Responsible-Changed-From-To: freebsd-bugs-freebsd-net
Responsible-Changed-By: linimon
Responsible-Changed-When: Thu Mar 18 04:25:38 UTC 2010
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=87421
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org


Re: kern/102540: [netgraph] [patch] supporting vlan(4) by ng_fec(4)

2010-03-17 Thread linimon
Synopsis: [netgraph] [patch] supporting vlan(4) by ng_fec(4)

Responsible-Changed-From-To: freebsd-bugs-freebsd-net
Responsible-Changed-By: linimon
Responsible-Changed-When: Thu Mar 18 04:26:07 UTC 2010
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=102540
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org


Re: kern/106444: [netgraph] [panic] Kernel Panic on Binding to an ip to a virtual atm interface(ng_atmpif)

2010-03-17 Thread linimon
Old Synopsis: [netgraph] Kernel Panic on Binding to an ip to a virtual atm 
interface(ng_atmpif)
New Synopsis: [netgraph] [panic] Kernel Panic on Binding to an ip to a virtual 
atm interface(ng_atmpif)

Responsible-Changed-From-To: freebsd-bugs-freebsd-net
Responsible-Changed-By: linimon
Responsible-Changed-When: Thu Mar 18 04:26:27 UTC 2010
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=106444
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to freebsd-bugs-unsubscr...@freebsd.org