summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Clarify processing of the string argument by perror().rnordier1998-10-291-8/+5
|
* Correct the reporting of the queue full condition so that the XPT layergibbs1998-10-292-6/+13
| | | | | | | can properly throttle tags. Add diagnostic printfs for firmware result codes that we encounter but don't know anything about.
* Bump VERSREQ to make ``config'' happy.dima1998-10-292-4/+4
| | | | Obtained from: Makefile.i386
* Check for a zero-length as well as a NULL string argument.rnordier1998-10-291-1/+1
|
* Update help files to reflect changes in vm utility.abial1998-10-292-5/+5
|
* Fix conversion from pages to kB's.abial1998-10-291-8/+13
| | | | | Noticed by: luigi Obtained from: sources for vmstat(8)
* Oops, rev.1.167 made the device number checking in bdevvp() too strictbde1998-10-292-6/+8
| | | | for mfs root mounts. Don't require major 255 to be in bdevsw[].
* The man page implies that the string argument to psignal() may bernordier1998-10-291-4/+2
| | | | | NULL, in line with perror(3). However, the code presently checks only for a zero-length string. Check for both.
* Fixed editing error. Pointed out by bde.dg1998-10-291-2/+1
|
* Increase the granularity of the debugging messages.obrien1998-10-292-24/+34
|
* Add some debugging statments (only if DEBUG opt is set), to try pin downobrien1998-10-292-2/+10
| | | | the hangs many of us are experiencing.
* Don't install the lp.4 -> plip.4 links, since the important one of thembde1998-10-291-2/+2
| | | | clobbers the new plip.4 non-link.
* Remove the V_SAVEMETA flag, nothing uses it any more now that msdosfs andpeter1998-10-293-38/+15
| | | | | ext2fs call vtruncbuf() directly. This simplifies and cleans up vinvalbuf() a little.
* error return assignment was less than ideal. Fix the part that causedpeter1998-10-292-4/+4
| | | | | warnings to be the same as the ffs code. Previously, any error from the UFS_UPDATE() call was lost (I think).
* `vector xxxintr' should cause a syntax error.bde1998-10-293-3/+3
|
* Fixed missing link and disordering in previous commit.bde1998-10-291-3/+4
|
* Use vtruncbuf() to clean out cached blocks on a file shorten rather thanpeter1998-10-292-6/+8
| | | | | the more expensive vinvalbuf(), based on the FFS version of the same routine. I don't have any ext2fs filesystems to test this on.
* Use vtruncbuf() rather than vinvalbuf() when shortening files.peter1998-10-292-12/+18
|
* Make the definition of __printf0like() vary according to the valuejdp1998-10-291-4/+9
| | | | | of __FreeBSD_cc_version, so that its use is safe with older compilers and with non-FreeBSD compilers.
* Add a new predefined preprocessor symbol "__FreeBSD_cc_version",jdp1998-10-292-2/+2
| | | | | | | | | | | | | | | | | | | | | | with a numeric value that describes the feature level of the compiler. This can be used to check for the presence/absence of FreeBSD-specific compiler features. The value is a decimal number whose digits have the form VRRRRFF, where: V = Compiler vendor. 0 (elided) means gcc. RRRR = Vendor's version number, e.g., 2721 for the current gcc version (2.7.2.1). FF = FreeBSD-specific revision level. 00 means the stock compiler from the vendor. The value of "__FreeBSD_cc_version" is hard-coded in "src/contrib/gcc/config/i386/freebsd.h" and must be incremented when new FreeBSD-specific compiler features are added. I considered simply picking up the value of FreeBSD_version from <osreldate.h>. But that would break cross compiles of gcc. PR: Part of the fix for gnu/8452 Suggested by: bde
* Remove some redundant (#if 0'd) code.brian1998-10-291-8/+1
|
* A small fragment of new ISA framework: manifest constants for the resourceswollman1998-10-293-0/+129
| | | | implemented by the i386 root nexus.
* A Perl5 version of makedevops.sh. Fixes a bug in the sh/awk versionwollman1998-10-291-0/+221
| | | | | which really annoyed me at the time but I don't think bites me any more.
* The new resource manager, hopefully in a reasonably stable form.wollman1998-10-292-0/+686
|
* Unlink old contents of package when extracting new.jkh1998-10-281-2/+2
| | | | Submitted by: pst
* Change the way unmounting happens to guarantee that thervb1998-10-284-42/+122
| | | | | | | client programs are allowed to finish up (coda_call is forced to complete) and release their locks. Thus there is a reasonable chance that the vflush implicit in the unmount will not get hung on held locks.
* Updatervb1998-10-281-11/+0
|
* Venus must be passed O_CREAT flag on VOP_OPEN iff this isrvb1998-10-288-148/+246
| | | | | | a creat so that we can will allow a mode 444 file to be written into. Sync with the latest coda.h and deal with collateral damage.
* Simplify the "is a character ready" test, so that we don't return a falsemsmith1998-10-281-4/+2
| | | | | | | negative for keypresses with zero ascii values. This is in line with the comconsole test, rather than being more ambitious. Submitted by: rnordier
* Corect info about help files being stored in ar archive.abial1998-10-282-2/+2
| | | | Submitted by: Eric P. Scott <eps@sirius.com>
* Add missing psm0 dev entry.abial1998-10-281-1/+2
| | | | Submitted by: Eric P. Scott <eps@sirius.com>
* Added TODO list. Automate changing of the "Last updated" field.abial1998-10-288-25/+191
|
* Fixed wrong comments in and about vm_page_deactivate().dg1998-10-281-13/+3
|
* Added a second argument, "activate" to the vm_page_unwire() call so thatdg1998-10-2811-40/+43
| | | | the caller can select either inactive or active queue to put the page on.
* Sync with sys/i386/conf/Makefile.i386 revision 1.127.kato1998-10-282-4/+4
|
* Clarify a rather ambiguous debugging message.jkh1998-10-283-6/+6
|
* Add BUS_DEBUG option in opt_bus.hdfr1998-10-281-1/+4
|
* Back out previous work-around for "vmstat -i" failing on ELFjdp1998-10-281-1/+1
| | | | | kernels. A better fix is now committed to "src/lib/libc/gen/nlist.c" and "src/usr.sbin/kvm_mkdb/nlist.c".
* Handle ELF symbols better. This fixes "vmstat -i" for the casejdp1998-10-281-21/+50
| | | | | | | | | where "/var/db/kvm_kernel.db" exists. Note, kvm_mkdb tries to be clever, and skips rebuilding the database if it thinks it's already up to date. To see the effects of this fix, you may need to manually delete "/var/db/kvm_kernel.db" and then run "kvm_mkdb".
* Handle ELF symbols better. This fixes "vmstat -i" for the casejdp1998-10-281-59/+77
| | | | where "/var/db/kvm_kernel.db" doesn't exist.
* Check for C:\FREEBSD also, for backwards compatibilityjkh1998-10-282-4/+4
|
* microseq.9: general purpose parallel microcode for ppbus(4)nsouch1998-10-283-3/+326
| | | | ppbconf.9: general info about ppbus(4) structures
* ppc.4 moved from man4 to man4.i386: parallel port chipset driver manpagensouch1998-10-285-3/+292
| | | | pcf.4 added: Philips I2C/isa interface manpage
* Finally they arrive! ppbus (Parallel Port Bus framework) manpages.nsouch1998-10-284-0/+453
|
* More I2C framework docs. See iicbus(4) for more info.nsouch1998-10-283-0/+224
|
* I2C framework manpages. See iicbus(4) for more info.nsouch1998-10-285-4/+293
|
* Untimeout the chat expect timer as soon as we get abrian1998-10-271-1/+2
| | | | | | match - otherwise, with a delayed (\\d) ``send'', the timeout may happen during the send and cause a failure. Problem reported by: David L. Vondrasek <dallas.tx@airmail.net>
* Add ``set proctitle'' for changing argv[0]. All substitutionsbrian1998-10-275-6/+85
| | | | | | | are done in the same way as command execution. For example, ``set proctitle USER INTERFACE PROCESSID'' would be useful in a -direct profile for identifying who's connected.
* Add ``PROCESSID'' as a constant expanded when runningbrian1998-10-273-4/+11
| | | | commands.
* Stress that ``none'' must be specified on the `set callback'brian1998-10-272-10/+26
| | | | | line if callback is to be optional. Requested by: Andrzej Tobola <san@koziolek.lublin.top.pl>
OpenPOWER on IntegriCloud