Re: misc/185138: makefs doesn't record serial numbers in rock ridge extensions

2013-12-24 Thread marius
Synopsis: makefs doesn't record serial numbers in rock ridge extensions

Responsible-Changed-From-To: freebsd-bugs->marius
Responsible-Changed-By: marius
Responsible-Changed-When: Tue Dec 24 07:57:31 UTC 2013
Responsible-Changed-Why: 
grab

http://www.freebsd.org/cgi/query-pr.cgi?pr=185138
___
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"


bin/185153: ipfilter Makefile error

2013-12-24 Thread Andrew White

>Number: 185153
>Category:   bin
>Synopsis:   ipfilter Makefile error
>Confidential:   no
>Severity:   non-critical
>Priority:   low
>Responsible:freebsd-bugs
>State:  open
>Quarter:
>Keywords:   
>Date-Required:
>Class:  sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Dec 24 11:50:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator: Andrew White
>Release:freebsd 10 rc2
>Organization:
>Environment:
FreeBSD fbuilder 10.0-RC2 FreeBSD 10.0-RC2 #0 r259404: Sun Dec 15 11:45:13 UTC 
2013 r...@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC  i386

>Description:
/usr/src/contrib/ipfilter/Makefile doesn't handle double digits in freebsd 
version

freebsd:
make freebsd`uname -r|cut -c1`

needs to be more portable like

freebsd:
make freebsd`uname -r|cut -d'.' -f1`
>How-To-Repeat:
# make freebsd
make freebsd`uname -r|cut -c1`
make[1]: don't know how to make freebsd1. Stop

make[1]: stopped in /usr/src/contrib/ipfilter
*** Error code 2

Stop.
make: stopped in /usr/src/contrib/ipfilter

>Fix:
update Makefile to get version number up to '.'

freebsd:
make freebsd`uname -r|cut -d'.' -f1`

>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"


misc/185156: Graphical console on 10-RC locks up on heavy writing

2013-12-24 Thread Mark Martinec

>Number: 185156
>Category:   misc
>Synopsis:   Graphical console on 10-RC locks up on heavy writing
>Confidential:   no
>Severity:   non-critical
>Priority:   low
>Responsible:freebsd-bugs
>State:  open
>Quarter:
>Keywords:   
>Date-Required:
>Class:  sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Dec 24 13:50:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator: Mark Martinec
>Release:stable/10 (= 10-RC2)
>Organization:
J. Stefan Institute
>Environment:
FreeBSD xxx.ijs.si 10.0-PRERELEASE FreeBSD 10.0-PRERELEASE #0 r259614: Thu Dec 
19 18:45:02 CET 2013 m...@xxx.ijs.si:/usr/obj/usr/src/sys/SIESTA  amd64
>Description:
Copying a topic from the freebsd-stable ML:
  http://lists.freebsd.org/pipermail/freebsd-stable/2013-December/076571.html
  http://lists.freebsd.org/pipermail/freebsd-stable/2013-December/076573.html
submitted here so as not to be forgotten:

Mark Martinec wrote on 2013-12-23:

FreeBSD amd64, recent stable/10:
When running some task on a graphical console window
and that task writes lots of output to a console, the
console gets stuck after some time (like 20 minutes),
output stops, keyboard appears unresponsive, alt-ctrl-Fn
is unable to switch consoles - but the machine seems
otherwise sane: I can log in over ssh, file system and
processes are healthy, CPU not busy.

This was first noticed trying to rebuild kde from
ports in a console window. Same happened when bulk
updating packages from a remote site and the pkg update
was busily writing its output to a console.

The same heavy tasks (e.g. ports rebuild) can run
just fine in an ssh session, or in a konsole / xterm.

As a final proof, I tried a perl one-liner which
writes a line (a count and some text) ten times per
second: it manages to screw up the console window
in about 6 minutes.

Interestingly, while the console output is stuck
and I blindly type a command on a keyboard (no echo),
then run a shutdown from another (ssh) session,
the console output gets unstuck during shutdown,
rapidly displays the missing lines, including the
echo of a command typed blindly previously, along
with its output.

Btw, this never happened on this machine while it was
running 9.2 or older versions.



Adrian Chadd wrote on 2013-12-23:

I see this when the kernel is outputting debugging .. the console can
quickly lock up exactly how you describe. I've never figured out why
though. :(

>How-To-Repeat:
On a console run any program that writes lots of output,
e.g. the following perl one-liner:

perl -e '@a=("a".."z","0".."9"); for (;;) {
  printf("%d %s %s\n", ++$n, join("",@a), scalar localtime);
  push(@a, shift @a); select(undef,undef,undef,0.1) }'
>Fix:


>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/185148: [ip6] [patch] Cleanup ip6_mroute.c

2013-12-24 Thread linimon
Old Synopsis: Cleanup ip6_mroute.c
New Synopsis: [ip6] [patch] Cleanup ip6_mroute.c

Responsible-Changed-From-To: freebsd-bugs->freebsd-net
Responsible-Changed-By: linimon
Responsible-Changed-When: Tue Dec 24 16:04:11 UTC 2013
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=185148
___
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"


misc/185163: [UPDATE] dns/knot: update to 1.3.4 and many fixes

2013-12-24 Thread Mark Felder

>Number: 185163
>Category:   misc
>Synopsis:   [UPDATE] dns/knot: update to 1.3.4 and many fixes
>Confidential:   no
>Severity:   non-critical
>Priority:   low
>Responsible:freebsd-bugs
>State:  open
>Quarter:
>Keywords:   
>Date-Required:
>Class:  sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Dec 24 16:10:01 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator: Mark Felder
>Release:
>Organization:
>Environment:
>Description:
- update knot to 1.3.4
- rc script wasn't working at all
- rc script has many improvements, including checking config before starting
- fix rc script to pass Clint
- rename rc script "knotd" to "knot"; it should match PROVIDES and be 
consistent -- knot_enable="YES", service knot, /usr/local/etc/rc.d/knot, etc
- add a knot user/group to run under, UID/GID of 553
- build with rundir and datadir defined to /var/run/knot and /var/db/knot
- don't let knot install datadir and rundir itself; our rc script does this for 
us
- fix comparison syntax in pkg-plist for knot.conf and knot.sample.conf


now knot is ready to be used in production.


Thanks!
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: UIDs
===
--- UIDs(revision 335567)
+++ UIDs(working copy)
@@ -179,6 +179,7 @@
 redis:*:535:535::0:0:Redis Daemon:/nonexistent:/usr/sbin/nologin
 _flowd:*:542:542::0:0:flowd privilege separation 
user:/var/empty:/usr/sbin/nologin
 ejabberd:*:543:543::0:0:ejabberd pseudo user:/var/spool/ejabberd:/bin/sh
+knot:*:553:553::0:0:Knot DNS:/nonexistent:/usr/sbin/nologin
 qtss:*:554:554::0:0:Darwin Streaming Server:/nonexistent:/usr/sbin/nologin
 ircdru:*:555:555::0:0:Russian hybrid IRC server:/nonexistent:/bin/sh
 messagebus:*:556:556::0:0:D-BUS Daemon User:/nonexistent:/usr/sbin/nologin
Index: GIDs
===
--- GIDs(revision 335567)
+++ GIDs(working copy)
@@ -171,6 +171,7 @@
 redis:*:535:
 _flowd:*:542:
 ejabberd:*:543:
+knot:*:553:
 qtss:*:554:
 ircdru:*:555:
 messagebus:*:556:
Index: dns/knot/Makefile
===
--- dns/knot/Makefile   (revision 335567)
+++ dns/knot/Makefile   (working copy)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=  knot
-DISTVERSION=   1.3.3
+DISTVERSION=   1.3.4
 CATEGORIES=dns ipv6
 MASTER_SITES=  https://secure.nic.cz/files/knot-dns/ \
http://dns-lab.com/downloads/knot-dns/
@@ -22,20 +22,26 @@
 USE_OPENSSL=   yes
 GNU_CONFIGURE= yes
 
+CONFIGURE_ARGS+=--with-storage=/var/db/knot
+CONFIGURE_ARGS+=--with-rundir=/var/run/knot
+
 SUB_FILES= pkg-message
 
-USE_RC_SUBR=   ${PORTNAME}d
+USE_RC_SUBR=   ${PORTNAME}
 
 INFO=  knot
 
 PORTDOCS=  AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS
 
-OPTIONS_DEFINE=DOCS
+USERS= knot
+GROUPS=knot
 
+SUB_LIST+= USERS="${USERS}" GROUPS="${GROUPS}"
+
 post-install:
-   @${MKDIR} ${STAGEDIR}${ETCDIR}
+   ${MKDIR} ${STAGEDIR}${ETCDIR}
${INSTALL_DATA} ${WRKSRC}/samples/knot.sample.conf ${STAGEDIR}${ETCDIR}
-   @${MKDIR} ${STAGEDIR}${DOCSDIR}
+   ${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/
 
 .include 
Index: dns/knot/distinfo
===
--- dns/knot/distinfo   (revision 335567)
+++ dns/knot/distinfo   (working copy)
@@ -1,2 +1,2 @@
-SHA256 (knot-1.3.3.tar.gz) = 
70f5237871a92cd8a777c73b80b6ac339212ea084d4adfaf314388be704027b4
-SIZE (knot-1.3.3.tar.gz) = 1148233
+SHA256 (knot-1.3.4.tar.gz) = 
0e15fb93de9eb2b8cb5d25c2239566462858125cb1b8455fc744835589212399
+SIZE (knot-1.3.4.tar.gz) = 1208147
Index: dns/knot/files/knot.in
===
--- dns/knot/files/knot.in  (revision 335567)
+++ dns/knot/files/knot.in  (working copy)
@@ -18,33 +18,39 @@
 name=knot
 rcvar=knot_enable
 
-extra_commands="reload"
-reload_cmd="${name}_reload"
-status_cmd="${name}_status"
-stop_cmd="${name}_stop"
-
 load_rc_config ${name}
 
-: ${knot_enable:="NO"}
+: ${knot_enable:=NO}
 : ${knot_config="%%PREFIX%%/etc/knot/knot.conf"}
 
-command=%%PREFIX%%/sbin/${name}c
-procname=%%PREFIX%%/sbin/${name}d
-pidfile=/var/run/${name}.pid
+command=%%PREFIX%%/sbin/knotd
+command_args="-c ${knot_config} -d"
+control=%%PREFIX%%/sbin/knotc
+pidfile=/var/run/knot/knot.pid
 
-command_args="-c ${knot_config} -w start"
 required_files=${knot_config}
 
-knot_reload() {
+extra_commands=reload
+reload_cmd="${name}_reload"
+start_precmd="${name}_prestart"
+
+knot_prestart()
+{
+   if [ ! -d /var/run/knot ]; then
+   install -d -o %%USERS%% -g %%GROUPS%% /var/run/knot
+   fi
+   
+   if [ ! -d /var/db/knot ]; then
+   install -d -o %%USERS%% -g %%GROUPS%% /var/db/knot
+   fi
+
+   ${con

Re: misc/185163: [UPDATE] dns/knot: update to 1.3.4 and many fixes

2013-12-24 Thread feld
Synopsis: [UPDATE] dns/knot: update to 1.3.4 and many fixes

Responsible-Changed-From-To: freebsd-bugs->feld
Responsible-Changed-By: feld
Responsible-Changed-When: Tue Dec 24 16:36:11 UTC 2013
Responsible-Changed-Why: 
I'll take it.

http://www.freebsd.org/cgi/query-pr.cgi?pr=185163
___
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"


Current problem reports

2013-12-24 Thread Jean Palley
I've tried 3 times to send a card,and each time it did not work! The notice 
said "Internal Problem Report". What
does that mean? I can't seem to send a card today! Please advise.Thank you.
Jean M. Palley
jfmp1...@sbcglobal.net
___
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/185170: Can no longer enable sbp without fwe/fwip

2013-12-24 Thread Devin Teske

>Number: 185170
>Category:   kern
>Synopsis:   Can no longer enable sbp without fwe/fwip
>Confidential:   no
>Severity:   non-critical
>Priority:   low
>Responsible:freebsd-bugs
>State:  open
>Quarter:
>Keywords:   
>Date-Required:
>Class:  sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Dec 25 00:30:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator: Devin Teske
>Release:FreeBSD 9.2-RELEASE amd64
>Organization:
FIS Global, Inc.
>Environment:
FreeBSD blackford.shxd.cx 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 
26 22:50:31 UTC 2013 r...@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC 
 amd64

>Description:
Trying to build a kernel with:
   include GENERIC
   device sbp
   nodevice fwe
   nodevice fwip

linking kernel.debug
sbp.o: In function `sbp_write_cmd_locked':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:1336: 
undefined reference to `fw_xfer_alloc_buf'
sbp.o: In function `sbp_agent_reset':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:1150: 
undefined reference to `fw_asyreq'
sbp.o: In function `sbp_free_sdev':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:2127: 
undefined reference to `fwdma_free'
sbp.o: In function `sbp_free_target':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:2149: 
undefined reference to `fw_xfer_free_buf'
sbp.o: In function `sbp_post_explore':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:832: 
undefined reference to `firewire_phydma_enable'
sbp.o: In function `sbp_alloc_lun':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:462: 
undefined reference to `crom_init_context'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:475: 
undefined reference to `crom_next'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:466: 
undefined reference to `crom_search_key'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:525: 
undefined reference to `crom_init_context'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:597: 
undefined reference to `crom_next'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:529: 
undefined reference to `crom_search_key'
sbp.o: In function `sbp_post_explore':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:866: 
undefined reference to `crom_has_specver'
sbp.o: In function `sbp_probe_lun':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:668: 
undefined reference to `crom_init_context'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:670: 
undefined reference to `crom_search_key'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:671: 
undefined reference to `crom_next'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:672: 
undefined reference to `crom_parse_text'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:677: 
undefined reference to `crom_next'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:674: 
undefined reference to `crom_search_key'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:680: 
undefined reference to `crom_search_key'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:685: 
undefined reference to `crom_search_key'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:686: 
undefined reference to `crom_next'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:687: 
undefined reference to `crom_parse_text'
sbp.o: In function `sbp_alloc_lun':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:564: 
undefined reference to `fwdma_malloc'
sbp.o: In function `sbp_alloc_target':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:633: 
undefined reference to `crom_init_context'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:634: 
undefined reference to `crom_search_key'
sbp.o: In function `sbp_probe_target':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:730: 
undefined reference to `crom_has_specver'
sbp.o: In function `sbp_xfer_free':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:918: 
undefined reference to `fw_xfer_unload'
sbp.o: In function `sbp_detach':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:2187: 
undefined reference to `fw_bindremove'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:2188: 
undefined reference to `fw_xferlist_remove'
sbp.o: In function `sbp_attach':
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:1978: 
undefined reference to `firewire_phydma_enable'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewire/sbp.c:2054: 
undefined reference to `fw_xferlist_add'
/usr/src/sys/amd64/compile/SYNAPSE-amd64/../../../dev/firewi

Re: kern/185170: Can no longer enable sbp without fwe/fwip

2013-12-24 Thread dteske
Synopsis: Can no longer enable sbp without fwe/fwip

State-Changed-From-To: open->closed
State-Changed-By: dteske
State-Changed-When: Wed Dec 25 00:45:12 UTC 2013
State-Changed-Why: 
Turns out we removed `device firewire' from the GENERIC config
(from which we were relying upon; It should be noted that the MFH to
stable/9 -- http://svnweb.freebsd.org/base?view=revision&revision=246321
does not appear to be documented in UPDATING, leaving everyone to learn
this ``the hard way'')

http://www.freebsd.org/cgi/query-pr.cgi?pr=185170
___
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: bin/185153: ipfilter Makefile error

2013-12-24 Thread glebius
Synopsis: ipfilter Makefile error

State-Changed-From-To: open->closed
State-Changed-By: glebius
State-Changed-When: Wed Dec 25 01:13:17 UTC 2013
State-Changed-Why: 
Andrew,

you are not expected to run 'make' anywhere in /usr/src/contrib. The FreeBSD
build doesn't use these makefiles.

The issue you are pointing at is correct, but it should be filed not in
FreeBSD problem report database, but directly to ipfilter author.

http://www.freebsd.org/cgi/query-pr.cgi?pr=185153
___
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/184419: carp does not detect member when using vlan

2013-12-24 Thread glebius
Synopsis: carp does not detect member when using vlan

Responsible-Changed-From-To: freebsd-bugs->glebius
Responsible-Changed-By: glebius
Responsible-Changed-When: Wed Dec 25 01:28:36 UTC 2013
Responsible-Changed-Why: 
Mine.

http://www.freebsd.org/cgi/query-pr.cgi?pr=184419
___
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/183997: route-to rule passes traffic when no targets are specified

2013-12-24 Thread glebius
Synopsis: route-to rule passes traffic when no targets are specified

Responsible-Changed-From-To: freebsd-bugs->glebius
Responsible-Changed-By: glebius
Responsible-Changed-When: Wed Dec 25 01:34:05 UTC 2013
Responsible-Changed-Why: 
Grab to not forget.

http://www.freebsd.org/cgi/query-pr.cgi?pr=183997
___
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: bin/185135: [PATCH] ndisgen: respect iconv in base

2013-12-24 Thread glebius
Synopsis: [PATCH] ndisgen: respect iconv in base

State-Changed-From-To: open->patched
State-Changed-By: glebius
State-Changed-When: Wed Dec 25 01:20:21 UTC 2013
State-Changed-Why: 
Committed, thanks.


Responsible-Changed-From-To: freebsd-bugs->glebius
Responsible-Changed-By: glebius
Responsible-Changed-When: Wed Dec 25 01:20:21 UTC 2013
Responsible-Changed-Why: 
Committed, thanks.

http://www.freebsd.org/cgi/query-pr.cgi?pr=185135
___
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/183792: Infinite loop in libalias

2013-12-24 Thread glebius
Synopsis: Infinite loop in libalias

State-Changed-From-To: open->patched
State-Changed-By: glebius
State-Changed-When: Wed Dec 25 03:24:24 UTC 2013
State-Changed-Why: 
Fixed in head, thanks!


Responsible-Changed-From-To: freebsd-bugs->glebius
Responsible-Changed-By: glebius
Responsible-Changed-When: Wed Dec 25 03:24:24 UTC 2013
Responsible-Changed-Why: 
Fixed in head, thanks!

http://www.freebsd.org/cgi/query-pr.cgi?pr=183792
___
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/183753: Regression since r255138: network is slow, kernel: failed to create new mbuf

2013-12-24 Thread glebius
Synopsis: Regression since r255138: network is slow, kernel: failed to create 
new mbuf

State-Changed-From-To: open->closed
State-Changed-By: glebius
State-Changed-When: Wed Dec 25 03:26:20 UTC 2013
State-Changed-Why: 
Fixed in r257841. The PR is duplicate of kern/182963.

http://www.freebsd.org/cgi/query-pr.cgi?pr=183753
___
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/184010: FreeBSD 10.0-BETA3 sysctl -a dumps

2013-12-24 Thread glebius
Synopsis: FreeBSD 10.0-BETA3  sysctl -a dumps

State-Changed-From-To: feedback->closed
State-Changed-By: glebius
State-Changed-When: Wed Dec 25 03:38:15 UTC 2013
State-Changed-Why: 
Fixed in r257996.

http://www.freebsd.org/cgi/query-pr.cgi?pr=184010
___
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/184003: On state creation src_node is looked up twice.

2013-12-24 Thread glebius
Synopsis: On state creation src_node is looked up twice.

Responsible-Changed-From-To: freebsd-bugs->glebius
Responsible-Changed-By: glebius
Responsible-Changed-When: Wed Dec 25 01:33:01 UTC 2013
Responsible-Changed-Why: 
Grab to not forget it.

http://www.freebsd.org/cgi/query-pr.cgi?pr=184003
___
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"