summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Only add the widths together for printable characters in prn_normal();tjr2004-05-031-1/+2
| | | | unprintable characters have a "width" of -1.
* Fix off by one error.phk2004-05-031-0/+1
|
* Restore vendor Id.obrien2004-05-031-1/+3
|
* Tweak to rev 1.8 to match the offical http://www.gzip.org/gzip-1.2.4b.patchobrien2004-05-031-2/+3
|
* add support BUFFALO(Melco INC.) LPC-CB-CLX(CardBus)sanpei2004-05-031-0/+2
| | | | | http://buffalo.melcoinc.co.jp/products/catalog/item/l/lpc-cb-clx/index.html (in Japanese)
* o Add OpenBSD 3.5.maxim2004-05-031-2/+3
| | | | | | o NetBSD 1.6.2 was a patch release. MFC after: 3 days
* Paths correction.pjd2004-05-033-6/+6
| | | | Pointed out by: ache, make buildworld
* We don't need this any more, while we have /usr/include/geom/concat/.pjd2004-05-031-1/+0
|
* use correct address for SADB_EXT_ADDRESS_DST in key_do_allocsa_policysam2004-05-031-2/+2
| | | | | | | | (was using src instead of dst) Submitted by: Bjoern A. Zeeb Obtained from: KAME MFC after: 1 day
* correct behaviour of key_getsavbyspi broken in rev 1.7; corrects problems withsam2004-05-031-2/+2
| | | | | | removing specific SPIs Submitted by: Bjoern A. Zeeb
* Floating-point faults and exceptions can happen in the kernel too.marcel2004-05-031-12/+15
| | | | | | Do not panic when it happens; handle them. Run into by: das
* add support to prefer old SA to new SA during allocationsam2004-05-031-18/+27
| | | | | | | | (makes net.key.preferred_oldsa work as for KAME) Submitted by: gabor@sentex.net Reviewed by: Bjoern A. Zeeb MFC after: 1 day
* Consistify: #define gets 1 tab character afterwardskientzle2004-05-038-60/+60
| | | | Pointed out by: Simon Nielsen
* Fix a race condition which could result in profprocs being decrementedcperciva2004-05-031-0/+2
| | | | | more than once if stopprofclock is called multiple times on the same process.
* s/emacs21/emacs/marcel2004-05-031-1/+1
| | | | | The emacs21 ports has been retired on March 21st and the emacs port was updated to version 21.3.
* Catch- and cleanup:marcel2004-05-031-30/+35
| | | | | | | o Fix and improve comments and references, o Add PFIL_HOOKS, UFS_ACL and UFS_DIRHASH, o Switch from SCHED_4BSD to SCHED_ULE, o Remove SCSI_DELAY (there's no SCSI support),
* Gzip assumes 'unsigned long' is 32-bits wide and depends on this.obrien2004-05-021-3/+6
| | | | | | | | | | | | | | One thing Gzip does is implicitly by store the size of a file into an 'unsigned long' rather than explicitly compute the remainder modulo 2^32 (see RFC 1952 section 2.3.1 "ISIZE"). Thus an extracted file size is does not equal the original size (mod 2^32) for files larger than 4GB. This manifests itself in errors such as: zcat: bigfile.gz: invalid compressed data--length error PR: 66008, 66009 Submitted by: Peter Losher <Peter_Losher@isc.org> Patch by: tjr
* Style: Use single tab after #definekientzle2004-05-023-16/+16
|
* Be consistent in using variable names instead of parameter numbers.thomas2004-05-021-1/+1
|
* Commit three imported bugfixes from OpenBSD 3.4-stable:dhartmei2004-05-023-19/+16
| | | | | | | | | | | - change pf_get_pool() argument rule_number type from u_int32_t to u_int8_t, fixes corruption of address pools with large rulesets (mcbride@) - prevent endless loops with route-to (dhartmei@) - limit option length to 2 octets max (frantzen@) Obtained from: OpenBSD Approved by: mlaier(mentor), bms(mentor)
* Add option GEOM_GPT. This brings the ability to have a large number ofmarcel2004-05-026-0/+6
| | | | partitions on a single disk.
* Remove bogus FBSDID.obrien2004-05-021-3/+1
|
* Fix damaged FBSDID.obrien2004-05-021-3/+1
|
* Quirk for Neuros USB audio device.njl2004-05-021-0/+8
| | | | | PR: kern/63645 Submitted by: Aron Stansvik <elvstone@osdever.net>
* Update URL of the FEPS PDF at sun.com.marius2004-05-021-1/+1
|
* Spell Ethernet correctly.obrien2004-05-027-45/+45
|
* More of Juergen Lock's patches for Linux.kientzle2004-05-022-8/+63
| | | | | (fflags support on Linux, nanosecond timestamp portability, enable 64-bit file offsets)
* Fix compiling on 64-bit architectures.pjd2004-05-024-4/+4
|
* Make it compile on 64-bit architectures.pjd2004-05-022-26/+26
| | | | | The biggest issue was that 16-bit atomic operations aren't supported on all architectures.
* More style fixes, per bde.kientzle2004-05-021-6/+4
|
* Fix release builds (release.3 target). We also need to rebuild libradius,marcel2004-05-021-4/+4
| | | | | | | | | because otherwise it will remain having a dependency upon libssl. This breaks the non-crypto build that happens for release.3 While here, order the list of programs and libraries. Speculating review feedback from: ru
* Correct minor glitches.schweikh2004-05-021-2/+2
| | | | Okayed by: scottl.
* Update the device list for asr, remove a nonsense paragraph, and fix up thescottl2004-05-021-18/+9
| | | | wording in a few others.
* Oops, the 2120S is not supported by this driver.schweikh2004-05-021-1/+1
| | | | Clue bat kindly provided by: scottl
* Rename m_claim_next_hop() to m_claim_next(), as suggested by Max Laier.darrenr2004-05-025-5/+5
|
* oops, I forgot this file in a prior commit (change was still sitting here,darrenr2004-05-022-2/+2
| | | | | | | | uncommitted): Rename ip_claim_next_hop() to m_claim_next_hop(), give it an extra arg (the type of tag to claim) and push it out of ip_var.h into mbuf.h alongside all of the other macros that work ok mbuf's and tag's.
* Added the 2120S to the list of supported cards.schweikh2004-05-021-1/+1
|
* Sync to 1.173 of usbdevssanpei2004-05-022-2/+9
|
* Add support SUNTAC U-Cable type A4 (AS144L4)sanpei2004-05-022-0/+3
| | | | | | | http://www.sun-denshi.co.jp/scc/products/mobile/as144l4/as144l4.htm (in Japanese) PR: kern/66144 Submitted by: KURASHINA Hideyuki <rushani@FreeBSD.org>
* Correct a grammo.schweikh2004-05-021-3/+2
|
* Treat filenames as multibyte character strings (according to the currenttjr2004-05-024-65/+132
| | | | | | | | | | | | | LC_CTYPE setting) when determining which characters are printable. This is an often-requested feature. Use wcwidth() to determine the number of column positions a character takes up, although there are still a few places left where we assume 1 byte = 1 column position, e.g. line-wrapping when handling the -m option. The error handling here is somewhat more complicated than usual: we do our best to show what we can of a filename in the presence of conversion errors, instead of simply aborting.
* Merge vfscanf.c, v1.37:das2004-05-021-8/+7
| | | | - s/#ifdef FLOATING_POINT/#ifndef NO_FLOATING_POINT/
* Merge vfprintf.c, v1.65:das2004-05-021-24/+17
| | | | | - s/#ifdef FLOATING_POINT/#ifndef NO_FLOATING_POINT/ - Remove HEXFLOAT
* Add option NO_FP_LIBC, which disables floating-point support indas2004-05-021-0/+3
| | | | | | | | *printf() and *scanf(). Currently, this reduces the size of libc.so by 9K on i386. But the real savings are for static binaries that use *printf() or *scanf() but not strtod(); with an FP-disabled libc, these binaries will not depend on the gdtoa routines, making each binary about 22K smaller.
* - To make it easier to compile *printf() and *scanf() withoutdas2004-05-022-31/+21
| | | | | | | | | floating-point support, remove default definition of FLOATING_POINT from the source, and change the compile-time option to NO_FLOATING_POINT. - Remove the HEXFLOAT option. It saves an insignificant amount of space (<0.1% of the size of libc on i386) and complicates vfprintf() and checkfmt().
* When *printf() and *scanf() are compiled without floating-pointdas2004-05-021-0/+4
| | | | | support, fmtcheck() should not accept format strings that contain floating-point formats.
* - style(9) improvements courtesy of bde.smkelly2004-05-021-12/+18
| | | | | | - Revise the former commit to behave nicer on filenames containing multiple '.' characters. - Prevent the generation of macros starting with "__".
* Rename ip_claim_next_hop() to m_claim_next_hop(), give it an extra argdarrenr2004-05-024-18/+19
| | | | | (the type of tag to claim) and push it out of ip_var.h into mbuf.h alongside all of the other macros that work ok mbuf's and tag's.
* Remove old cy driver files. They have been repo-copied to sys/dev/cy andbde2004-05-024-3481/+0
| | | | sys/dev/ic and adjusted to work there.
* Switch to using the moved cy driver (adjust pathnames and remove "count"bde2004-05-023-3/+4
| | | | | | | | parameter). Keep using it only in the i386 NOTES for now. It is fairly MI, but it doesn't use bus-space and has a couple of i386 i/o instructions in pci intitialization.
OpenPOWER on IntegriCloud