|
Patches for the LDP daemon
|
| |
Hello everybody,
First of all, let me introduce myself. I am Renato Westphal, I work as a
computer engineer in Brazil and I'm a maintainer of the MPLS-Linux project.
A couple of years ago I accidentally found that OpenBSD already had
built-in support for MPLS and, surprisingly, a fully working implementation... more »
|
|
route(8) use -inet6 automatically for addresses containing :
|
| |
does anyone see a downside to this? if the address family is not
explicitly specified, assume v6 if it looks like it may be an ipv6
address.
allows e.g. "route get 2001:200:dff:fff1:216:3eff:feb 1:44d7"
without needing to specify -inet6.
Index: route.c
============================== ============================== =======... more »
|
|
bgpd, partial support for ttl-security with v6
|
| |
this sets the outgoing hop limit correctly on v6 sessions so they should
come up when we've configured ttl-security and the other side is checking
ttls. I don't have anything handy to test against but things look good
with tcpdump.
we ought to check incoming packets too, but this at least is a step in... more »
|
|
options(4) man page: bump BUFCACHEPERCENT
|
| |
BUFCACHEPERCENT has been set to 20 by default for a while now, so bump
it in the options(4) man page accordingly.
OK?
Index: options.4
============================== ============================== =======
RCS file: /cvs/src/share/man/man4/option s.4,v
retrieving revision 1.231
diff -u -p -r1.231 options.4... more »
|
|
add filter by host functionality to syslogd
|
| |
Hi,
the following diff adds filter by host function to syslogd like:
+host
* /var/log/host
or
+host2
mail.* /var/log/host2.mail
etc.
works for me, with only one limitation: now only for resolvable hosts, i.e one cannot have
+192.168.2.1
* /some/file
With best regards,
Gregory Edigarov... more »
|
|
mg(1): shell-command
|
| |
This diff modifies the shell-command-on-region function and gives us
shell-command. It makes getting output from other commands into mg
really easy. Comments/oks?
-lum
Index: def.h
============================== ============================== =======
RCS file: /cvs/src/usr.bin/mg/def.h,v
retrieving revision 1.135... more »
|
|
fix typo in bin/pax/cpio.c
|
| |
Hi tech@,
I found a typo in bin/pax/cpio.c. The comment is talking about a
function called rd_nam(), but the function below it is called rd_nm().
In the file, there are no other references to rd_nam().
The patch is below.
Best regards,
Caspar Schutijser Index: bin/pax/cpio.c
============================== ============================== =======... more »
|
|
De-static functions' prototypes
|
| |
...
unfortunately, it still confuses with aesni failures.
de-static-izing functions' prototypes makes things look
as expected.
Index: arch/amd64/amd64/amd64errata.c
============================== ============================== =======
RCS file: /cvs/src/sys/arch/amd64/amd64/ amd64errata.c,v
retrieving revision 1.4... more »
|
|
brgphy: reset autonegotiation timer when we get the link
|
| |
from freebsd. ok?
diff --git sys/dev/mii/brgphy.c sys/dev/mii/brgphy.c
index 7f0bae2..461c798 100644
--- sys/dev/mii/brgphy.c
+++ sys/dev/mii/brgphy.c
@@ -412,8 +412,10 @@ setit:
* the BMSR twice in case it's latched.
*/
reg = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
- if (reg & BMSR_LINK)... more »
|
|
bge: use BUS_DMA_NOWIAT in functions called from the timeout
|
| |
prevent the system from spitting loads of splasserts when bge_watchdog
fires. ok?
diff --git sys/dev/pci/if_bge.c sys/dev/pci/if_bge.c
index 055ceec..ffad959 100644
--- sys/dev/pci/if_bge.c
+++ sys/dev/pci/if_bge.c
@@ -1226,7 +1226,7 @@ bge_init_rx_ring_std(struct bge_softc *sc)
for (i = 0; i < BGE_STD_RX_RING_CNT; i++) {... more »
|
|
|