Searched hist:25478 (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.1-release/etc/
H A Drc.firewalldiff 25478 Mon May 05 05:08:31 MDT 1997 jkh Add inetd_flags and way of passing ipfw a configuration file
(if firewall = "somefilename").

Fix typo fixes and URLs which were accidently nuked out of this
file (submitted by: soil@quick.net via PR#3501).

Submitted by: "Danny J. Zerkel" <dzerkel@phofarm.com>
H A Drcdiff 25478 Mon May 05 05:08:31 MDT 1997 jkh Add inetd_flags and way of passing ipfw a configuration file
(if firewall = "somefilename").

Fix typo fixes and URLs which were accidently nuked out of this
file (submitted by: soil@quick.net via PR#3501).

Submitted by: "Danny J. Zerkel" <dzerkel@phofarm.com>
/freebsd-10.1-release/sys/net/
H A Dif_vlan.cdiff 74943 Wed Mar 28 13:52:12 MST 2001 yar Fix a number of minor bugs in the VLAN code:

* Initialize the "struct sockaddr_dl sdl" correctly in vlan_setmulti().

PR: kern/22181

* The driver used to call malloc(..., M_NOWAIT), but to not check the
return value. Change malloc(..., M_NOWAIT) to malloc(..., M_WAITOK)
because the corresponding part of code is called from the upper
half of the kernel only.

PR: kern/22181

* Make sure a parent interface is up and running before invoking
its if_start() routine in order to avoid system panic.

PR: kern/22179 kern/24741 i386/25478

* Do not copy all the flags from a parent mindlessly.

PR: kern/22179

* Do not call if_down() on a parent interface if it's already down.
Call if_down() at splimp because if_down() needs that.

PR: kern/22179

Reviewed by: wollman

Completed in 270 milliseconds