picobsd: minor spelling fixes.
NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn't a simple mechanical change, and will
NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn't a simple mechanical change, and will beaddressed in a future commit.
show more ...
fix various build errors (missing or wrong return types forvarious functions returning void, missing headers, and so on).MFC after: 4 weeks (not before 7.3 is out, anyways)
This main goals of this project are:1. separating L2 tables (ARP, NDP) from the L3 routing tables2. removing as much locking dependencies among these layers as possible to allow for some paralle
This main goals of this project are:1. separating L2 tables (ARP, NDP) from the L3 routing tables2. removing as much locking dependencies among these layers as possible to allow for some parallelism in the search operations3. simplify the logic in the routing code,The most notable end result is the obsolescent of the routecloning (RTF_CLONING) concept, which translated into code reductionin both IPv4 ARP and IPv6 NDP related modules, and size reduction instruct rtentry{}. The change in design obsoletes the semantics ofRTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userlandapplications such as "arp" and "ndp" have been modified to reflectthose changes. The output from "netstat -r" shows only the routingentries.Quite a few developers have contributed to this project in thepast: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, andAndre Oppermann. And most recently:- Kip Macy revised the locking code completely, thus completing the last piece of the puzzle, Kip has also been conducting active functional testing- Sam Leffler has helped me improving/refactoring the code, and provided valuable reviews- Julian Elischer setup the perforce tree for me and has helped me maintaining that branch before the svn conversion
Remove bridge(4) from the tree. if_bridge(4) is a full functionalreplacement and has additional features which make it superior.Discussed on: -archReviewed by: thompsaX-MFC-after: never (RELENG
Remove bridge(4) from the tree. if_bridge(4) is a full functionalreplacement and has additional features which make it superior.Discussed on: -archReviewed by: thompsaX-MFC-after: never (RELENG_6 as transition period)
Start the dreaded NOFOO -> NO_FOO conversion.OK'ed by: core
For variables that are only checked with defined(), don't provideany fake value.
Function declared void shouldn't return any value...
Add a '-l' flag to show CPU load for the various states, similar to what"top" does (thinking of it, i could have as well used the same format line!)This only makes sense when "-w" option is also s
Add a '-l' flag to show CPU load for the various states, similar to what"top" does (thinking of it, i could have as well used the same format line!)This only makes sense when "-w" option is also specified, because theload is computed as the difference between subsequent samples.I think this (and the "-d" feature which shows differences in thenetwork statistics counts) would also make sense in the standardvmstat and netstat.
Add a -d flag to show deltas as opposed to cumulative countersin interface statistics. Most useful when used with the -w flag e.g. ns -i -w 1 -d
s/adress/address/Inspired by: OpenBSDMFC After: 1 week
Apply style guidelines (using gident to help).
Fix a syntax error.
Add dummy -n option, for compatibility with the standard netstat
Fix so that the netmask is displayed correctly when it does notconsist of contiguous bits in little endian format. Before the fixthe netmask of 0xfffffff0 (0xf0ffffff in little endian format) wasd
Fix so that the netmask is displayed correctly when it does notconsist of contiguous bits in little endian format. Before the fixthe netmask of 0xfffffff0 (0xf0ffffff in little endian format) wasdisplayed /24 instead of /28.Also, add a missing include.Submitted by: Maxime Soule <[email protected]>
Fix bogus reporting of interface names, the field returnedin sdl_data is not 0-terminated
$Id$ -> $FreeBSD$
Major PicoBSD update by luigi with some debugging help from myself.. Now builds on -STABLE (-CURRENT is broken due to bugs). etc directory contents centralized instead of in each type directory
Major PicoBSD update by luigi with some debugging help from myself.. Now builds on -STABLE (-CURRENT is broken due to bugs). etc directory contents centralized instead of in each type directory (can exclude & override as desired). Removed extraneous language files (lang files for rc really necessary?). dialog-based build tool with support for custom floppy builds. MFS image loads as a mfs_root module instead of compiled into kernelTHIS IS BROKEN ON CURRENT. I'll MFC to -STABLE immediately following.luigi tells me I have an OK from jkh on the MFC.Submitted by: luigi
Enable printing of bridging statistics.
Fix a problem in printing interface names.
Changed my e-mail address.
Fix for bad calculation of netmask bits. I'm amazed it worked thus far...
Once again turn off the BRIDGING - it's not yet ready to be the default...Submitted by: Randal S. Masutani <[email protected]>
Turn on support for bridging statistics.
* Add code to display statistics continuously, every some seconds.* Fix a number of mem leaks.* Update README.Submitted by: Luigi Rizzo <[email protected]>
12