summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Include missing header files which define functions for which gcc hasdd2001-06-242-0/+2
| | | | builtints (e.g., exit, strcmp).
* Include missing header files which define functions for which gcc hasdd2001-06-2418-0/+21
| | | | builtins (e.g., exit, strcmp).
* Include missing header files which define functions for which gcc hasdd2001-06-249-0/+11
| | | | | | builtins (e.g., exit). Submitted by: Mike Barcroft <mike@q9media.com>
* Silence warning and set WARNS=2.dd2001-06-242-1/+2
| | | | | Submitted by: Mike Barcroft <mike@q9media.com> Reviewed by: md5(1)
* Add prototypes and turn on WARNS=?2.dwmalone2001-06-242-0/+19
|
* Remove duplicate words.dd2001-06-243-3/+3
|
* Add myself.jasone2001-06-241-0/+1
|
* Reduce field width for some columns so that the default output fits in <= 79schweikh2001-06-231-3/+3
| | | | | | | columns. 80 columns + newline is a problem for some terminals including syscons. Requested by: bde MFC after: 1 week
* Three people known to be born on December 18!ru2001-06-231-0/+1
| | | | Submitted by: cwt
* Add netstat(1) knob to reset net.inet.{ip|icmp|tcp|udp|igmp}.stats.ru2001-06-234-13/+37
| | | | | | For example, ``netstat -s -p ip -z'' will show and reset IP stats. PR: bin/17338
* - Fix space allocation for mbstat structurebmilekic2001-06-231-3/+5
| | | | | - Make sure to try hw.ncpu if kern.smp.cpus doesn't exist (i.e. on UP) to get number of CPUs.
* Make sure to try hw.ncpu if kern.smp.cpus doesn't exist (i.e. on UP) whenbmilekic2001-06-231-1/+2
| | | | getting number of CPUs.
* By default link statically (like we did in the port) - it provides 8-10%sobomax2001-06-231-0/+2
| | | | faster comperssion, which in the bzip2's case could be a big win.
* Honor -s -s (don't show zero stats) with -r, untangle SYNOPSIS further.ru2001-06-232-12/+25
| | | | (usage() still is not synchronized with SYNOPSIS, intentionally.)
* Add myself.rse2001-06-231-0/+1
|
* Average age is 28 years and 11 months.ru2001-06-231-1/+3
| | | | Submitted by: hrs, marko
* Make sure the average age keeps on decreasing down that slippery slope.green2001-06-231-0/+1
|
* Make the similar changes as in our keyinfo, i.e. allow user to get his ownache2001-06-231-0/+1
| | | | | sequence and allow root to get everybody's one. Before this change user can't get his own sequence, root required.
* give up and join the party (along with thomas Moestl (same bday))julian2001-06-231-0/+1
| | | | but maybe this file shouldn't be so widly distributed :-)
* Now how many files would a new committer have to commit?tanimura2001-06-221-0/+1
|
* Join in the fun.wes2001-06-221-0/+1
|
* Quiet compiler warnings by making `WARNS 2' clean.obrien2001-06-222-6/+9
| | | | | | | | Submitted by: Mike Barcroft <mike@q9media.com> Set maintainer to myself. This needs to stay in sync with what Buntils does, and it would be best to pass functionality changes thru me to make sure future plans are taken into account.
* WARNS= -> WARNS?=dd2001-06-224-4/+4
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Average tuning and contribute a Brazilianlioux2001-06-221-0/+1
|
* Add myselfps2001-06-221-0/+1
|
* Add myself.tmm2001-06-221-0/+1
|
* More average age tuning.ru2001-06-221-0/+1
| | | | Submitted by: andy
* Correct small typo on debug message.dcs2001-06-221-1/+1
| | | | | | PR: bin/28337 Submitted by: Koga Youichirou <y-koga@jp.freebsd.org> MFC after: 1 week
* Fixed average age (28 years and 11 months).ru2001-06-221-1/+2
| | | | Submitted by: hosokawa
* Add myself. It looks like I am in very good company in November.gshapiro2001-06-221-0/+1
|
* Add myselfkevlo2001-06-221-0/+1
|
* - Fixed bogon in rev. 1.14 (dates are separated by a tab).ru2001-06-221-13/+13
| | | | | | | | | | - Sort people that have the same birthday by a year. - Added some missing data (R.O.C. for Taiwan, Australia for peter, Englang -> United Kingdom). - Fixed bogon in rev. 1.1 (INITCAP() was not worth doing). - Regenerate (from the Oracle database). Average age: 28 years and 10 months.
* Introduce numerous SMP friendly changes to the mbuf allocator. Namely,bmilekic2001-06-224-89/+236
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | introduce a modified allocation mechanism for mbufs and mbuf clusters; one which can scale under SMP and which offers the possibility of resource reclamation to be implemented in the future. Notable advantages: o Reduce contention for SMP by offering per-CPU pools and locks. o Better use of data cache due to per-CPU pools. o Much less code cache pollution due to excessively large allocation macros. o Framework for `grouping' objects from same page together so as to be able to possibly free wired-down pages back to the system if they are no longer needed by the network stacks. Additional things changed with this addition: - Moved some mbuf specific declarations and initializations from sys/conf/param.c into mbuf-specific code where they belong. - m_getclr() has been renamed to m_get_clrd() because the old name is really confusing. m_getclr() HAS been preserved though and is defined to the new name. No tree sweep has been done "to change the interface," as the old name will continue to be supported and is not depracated. The change was merely done because m_getclr() sounds too much like "m_get a cluster." - TEMPORARILY disabled mbtypes statistics displaying in netstat(1) and systat(1) (see TODO below). - Fixed systat(1) to display number of "free mbufs" based on new per-CPU stat structures. - Fixed netstat(1) to display new per-CPU stats based on sysctl-exported per-CPU stat structures. All infos are fetched via sysctl. TODO (in order of priority): - Re-enable mbtypes statistics in both netstat(1) and systat(1) after introducing an SMP friendly way to collect the mbtypes stats under the already introduced per-CPU locks (i.e. hopefully don't use atomic() - it seems too costly for a mere stat update, especially when other locks are already present). - Optionally have systat(1) display not only "total free mbufs" but also "total free mbufs per CPU pool." - Fix minor length-fetching issues in netstat(1) related to recently re-enabled option to read mbuf stats from a core file. - Move reference counters at least for mbuf clusters into an unused portion of the cluster itself, to save space and need to allocate a counter. - Look into introducing resource freeing possibly from a kproc. Reviewed by (in parts): jlemon, jake, silby, terry Tested by: jlemon (Intel & Alpha), mjacob (Intel & Alpha) Preliminary performance measurements: jlemon (and me, obviously) URL: http://people.freebsd.org/~bmilekic/mb_alloc/
* Add Myself.takawata2001-06-221-0/+1
|
* Dive in as well.peter2001-06-221-0/+1
|
* Add myself.motoyuki2001-06-221-0/+1
|
* Oops, I was born in Osaka. Kanagawa is my current address :-)sumikawa2001-06-221-1/+1
|
* Add myself. sos, you have a clone (albeit younger by 9 years :)ade2001-06-221-0/+1
|
* Stylify, ANSIfy, silence warnings, plug a memory leak, don't assume thedes2001-06-222-90/+70
| | | | | | | server is well-behaved wrt. line endings. PR: bin/28082 Submitted by: Mike Barcroft <mike@q9media.com>
* Add myself.vanilla2001-06-221-0/+1
|
* Okay, I'll go along with the gag.... Interesting- I'm quite startledmjacob2001-06-221-0/+1
| | | | | to note that of the people added so far, one has the same birthdate as me (April Fool's Day), and that only two other folks are older than I am.
* Add myself.grog2001-06-221-0/+1
|
* Slightly lower average age.brooks2001-06-211-0/+1
|
* represent detroit rock citybillf2001-06-211-1/+1
|
* Add the Bzip2 binaries. These are starting to get used more and moreobrien2001-06-212-0/+53
| | | | in the base system.
* Follow Ben's suit in decreasing the average age herekeichii2001-06-211-0/+1
| | | | by adding myself.
* Hopefully decrease the average age further still... :-)ben2001-06-211-0/+1
|
* bring down the average age a littlebillf2001-06-211-0/+1
|
* FreeBSD calendar.ru2001-06-211-0/+90
| | | | Submitted by: developers
* - Avoid hardcoded constant on icmp6 in/out histogram printingsumikawa2001-06-211-4/+8
| | | | | | | - Icmp6 histogram update for inverse neighbor solicit/advert. Obtained from: KAME MFC after: 2 weeks
OpenPOWER on IntegriCloud