summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use `Er' variable to define first column width in ERRORS section.phantom2000-05-0617-17/+17
|
* mdoc related cleanup:phantom2000-05-061-17/+17
| | | | | | . use construction ".Aq Pa filename" instead of ".Pa <filename>" . replace Section Heading macro (.Sh) with Subsection (.Ss) macro for subsections
* Use suggested by mdoc(7) style section name (ERROR -> ERRORS)phantom2000-05-061-1/+1
|
* Use `Er' variable to define first column width in ERRORS section.phantom2000-05-066-6/+6
|
* Change the way that scatter/gather list tables are allocated so that wemsmith2000-05-064-39/+58
| | | | | | | | | | | can use all of the s/g entries available on smaller cards. This is necessary if we want to be able to handle a non-page-aligned 64k transfer on 2.x and 3.x firmware. Fix a missing splx() that may have left us at splbio() for longer than desired. Reduce shadowing of controller-supplied parameters a little.
* Step down a level and issue format requests with a struct bio insteadphk2000-05-062-40/+40
| | | | of a struct buf.
* Remove devstat_end_transaction_buf() everybody usesphk2000-05-062-19/+0
| | | | devstat_end_transaction_bio() now.
* Fix comment.ps2000-05-061-1/+1
|
* Note that ports-base is a mandatory collection and your ports will notkris2000-05-061-1/+6
| | | | | | | build correctly if it is not kept up to date. Hopefully this will help with the flood of ".tar.gz" questions we've been seeing everywhere lately.
* Implement TCP NewReno, as documented in RFC 2582. This allowsjlemon2000-05-066-15/+163
| | | | | | | | better recovery for multiple packet losses in a single window. The algorithm can be toggled via the sysctl net.inet.tcp.newreno, which defaults to "on". Submitted by: Jayanth Vijayaraghavan <jayanth@yahoo-inc.com>
* Add blurb about kqueue to the release notes.jlemon2000-05-062-0/+14
|
* All the screen savers other than "apm" build on the Alpha. daemon.ko hasobrien2000-05-062-3/+6
| | | | been tested to work.
* Give the "streams" modulea version (1) and depend on it from thegreen2000-05-063-0/+3
| | | | | "svr4elf" module. This unbreaks the SVR4 KLD (which had an undefined function because of thenewly-committed KLD enhancements).
* Add $FreeBSD$ (and test remote commits after the Freefall upgrade)obrien2000-05-061-0/+1
|
* Add a version tag for the rtc port to depend on.peter2000-05-062-0/+4
|
* AUTHOR -> AUTHORSarchie2000-05-056-6/+6
|
* Put the FTP_PASSIVE_MODE issue to rest once and for all.billf2000-05-051-1/+1
| | | | | Reviewed by: des Obtained from: FreeBSD's src/usr.bin/ftp/main.c
* Remove unneeded #include <sys/buf.h>phk2000-05-051-1/+0
|
* Don't include <sys/buf.h>phk2000-05-053-3/+0
|
* Confusing comment.n_hibma2000-05-051-1/+1
|
* Switch to using the .code16 as(1) directive and using 16-bit assemblyjhb2000-05-052-63/+138
| | | | | | | | | | | | code instead of using 32-bit code and having to just "know" that it's really 16-bit instructions when things run. This also allows the code to use fewer macros and more actual assembly statements, which eases maintenance. Unfortunately, due to as(1) brokenness, we still use m4 macros for all 16-bit addresses, and all short jumps (i.e., 8-bit relative addresses in the jump instruction) must be wrapped in .code32 directives to avoid useless bloat by as(1). This also fixes a few problems that were preventing boot0 from compiling with the latest and greatest version of as(1).
* Apply patch to rl_rxeof() to really enforce payload alignment inwpaul2000-05-051-10/+7
| | | | | | the case where we receive a packet that wraps from the end of the RX buffer back to the start. This fixes an unaligned access trap on the alpha with NFS.
* Oops, <sys/buf.h> still needed here for pc98 (and consequently sys/bio.h).phk2000-05-051-0/+2
|
* Separate the struct bio related stuff out of <sys/buf.h> intophk2000-05-05182-612/+197
| | | | | | | | | | | | | | | <sys/bio.h>. <sys/bio.h> is now a prerequisite for <sys/buf.h> but it shall not be made a nested include according to bdes teachings on the subject of nested includes. Diskdrivers and similar stuff below specfs::strategy() should no longer need to include <sys/buf.> unless they need caching of data. Still a few bogus uses of struct buf to track down. Repocopy by: peter
* remove unneeded #include <sys/buf.h>phk2000-05-053-3/+0
|
* Don't use struct buf for random small temporary buffers.phk2000-05-052-10/+14
|
* Add IP addresses to the rules required to "Allow anything fromsheldonh2000-05-051-3/+4
| | | | | | localhost", since portmap(8) is included in "anything". Submitted by: Doug Barton <Doug@gorean.org>
* Install a manual page for `tcsh(1)', for completeness.jkoshy2000-05-051-0/+1
| | | | Approved by: obrien
* GENERIC98 -> GENERICnyan2000-05-051-1/+1
|
* GENERIC98 is removed.nyan2000-05-051-1/+1
|
* Don't use getebuf() unless you really need a struct buf. Malloc willphk2000-05-051-10/+12
| | | | do fine in this case.
* Remove the static heap. It is unknown why it was needed in theps2000-05-051-10/+0
| | | | | beginning, but it no longer is required. This has been tested with many different revisions of the PXE rom from Intel.
* Build modules in a subdir of the kernel build dir. Add a `cleandir'obrien2000-05-051-4/+8
| | | | | target for those whose fingers try to use that to clean out the modules build dir.
* Correct an xref.mpp2000-05-052-2/+6
| | | | | PR: doc/13218 Submitted by: phantom
* Minor mdoc cleanup.mpp2000-05-053-5/+7
| | | | PR: docs/13218
* Lay the groundwork for on-demand dictionary expansion.dcs2000-05-053-5/+48
|
* Correct the usage of the ".Bd -literal -offset xxx" macro to usempp2000-05-051-8/+8
| | | | | | | a proper offset. This silences warnings when the man page is formated with groff. PR: bin/14534
* Document the new statistics control messages.archie2000-05-052-2/+38
| | | | Add a note about the IP header asymmetry on the "lower" hook.
* Fix a couple of bugs:archie2000-05-052-41/+253
| | | | | | | - Properly handle 32 bit sequence numbers when they wrap around - Don't drop GRE packets with stale ACK numbers, just ignore the ACK - Close race between node being shutdown and timer going off Also add support for lots of statistics, and control message ASCIIfication
* Add a little do-nothing ``slopsucker'' device which gives a homewollman2000-05-043-0/+132
| | | | to PNP0c04 (legacy ISA coprocessor support). Tourist info.
* Correct a bug whereby allocations to the dictionary would not be alloweddcs2000-05-041-3/+3
| | | | unless four times the space requested was available.
* Make documentation on recently added heap? command reflect reality.dcs2000-05-042-4/+4
|
* Add "heap?" to loader's man page.dcs2000-05-042-0/+6
|
* Further improve ordering.dcs2000-05-042-8/+8
|
* Sort entries in FreeBSD-specific FICL commands.dcs2000-05-042-28/+28
|
* Set MAKEOBJDIRPREFIX to modules/ in the current directory and build modulesobrien2000-05-042-12/+20
| | | | there.
* Add heap?, so we can tell how much free space we have left.dcs2000-05-041-0/+9
|
* Add PCI identification for another SmartArray 4200, which identifiesjlemon2000-05-041-6/+14
| | | | itself as a DEC card instead of Compaq.
* Fix one bug where the kn_head list could be manipulated withoutjlemon2000-05-041-2/+8
| | | | | | | | | spl() protection in the case of a copyout error. Add missing spl calls around the intial activation call that is done when when the kevent is added. Add two KASSERT macros to help catch errors in the future.
* Change the definition of sdata from u_long --> intptr_t to correctlyjlemon2000-05-041-1/+1
| | | | match the data type in struct kevent.
OpenPOWER on IntegriCloud