aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Only load KOI8-R-specific bits if document language is setRuslan Ermilov2001-05-071-2/+4
| | | | | | | | | via the \*[lang] register, not if just device is `koi8-r'. Reviewed by: ache Notes: svn path=/head/; revision=76332
* Use foo () instead of foo ( ) for function definition,Jens Schweikhardt2001-05-071-2/+1
| | | | | | | so zsh can parse this file as well. Notes: svn path=/head/; revision=76331
* Remove if_ray_oldcard.h because pccard support multiple windows now.Duncan Barclay2001-05-073-140/+11
| | | | | | | | Setup attribute memory resource in ray_probe so that it is added to the print out of the resource list on card insertion. Notes: svn path=/head/; revision=76330
* A bit of markup and spelling fixes.Ruslan Ermilov2001-05-071-17/+17
| | | | Notes: svn path=/head/; revision=76329
* Restore printing of routes cloned from a RTF_CLONING parentRuslan Ermilov2001-05-072-9/+10
| | | | | | | | | | | (e.g., ARP table entries) with the default routing display. PR: bin/26970 Reviewed by: wollman MFC after: 3 days Notes: svn path=/head/; revision=76328
* Change COM_LOCK/COM_UNLOCK to a regular mutex - still conditional onBrian Somers2001-05-074-25/+25
| | | | | | | SMP being defined. Notes: svn path=/head/; revision=76327
* Cosmetics: .Dl -> .Li.Ruslan Ermilov2001-05-071-1/+1
| | | | Notes: svn path=/head/; revision=76326
* s/mtx_try_enter/mtx_trylock/Dima Dorfman2001-05-061-1/+1
| | | | Notes: svn path=/head/; revision=76325
* Make the disk mini-layer check for and handle zero-length transfersPoul-Henning Kamp2001-05-069-50/+6
| | | | | | | instead of the underlying drivers. Notes: svn path=/head/; revision=76324
* Make LINT compile again.Brian Somers2001-05-061-0/+1
| | | | | | | Spotted by: phk Notes: svn path=/head/; revision=76323
* Actually biofinish(struct bio *, struct devstat *, int error) is more generalPoul-Henning Kamp2001-05-0629-154/+75
| | | | | | | | | than the bioerror(). Most of this patch is generated by scripts. Notes: svn path=/head/; revision=76322
* Introduce bioerror(struct bio*, int err, int complete);Poul-Henning Kamp2001-05-061-0/+10
| | | | Notes: svn path=/head/; revision=76321
* Remove unneeded devfs_badop()Poul-Henning Kamp2001-05-061-10/+0
| | | | | | | Noticed by: rwatson Notes: svn path=/head/; revision=76320
* Fix return type of vop_stdputpages()Poul-Henning Kamp2001-05-061-1/+2
| | | | | | | Noticed by: rwatson Notes: svn path=/head/; revision=76319
* Fix a panic if MD devices were left half-created.Poul-Henning Kamp2001-05-061-14/+12
| | | | | | | | | | XXX: the real bug is that devstat isn't part of the disk minilayer. PR: 27158 Submitted by: Anders Nordby <anders@fix.no> Notes: svn path=/head/; revision=76318
* Add elf.h header back, its existance is an SVR4-ELF tradition.David E. O'Brien2001-05-061-1/+1
| | | | | | | | | Our ELF hints bits are still a seperate file. Requested by: jdp Notes: svn path=/head/; revision=76317
* o First step in cleaning up authorization code for the posix4Robert Watson2001-05-062-16/+16
| | | | | | | | | | | | implementation. Move from direct uid 0 comparision to using suser_xxx() call with the same semantics. Simplify CAN_AFFECT() macro as passed pcred was redundant. The checks here still aren't "right", but they are probably "better". Obtained from: TrustedBSD Project Notes: svn path=/head/; revision=76316
* SGMLify now completed. Comments are invited. I hope not to have introducedWilko Bulte2001-05-062-764/+1202
| | | | | | | too much typos / errors during the conversion. Notes: svn path=/head/; revision=76312
* Update the DiskOnChip firmware to OSAK version 4.1.Poul-Henning Kamp2001-05-061-589/+687
| | | | | | | Sponsored by: Redfern Broadband Networks (www.RedFernNetworks.com) Notes: svn path=/head/; revision=76311
* Restore I/O port resources to the condition before adv_isa_probe() isYoshihiro Takahashi2001-05-061-10/+17
| | | | | | | | | called. Submitted by: yokota Notes: svn path=/head/; revision=76309
* Merged from sys/i386/i386/machdep.c revision 1.448.KATO Takenori2001-05-062-4/+0
| | | | Notes: svn path=/head/; revision=76308
* Use correct resource id for bus_release_resource().Yoshihiro Takahashi2001-05-061-10/+10
| | | | Notes: svn path=/head/; revision=76307
* Move unused functions into #if 0 ... #endif.Yoshihiro Takahashi2001-05-062-0/+8
| | | | Notes: svn path=/head/; revision=76306
* Merged from sys/i386/conf/GENERIC revision 1.304.Yoshihiro Takahashi2001-05-061-3/+3
| | | | Notes: svn path=/head/; revision=76304
* Merged from sys/isa/fd.c revision 1.193.Yoshihiro Takahashi2001-05-062-10/+10
| | | | Notes: svn path=/head/; revision=76303
* Create temporary files securely using mkstemp() instead of mktemp()Kris Kennaway2001-05-063-2/+13
| | | | | | | | Reviewed by: mikeh, audit@ MFC after: 1 week Notes: svn path=/head/; revision=76301
* * fix ctm(8) to use mkstemp() instead of tempnam() for tempfileKris Kennaway2001-05-065-7/+64
| | | | | | | | | | | | | | | | creation. * Tag the internal err() function with __printflike to allow checking for non-constant format string arguments (none exist) * Use fmtcheck() to sanitize the tar command obtained via -t to make sure it doesn't contain extraneous format operators. Reviewed by: mikeh MFC after: 1 week Notes: svn path=/head/; revision=76300
* Make soft updates option print more nicely and stop overflow ofJordan K. Hubbard2001-05-062-10/+16
| | | | | | | | right-hand margin when set in 2nd column. Also do a small amount of code cleanup. Notes: svn path=/head/; revision=76299
* When setting up the frame to invoke a signal handler, preserve theDaniel Eischen2001-05-062-4/+0
| | | | | | | | | | | | | | | | | | %fs and %gs registers instead of setting them to known sane values. %fs is going to be used for thread/KSE specific data by the new threads library; we'll want it to be valid inside of signal handlers. According to bde, Linux preserves the state of %fs and %gs when setting up signal handlers, so there is precedent for doing this. The same changes should be made in the Linux emulator, but when made, they seem to break (at least one version of) the IBM JDK for Linux (reported by drew). Approved by: bde Notes: svn path=/head/; revision=76298
* Performance improvements for the ELF dynamic linker. TheseJohn Polstra2001-05-055-18/+60
| | | | | | | | | | | | | | | | | | | | | | | particularly help programs which load many shared libraries with a lot of relocations. Large C++ programs such as are found in KDE are a prime example. While relocating a shared object, maintain a vector of symbols which have already been looked up, directly indexed by symbol number. Typically, symbols which are referenced by a relocation entry are referenced by many of them. This is the same optimization I made to the a.out dynamic linker in 1995 (rtld.c revision 1.30). Also, compare the first character of a sought-after symbol with its symbol table entry before calling strcmp(). On a PII/400 these changes reduce the start-up time of a typical KDE program from 833 msec (elapsed) to 370 msec. MFC after: 5 days Notes: svn path=/head/; revision=76296
* Let ifconfig(8) catch up with the new functionality whereJesper Skriver2001-05-051-1/+11
| | | | | | | | | one can specify addresses and netmask in CIDR notation. Submitted by: Dima Dorfman <dima@unixfreak.org> Notes: svn path=/head/; revision=76295
* Add this header back, its existance is an SVR4-ELF tradition.David E. O'Brien2001-05-051-0/+35
| | | | | | | | | Our ELF hints bits are still a seperate file. Requested by: jdp Notes: svn path=/head/; revision=76294
* Add q quirk for the old SONY SMO drive i've been sitting upon in myJoerg Wunsch2001-05-051-0/+16
| | | | | | | | private tree for too long now. This (pre SCSI-2) drive returns a mystic code when the medium is inserted but not spun up. Notes: svn path=/head/; revision=76293
* sshd_config should still be keeping ssh host keys in /etc/ssh, not /etc.Brian Feldman2001-05-051-3/+3
| | | | Notes: svn path=/head/; revision=76292
* Fix markupBrian Somers2001-05-051-1/+1
| | | | | | | Spotted by: Jens Schweikhardt <schweikh@schweikhardt.net> Notes: svn path=/head/; revision=76291
* this file has been unused for some time nowCameron Grant2001-05-051-167/+0
| | | | Notes: svn path=/head/; revision=76290
* Use &merged; entity where appropriate.Dima Dorfman2001-05-053-3/+3
| | | | Notes: svn path=/head/; revision=76289
* Correct some spelling errors, a typo, and remove trailing whitespace.Dima Dorfman2001-05-053-33/+21
| | | | Notes: svn path=/head/; revision=76288
* Finish committing _more_ somehow-uncommitted OpenSSH 2.9 updates.Brian Feldman2001-05-052-5/+11
| | | | | | | (Missing Delta Brigade, tally-ho!) Notes: svn path=/head/; revision=76287
* Add -z flag to pax to allow gzipping of archive output. Add -z and -Z (gzipKris Kennaway2001-05-055-13/+107
| | | | | | | | | | | | | | | | | and compress) to pax when used in tar mode (invoked as 'tar') for compatibility with GNU tar. bzip2 functionality for further GNU tar compatibility will be added at a later date. Note in the manpage that -z is non-standard. Obtained from: OpenBSD Reviewed by: -hackers MFC after: 2 weeks Notes: svn path=/head/; revision=76286
* Add printf.9, and add links to tprintf.9 and uprintf.9.Dima Dorfman2001-05-051-1/+4
| | | | Notes: svn path=/head/; revision=76285
* Update to OpenSSH 2.9. Somehow this missed getting committed yesterday.Brian Feldman2001-05-041-3/+3
| | | | Notes: svn path=/head/; revision=76284
* Replace an instance of the "watch" word with the ".Nm" macro: it is used toJimmy Olgeni2001-05-041-1/+3
| | | | | | | specify the command name. Notes: svn path=/head/; revision=76283
* A manual page for the printf(), uprintf(), and tprintf() kernel functions.Dima Dorfman2001-05-041-0/+130
| | | | | | | | Submitted by: Andrew R. Reiter <arr@watson.org> Reviewed by: jhb Notes: svn path=/head/; revision=76282
* Finish disconnecting pam_ssh from the build.Brian Feldman2001-05-041-3/+0
| | | | Notes: svn path=/head/; revision=76281
* Move the check for a pending signals to after the thread has beenDaniel Eischen2001-05-046-18/+54
| | | | | | | | | | | | | | | | | | placed in any scheduling queue(s). The process of dispatching signals to a thread can change its state which will attempt to add or remove the thread from any scheduling queue to which it belongs. This can break some assertions if the thread isn't in the queue(s) implied by its state. When adding dispatching a pending signal to a thread, be sure to remove the signal from the threads set of pending signals. PR: 27035 Tested by: brian MFC in: 1 week Notes: svn path=/head/; revision=76280
* New release notes: OpenSSH VersionAddendum, OpenSSH 2.9, new find(1)Bruce A. Mah2001-05-045-0/+106
| | | | | | | predicates, PAM 0.75, nl(1). Notes: svn path=/head/; revision=76279
* Add infrastructure that allows to build docs and RELNOTESng withoutJoerg Wunsch2001-05-042-4/+81
| | | | | | | | | | | | | | | | | | | the need to also create the entire ports tree during a `make release'. The main motivation behind this is that handling the ports tree still takes a huge amount of time due to the large number of directories involved, even on modern disks. The solution is to establish a list of dependent ports that are minimally required. This list needs to be manually maintained in case the doc ports toolchain changes, and has thus been broken out into a separate file Makefile.inc.docports. (release/Makefile has gotten overly lengthy already anyway.) Discussed with: bmah, nik Reviewed by: bmah Notes: svn path=/head/; revision=76278
* Implement slash/CIDR notation for IPv4 and IPv6 addresses.Jesper Skriver2001-05-041-0/+29
| | | | | | | | | | MFC after: 1 week Reviewed by: phk Obtained from: NetBSD Notes: svn path=/head/; revision=76276
* Raise the SysV shared memory defaults to more reasonable values.Matthew Dillon2001-05-041-3/+3
| | | | | | | | | Mainly increases the shared memory limit from 4M to 32M (approx). Many more programs these days use SysV shared memory, especially X-related programs. Notes: svn path=/head/; revision=76275