summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Three people known to be born on December 18!ru2001-06-231-0/+1
| | | | Submitted by: cwt
* move a private struct definition from ac97.h to ac97.ccg2001-06-232-13/+32
| | | | | add proper handling of cards which take eapd=1 to mean 'produce sound' instead of 'external amplifier power down'
* Add netstat(1) knob to reset net.inet.{ip|icmp|tcp|udp|igmp}.stats.ru2001-06-2310-19/+43
| | | | | | For example, ``netstat -s -p ip -z'' will show and reset IP stats. PR: bin/17338
* add sndstat.c so module users have /dev/sndstat againcg2001-06-232-2/+2
|
* - 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.
* Add sysctl interface (Read-only) for temprature, AC-line and Battery.iwasaki2001-06-236-73/+618
| | | | Patches for acpi_cmbat.c submitted by Munehiro Matsuda.
* 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
|
* Fixed DPADD.ru2001-06-231-2/+2
| | | | Submitted by: bde
* Document "normalizing" behavior of mktime(3).ru2001-06-231-1/+12
| | | | | | PR: bin/28313 Reviewed by: bde, wollman MFC after: 1 week
* Merged from sys/i386/isa/npx.c revision 1.102.kato2001-06-231-2/+2
|
* Average age is 28 years and 11 months.ru2001-06-231-1/+3
| | | | Submitted by: hrs, marko
* Merged from sys/i386/i386/machdep.c revisions 1.456 and 1.457.kato2001-06-232-34/+16
|
* Removed pcm and sbc devices.kato2001-06-231-4/+0
|
* Merged from sys/conf/files.i386 revisions 1.362 and 1.363.kato2001-06-231-5/+2
|
* Merged from sys/boot/i386/btx/btx/btx.s revision 1.25.kato2001-06-232-2/+2
|
* Make sure the average age keeps on decreasing down that slippery slope.green2001-06-231-0/+1
|
* Remove duplicate word.dd2001-06-231-1/+1
|
* Bring in fix from rev 1.32 that got lost during the conversion to kqueue.jlemon2001-06-231-8/+19
| | | | | | | | This prevents an indefinte timeout in case the kevent call is interrupted for some reason. PR: 26665 MFC in: 2 weeks
* Convert inb/outb to bus_space.nsouch2001-06-234-50/+68
| | | | Submitted by: jcm@FreeBSD-uk.eu.org
* Translate various ppbus sequences into microsequences to limitnsouch2001-06-232-109/+128
| | | | | | overhead of abstraction layers. Submitted by: jcm@FreeBSD-uk.eu.org
* Make the similar changes as in our keyinfo, i.e. allow user to get his ownache2001-06-232-10/+17
| | | | | 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 :-)
* Eliminate the allocation of a tcp template structure for eachsilby2001-06-238-135/+122
| | | | | | | | | | | | connection. The information contained in a tcptemp can be reconstructed from a tcpcb when needed. Previously, tcp templates required the allocation of one mbuf per connection. On large systems, this change should free up a large number of mbufs. Reviewed by: bmilekic, jlemon, ru MFC after: 2 weeks
* Fix a number of bugs in the implementation of the WEP related statusbrooks2001-06-223-67/+156
| | | | | | | | | | | | | functions in ifconfig. "ifconfig an0" should output the correct status now. Also, make the read and write functions both more robust and more consistant. This should stop most of the incorrect size complaints and eliminate the possiability of panics from firmware that increases resource sizes. PR: kern/27826 Reviewed by: imp, jlemon Submitted by: Doug Ambrisko <ambrisko@ambrisko.com> David Wolfskill <dhw@whistle.com>
* - Lock CURSIG() with the proc lock to close the signal race with psignal.jhb2001-06-221-99/+67
| | | | | | | | | | | | | | | | - Grab Giant around ktrace points. - Clean up KTR_PROC tracepoints to not display the value of sched_lock.mtx_lock as it isn't really needed anymore and just obfuscates the messages. - Add a few if conditions to replace gotos. - Ensure that every msleep KTR event ends up with a matching msleep resume KTR event (this was broken when we didn't do a mi_switch()). - Only note via ktrace that we resumed from a switch once rather than twice in several places in msleep(). - Remove spl's rom asleep and await as the proc lock and sched_lock provide all the needed locking. - In mawait() add in a needed ktrace point for noting that we are about to switch out.
* - Lock CURSIG with the proc lock and don't release the proc lock untiljhb2001-06-221-4/+10
| | | | | after grabbing the sched lock to close a race. - Lock ktrace points with Giant.
* - Grab the proc lock around CURSIG and postsig(). Don't release the procjhb2001-06-225-13/+20
| | | | | | | | lock until after grabbing the sched_lock to avoid CURSIG racing with psignal. - Don't grab Giant for addupc_task() as it isn't needed. Reported by: tegge (signal race), bde (addupc_task a while back)
* - Change CURSIG() and postsig() to require that the proc lock is heldjhb2001-06-221-9/+10
| | | | | | | | | | rather than grabbing it and releasing it themselves. This allows callers of these functions to get the lock to close race conditions. - Grab Giant around ktrace in postsig. - Count the switches performed on SIGSTOP's as involuntary context switches in the resource usage stats. Reported by: tegge (signal race), bde (missing csw stats)
* 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
|
* People wanted this bumped for the Bzip2 import.obrien2001-06-221-1/+1
|
* Make the hw.physmem and hw.usermem variables unsigned so that they dontpeter2001-06-222-4/+4
| | | | come up as negative on machines with >2GB ram.
* Increase the buffer sizes for the build deps, run deps, and the linedd2001-06-221-3/+3
| | | | | | | itself verbatim from INDEX. This fixes seg. faults with newer INDEX files which have some gnome ports with outrageously long run deps. Approved by: jkh
* 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.
* MFS: Add tx(4) section to hardware list.bmah2001-06-222-8/+14
|
* WARNS= -> WARNS?=dd2001-06-2223-23/+23
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Be conservative and always perform an mb after an atomic_cmpset operation.jhb2001-06-221-0/+2
|
* - Protect all accesses to nsw_[rw]count{,_{,a}sync} with the pbuf mutex.jhb2001-06-221-4/+4
| | | | | - Don't drop the vm mutex while grabbing the pbuf mutex to manipulate said variables.
* int -> size_t fixmjacob2001-06-221-2/+2
|
* Make hostid an unsigned long (matches kern_mib.c change)mjacob2001-06-221-1/+1
| | | | | PR: kern/21132 MFC after: 1 month
* Take sbuf(9) item out of the release notes. It doesn't have as muchbmah2001-06-222-10/+0
| | | | relevance to the average user as I thought it did originally.
* Note that ed(4) supports the DE305.bmah2001-06-222-0/+4
|
* New/updated release notes: gensetdefs(8) removed, mbuf allocator SMP-friendlybmah2001-06-222-6/+38
| | | | | | changes, TCP_RESTRICT_RST removed, getprogname(3), setprogname(3). MFCs noted: dump(8) -T argument processing fixed, ee(1) 1.4.2.
* Temporary fix at least- define NCPU_PRESENT which will be mp_npcus formjacob2001-06-221-2/+11
| | | | SMP kernels, one (1) for non-SMP.
* changed hostid from long to unsigned long to be able to store values > 2GBpirzyk2001-06-221-3/+2
| | | | | | | | on i386 platforms. Also changed SYSCTL type from INT to ULONG and removed comment about it. PR: kern/21132 MFC after: 1 month
* MFS: Fix minor grammatical problem in orm(4) item.bmah2001-06-222-2/+2
|
* New/updated release notes: inetd(8) can manage AF_UNIX sockets, resolver(3)bmah2001-06-222-20/+68
| | | | | | | | with EDNS0 support, col(1) -p, mdmfs(8), bzip2 1.0.1, Heimdal 0.3f. MFCs noted: orm(4), nge(4), lge(4), packet fragmentation limits (plus minor update), df(1) -l, pkg_version(1) -s.
OpenPOWER on IntegriCloud