summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Prevent TMPDIR overflow.kris2000-08-041-1/+5
|
* sprintf() -> snprintf() paranoia.kris2000-08-041-2/+2
|
* Don't overflow the internal buffer in clnt_sperror()kris2000-08-041-1/+1
|
* sprintf -> snprintf paranoiakris2000-08-041-3/+3
|
* This commit was generated by cvs2svn to compensate for changes in r64234,obrien2000-08-041-0/+153
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of gdb-5.0obrien2000-08-0426-8978/+9487
| |
* | Limit the amount of data copied to the error buffer to _POSIX2_LINE_MAX.kris2000-08-041-2/+2
| | | | | | | | This is the documented size which the user-provided buffer must be.
* | These files are for an arch we don't care about.obrien2000-08-048-5171/+0
| |
* | Fix this so it is a Makefile and not a shell script -- now issuing `make'obrien2000-08-041-3/+3
| | | | | | | | a second time does not rebuild the binary.
* | Commented out xe device because it depend on PCMCIA stuff.kato2000-08-041-1/+1
| |
* | Merged from sys/i386/isa/clock.c revision 1.155.kato2000-08-043-3/+18
| |
* | Merge the truncate(1) utility onto the RELENG_4 branch and adjustsheldonh2000-08-041-1/+1
| | | | | | | | | | the HISTORY section to reflect the first release of FreeBSD in which this utility will appear.
* | Add support for 2.x/3.x firmware adapters which are too old to have amsmith2000-08-042-2/+9
| | | | | | | | | | memory-mapped register window. This closes the last known issue with 2.x vintage adapters.
* | Prevent buffer overflows.kris2000-08-041-0/+10
| |
* | Fix some of the arcdisk devsw functions to catch up with warning fixes injhb2000-08-041-8/+15
| | | | | | | | | | | | | | <stand.h>. Also, since bcache_strategy() used to not have a prototype, arcdisk happily called bcache_strategy() with 6 parameters instead of 7, leaving out the disk unit number, which is the 2nd parameter. Add in the unit number to the bcache_strategy() call to fix this.
* | Bring back the perform() function. However, conditionionalize it onjhb2000-08-041-0/+36
| | | | | | | | BOOT_FORTH as it is only used if BOOT_FORTH is not defined.
* | Unbreak the OpenSSL headers for those of us who don't/can't use IDEA bygreen2000-08-041-1/+10
| | | | | | | | | | getting rid of the check for NO_IDEA (in evp.h) completely if it's installed without MAKE_IDEA=YES.
* | Cleanup of TMPDIR code.kris2000-08-031-5/+5
| | | | | | | | Requested by: bde (ages ago)
* | Improve performance in the case where ip_output() returns an error.archie2000-08-031-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When this happens, we know for sure that the packet data was not received by the peer. Therefore, back out any advancing of the transmit sequence number so that we send the same data the next time we transmit a packet, avoiding a guaranteed missed packet and its resulting TCP transmit slowdown. In most systems ip_output() probably never returns an error, and so this problem is never seen. However, it is more likely to occur with device drivers having short output queues (causing ENOBUFS to be returned when they are full), not to mention low memory situations. Moreover, because of this problem writers of slow devices were required to make an unfortunate choice between (a) having a relatively short output queue (with low latency but low TCP bandwidth because of this problem) or (b) a long output queue (with high latency and high TCP bandwidth). In my particular application (ISDN) it took an output queue equal to ~5 seconds of transmission to avoid ENOBUFS. A more reasonable output queue of 0.5 seconds resulted in only about 50% TCP throughput. With this patch full throughput was restored in the latter case. Reviewed by: freebsd-net
* | Change use of perror() to warn()kris2000-08-031-1/+1
| | | | | | | | Submitted by: bde
* | Merge from GENERIC. Mostly reenable some devices and add SOFTUPDATESimp2000-08-031-17/+19
| | | | | | | | | | and RANDOMDEV to the list. STill need to do more merging, but for now things are better.
* | Make check for empty list in STAILQ_LAST() more readable.hsu2000-08-031-1/+1
| |
* | Modify to use fixed STAILQ_LAST().hsu2000-08-031-1/+1
| | | | | | | | Reviewed by: dfr
* | Restore STAILQ_LAST() semantics to match that of TAILQ_LAST()hsu2000-08-031-2/+7
| | | | | | | | | | | | | | and CIRCLEQ_LAST(). Return the last element instead of a pointer to the next field of the last element. Reviewed by: dfr
* | Explain "-c" option more exactly and state the default in the mandwmalone2000-08-032-8/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | page. Add ability to run "inetd -R 0" to disable the default connection per minute limit of 256 connections. Document this in man page. Don't use maxchild as a boolean - instead check if it is greater than zero. Reviewed by: sheldonh Based on a patch by: Alexander Langer <alex@big.endian.de>
* | specifer -> specifierdwmalone2000-08-031-1/+1
| |
* | Sort cases in getopt switch statement.dwmalone2000-08-031-31/+32
| | | | | | | | | | | | | | | | | | | | Remove extra parens from my host selection commit. Add white space after if, while, for and switch. Get rid of braces around a single statement if. There should be no functional changes in this commit. Reviewed by: sheldonh
* | Replace two calls to strlen+calloc+strcpy with strdup.dwmalone2000-08-031-12/+4
| | | | | | | | Reviewed by: sheldonh
* | Do not display icmp(4) sockets as non-existent bridge(4) sockets.ru2000-08-031-2/+2
| |
* | Make netstat(1) to be aware of divert(4) sockets.ru2000-08-032-1/+91
| |
* | Add the ESS Solo-1 to generic chip match.sanpei2000-08-031-0/+2
| | | | | | | | | | Solo-1 Datasheet(vendor/device info at P.33) http://www.alsa-project.org/alsa/ftp/manuals/ess/DsSolo1.pdf
* | - Fixed %si (offset to partition table) in boot.kato2000-08-031-3/+3
| | | | | | | | - Fixed comment.
* | Forced commit to note that actually, the last commit to this file was notjhb2000-08-030-0/+0
| | | | | | | | | | warning fixes, but rather it made pre-existing compile-time knobs tweakable via make variables. It also documented the options.
* | Fix the more obvious warnings to deal with my earlier warning cleanups.jhb2000-08-035-20/+20
| |
* | Cleanup warnings. Most of these are signed/unsigned warnings, as well asjhb2000-08-0332-274/+278
| | | | | | | | some added const's.
* | Fix several BDECFLAGS warnings. Also, actually use the 'verbose' parameterjhb2000-08-031-71/+104
| | | | | | | | | | for lsdev when printing out slice information. Now, you only get the sizes and LBA's of slices if you use 'lsdev -v'.
* | Cleanup warnings by adding missint prototypes, removing unneeded duplicatejhb2000-08-034-12/+20
| | | | | | | | | | | | | | prototypes, and adding in several 'const's. Also, add some missing $FreeBSD$'s. Found by: BDECFLAGS
* | * Create entire directory path for modules.obrien2000-08-034-4/+4
| | | | | | | | * Don't ignore error returns.
* | - Fixed pointer to the partition table in the buffer.kato2000-08-031-12/+7
| | | | | | | | - Use shift by %cl instead of five shifts by 1.
* | Don't bitch when trying to create a ${DESTDIR}/modules which alreadysheldonh2000-08-032-2/+2
| | | | | | | | exists.
* | Fix buildkernel and installkernel when KERNEL is defined inmarcel2000-08-031-3/+3
| | | | | | | | | | | | | | /etc/make.conf. PR: 20325 Submitted by: Johan Karlsson <k@numeri.campus.luth.se>
* | Install the openssl(1) manpage with an MLINK from ssl(8) to at least putkris2000-08-031-6/+12
| | | | | | | | something in the location where OpenSSH likes to point.
* | Add a comment as to where stdarg.h applies.mjacob2000-08-031-1/+1
| |
* | Fix HTTP port addresses for the IPv6 case.jkh2000-08-032-22/+26
| | | | | | | | Submitted by: pho and Hajimu UMEMOTO
* | Use <machine/stdarg.h> instead of <stdarg.h> so that this will compile.jhb2000-08-031-1/+1
| | | | | | | | While I'm at it, move the #include line up to the top of the file.
* | Make the pfil.c code conditional on either option PFIL_HOOKS or IPFILTER.peter2000-08-031-1/+2
| | | | | | | | | | The previous line was an AND. This change means you can compile in the pfil_hook stuff and make it available for other users besides ipfilter.
* | Simplex devices will always report EBUSY on 2nd (and subsequent)nsayer2000-08-021-1/+1
| | | | | | | | | | | | | | | | | | opens if the reference count is not decremented on close. Note that this may result in the reference count being corrupted on full duplex devices (due to mismatching opens/closes), but the code doesn't use the reference count for anything on full duplex devices.
* | 1. Increase the size of the DMA buffer.nsayer2000-08-021-11/+32
| | | | | | | | | | | | | | | | 2. Offer half duplex with both playback and record on channel 1 or full duplex with playback always on channel 2 as a compile-time option. 3. 16 bit record output is byte swapped for some dumb reason. Report the _BE AFMTs for recording.
* | Fix previous commit such that only -S/--skip ignores errors when applyingkbyanc2000-08-021-0/+7
| | | | | | | | | | | | a patch, returning -f/--force and -t/--batch to their previous semantics. Pointed out by: asami
* | Fix self referential dependencies. eg: uhub was packaged along withpeter2000-08-021-3/+13
| | | | | | | | | | | | | | usb, all in usb.ko. uhub depends on usb. The bug was that the preload processing only adds a module to the list once it's internal dependencies are resolved... Since it was not "seeing" the internal usb module it believed that uhub had a missing dependency.
OpenPOWER on IntegriCloud