summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-03-28usage more like rcp and add missing -B to usage; ok markus@Kevin Steves
2001-03-28Allow tdbi's to appear in mbufs throughout the stack; this allowsAngelos D. Keromytis
security properties of the packets to be pushed up to the application (not done yet). Eventually, this will be turned into a packet attributes framework. Make sure tdbi's are free'd/cleared properly whenever drivers (or NFS) does weird things with mbufs.
2001-03-28Move code to set sc_frequency out of #ifdef notyet since we now need it.Todd C. Miller
From deraadt@
2001-03-28start to sync scp closer to rcp; ok markus@Kevin Steves
2001-03-28identify Cyrix III; from Armin Wolfermann <armin@wolfermann.org>Michael Shalayeff
2001-03-28improved print-domain. from tcpdump.org.Jakob Schlyter
- better error control - TSIG printing
2001-03-28Fix range checking on SPIs (Jean-Jacques.Bernard@hsc.fr)Angelos D. Keromytis
2001-03-28ldil requires L% always it seemsMichael Shalayeff
2001-03-28sync w/ libcMichael Shalayeff
2001-03-28correct arg order addi/subi, newer gas catches thisMichael Shalayeff
2001-03-28rely on predefined space attributesMichael Shalayeff
2001-03-28new SIIG 8-port; apriori@world.std.comTheo de Raadt
2001-03-28syncTheo de Raadt
2001-03-28newTheo de Raadt
2001-03-28$OpenBSD$Jason Wright
2001-03-28Document dependencies on subpackages and flavors.Marc Espie
2001-03-28Goodbye, gdb uses src/gnu/lib/libreadline now.Marc Espie
2001-03-28Kill remaining references to binutils's readline.Marc Espie
2001-03-28add back OpenBSD tagsTodd C. Miller
2001-03-28+.Xr mount_ext2fsMarc Espie
Yet another obscure filesystem that no-one ever uses... (found out by Sebastien Desreux <seb@liafa.jussieu.fr>)
2001-03-28Status update.Marc Espie
Document rebuild, CONFIGURE_ARGS, CONFIGURE_ENV, NO_BUILD, NO_DEPENDS, YACC.
2001-03-28Amigas has ne-cards too, at zbus0.Janne Johansson
2001-03-28Bring the netgraph PPPoE interface UP if required (only applies to FreeBSD)brian
2001-03-28must spec +1 in this one case...Theo de Raadt
2001-03-28avoid g_Ctoc() overflows; art@ okTheo de Raadt
2001-03-28Add some DIAGNOSTIC checks that panic on some of the common mistakes.Artur Grabowski
2001-03-28sigh, forgot another ifdef; use bus_space_xx for cross plataform support.Federico G. Schwindt
2001-03-28KNFTheo de Raadt
2001-03-28Use vaddr_t instead of vm_offset_t.Federico G. Schwindt
2001-03-28uncomment and use code to determine whether we interrupted or notJason Wright
correct comment typo
2001-03-28Replaced with bt8xx.h; byebye.Federico G. Schwindt
2001-03-28remove old files.Federico G. Schwindt
2001-03-28ioctl_meteor.h and ioctl_bt848.h merge; from NetBSD.Federico G. Schwindt
2001-03-28New set of files for bktr(4).Federico G. Schwindt
2001-03-28Latest bktr driver from FreeBSD; thanks to Andres GunnarssonFederico G. Schwindt
<andreas@crt.se> for testing.
2001-03-28do not core on truncated query-less dns packets; fix pr1746Michael Shalayeff
2001-03-28Rework vlan_start() to make sure it -never- munges the packet internals (eg.Jason Wright
shared mbuf clusters) Revert the deleted m_adj() call in vlan_input() back to inline mbuf manipulation, all of the checks really are there by API/convention.
2001-03-27Rearrange title macros into the correct order.Aaron Campbell
2001-03-27Get rid of bogus .UC macro, likely an artifact of old mdoc conversions.Aaron Campbell
2001-03-27The .Os macro should not be used in the general text domain.Aaron Campbell
2001-03-27Move the boot loader relocation address higher, for full-featuredMiod Vallat
(GENERIC) kernel to fit. ``experienced by'' & ok smurph@
2001-03-27Fix another memory leak, found by boehm-gc. While not required,Hakan Olsson
also keep what I think is a cleanup of pf_key_v2_msg_free().
2001-03-27avoid a mapreg type mismatch warning when mapping card's io spaceMichael Shalayeff
2001-03-27syncTheo de Raadt
2001-03-27Plug one memory leak. Found with boehm-gc.Hakan Olsson
2001-03-27make dh group exchange more flexible, allow min and max group size,Niels Provos
okay markus@, deraadt@
2001-03-27some more quircksMichael Shalayeff
2001-03-27Allocate a buffer large enough to contain the generated assertion.Hakan Olsson
Found with ElectricFence.
2001-03-27(c)-2001Hakan Olsson
2001-03-27Fix a problem with how TDB timeouts were used in pfkeyv2.Artur Grabowski
When we allocated a tdb we did a timeout_add before a timeout_set. This was a problem in itself, but it shouldn't hurt too much. What did hurt was that we did a timeout_set after the timeout_add, timeout_set marked the timeout as not being on the timeout list and if we did a timeout_del (or timeout_add) later (before the timeout fired) we ended up with a chunk of freed memory on the timeout queue or maybe even dangling pointers (or a circular list). This should probably cure the timeout queue corruption some people were seeing lately.