summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix description of -t option.joerg1997-08-241-2/+2
| | | | | PR: 3382 Submitted by: furuta@sra.co.jp (Atsushi Furuta)
* Mention the various reasons for messages of the form:joerg1997-08-242-2/+34
| | | | | | xxxxx filesystem is not available Inspired by: PR 3311, and a following discussion with Mikhail
* Fix a deadlock caused by one of the spl functions being called beforefsmp1997-08-241-11/+10
| | | | | | ss_lock() can run. Noticed by: dave adkins <adkin003@gold.tc.umn.edu>
* Code cleanup. Removed !FreeBSD code arround sysctl stuff. Renamedkato1997-08-244-46/+14
| | | | | | | | doclusterread/doclusterwrite into ext2_doclusterread and ext2_doclusterwrite, which are unique names. Moved #include of <sys/sysctl.h> to the top of the file. Pointed out by: Bruce Evans <bde@zeta.org.au>
* Synchronize with sys/i386/i386/microtime.s revision up to 1.29.kato1997-08-241-29/+10
|
* Make it explicit that arguments to -c are in hex, while other numbers arejoerg1997-08-241-11/+22
| | | | | | | | in usual "C" notation. Also fixed the examples section. PR: 3313
* Bring in the latest (08/22/1997) version from the Internic.max1997-08-241-4/+4
|
* Go back to previous definition of FE_CACHE_SET, since the problemse1997-08-241-3/+2
| | | | | caused by read-multiple on the 53c810a should have been fixed by adjusting the alignment of the global header in rev 1.104 of ncr.c.
* Always include the section name in the .Xr macro and cleanupsteve1997-08-242-22/+28
| | | | | | | .Nm macro usage. PR: docs/3940 Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp>
* Correct error message when the superuser tries to changesteve1997-08-241-13/+11
| | | | | | | the group of immutable files. PR: bin/3445 Submitted by: Pius Fischer <pius@ienet.com>
* Correct confusing error message when called as 'stty -sane'.steve1997-08-241-5/+8
| | | | PR: bin/3573
* The last of the encapsolation of cpl/spl/ipending things into a criticalfsmp1997-08-2418-239/+953
| | | | | | | | | | | | | | | | | | | region protected by the simplelock 'cpl_lock'. Notes: - this code is currently controlled on a section by section basis with defines in machine/param.h. All sections are currently enabled. - this code is not as clean as I would like, but that can wait till later. - the "giant lock" still surrounds most instances of this "cpl region". I still have to do the code that arbitrates setting cpl between the top and bottom halves of the kernel. - the possibility of deadlock exists, I am committing the code at this point so as to exercise it and detect any such cases B4 the "giant lock" is removed.
* Get rid of integer overflow warning.steve1997-08-232-2/+2
| | | | | PR: misc/3575 Submitted by: Bruce Evans <bde@zeta.org.au>
* Remove extraneous init parameter.steve1997-08-231-4/+2
| | | | | PR: kern/3595 Submitted by: Chiharu Shibata <chi@rd.njk.co.jp>
* Remove extra definition of vwprintw.steve1997-08-231-1/+1
| | | | | PR: bin/3623 Submitted by: Stephen J. Roznowski <sjr1@flash.net>
* Phone the number after the ``|'' whether the dialbrian1997-08-233-40/+42
| | | | | | OR login script fails. Catch a small typo in the man page.
* Some cleanup and a fix for an assumed chip bug:se1997-08-231-93/+90
| | | | | | | | | | | | - Do not malloc SCRIPTS memory for those parts of the microcode that are to be loaded into the on-chip SRAM of the 53c825a or 875 ... - Modify ncr_chip_lookup to make adding new entries easier. - Disable use of on-chip SRAM for the 53c825 rev 0x10 to 0x12, since there seems to be a problem with rev 0x11, while 0x13 is known to work. (Tested by Chuck Robey <chuckr@glue.umd.edu>). This code will be merged into 2.2-stable after a few more days of testing in -current.
* .Ar -l -> .Fl lsteve1997-08-232-4/+4
| | | | | PR: docs/3682 Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp>
* Minor corrections to the code added in rev. 1.100 and 1.101:se1997-08-231-4/+4
| | | | | | | - fix features of 53c860 - correctly adjust data structure to cache line boundary (32 bytes) Submitted by: Gerard Roudier <groudier@club-internet.fr>
* Remove the reference to the nonexistant dump(5) manpage.steve1997-08-231-2/+1
| | | | PR: docs/3704
* Cleanup inconsistencies in the manpage.steve1997-08-231-5/+7
| | | | | PR: docs/3709 Submitted by: Takahiro Yugawa <yugawa@orleans.rim.or.jp>
* Reference the correct version of BSD at the bottom of thesteve1997-08-231-1/+1
| | | | | | manpage. PR: docs/3735
* Protect against target containing a '%' which might be misinterpretedsteve1997-08-232-4/+14
| | | | | | by err(3). PR: bin/3864
* Increase the retry timeouts.steve1997-08-231-4/+4
| | | | | PR: kern/3447 Submitted by: dawes@rf900.physics.usyd.edu.au
* .Nm key -> .Nmsteve1997-08-231-1/+1
| | | | | PR: docs/3877 Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp>
* Turn off hyphenation in this manpage so that .Xr macros, don't getsteve1997-08-231-1/+3
| | | | | | split between lines. PR: bin/4080
* Teach ctags(1) how to handle intermediate whitespace in macrossteve1997-08-231-0/+20
| | | | | | | and function definitions. PR: misc/4128 Submitted by: Shigio Yamaguchi <shigio@wafu.netgate.net>
* Balance single quotes.steve1997-08-231-1/+1
| | | | | PR: docs/4161 Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp>
* common_source: staticize private version of warn() so to not conflictjoerg1997-08-234-26/+55
| | | | | | | | | with libc's version. lpd: use getopt(3), err(3), add usage(), allow specification of a port # on the command line as the documentation suggested for more than 10 years. PR: docs/3290
* Open the file r/o if looking only. Make the error message more useful.joerg1997-08-231-3/+3
| | | | | PR: bin/3283 Submitted by: Martin Kammerhofer <dada@freepass.tu-graz.ac.at>
* Add missing *roff macros to correct display about -V option.steve1997-08-231-1/+3
| | | | | PR: docs/4162 Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp
* Fix the .Dd line.joerg1997-08-231-2/+3
| | | | PR: docs/3275
* Fixed logging of verbose limited packets.alex1997-08-231-4/+5
| | | | | PR: 4351 Submitted by: Ron Bickers <rbickers@intercenter.net>
* Make the daemon process a true daemon by calling setsid().joerg1997-08-231-1/+2
| | | | | PR: bin/3202 Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>
* Prevent a NULL dereferencation when given a garbage command line.joerg1997-08-231-2/+5
| | | | | PR: bin/3206 Submitted by: blank@fox.uni-trier.de
* minor fortune fixes:jmg1997-08-232-6/+6
| | | | | | o convert a ' to " o remove a stray " o format some attributations properly
* Added sysctl args vfs.ext2fs.doclusterread andkato1997-08-234-18/+56
| | | | | vfs.ext2fs.doclusterwrite which control cluster read/write operation on ext2fs filesystem.
* bin to BIN{OWN,GRP} and add Id linejmg1997-08-231-3/+5
|
* add some comments while trying to understand why appletalkjulian1997-08-221-4/+36
| | | | | gets some things wrong. (part of my continuing "comment it as you understand it" effort :)
* Fix buffer overflow. prompt didn't get a size for its buffer,imp1997-08-223-20/+25
| | | | | so it could overflow it. Also made some filenames MAXPATHLEN long rather than 80 long.
* Set ForwardPath as presently inuse on hubpeter1997-08-221-1/+2
|
* Oops, that'll teach me to edit the makefile after testing... Removepeter1997-08-221-2/+2
| | | | duplicate cbcp.c in SRCS... :->
* Turn on client callback support (CBCP), it seems to be complete.peter1997-08-222-2/+10
|
* Cleanup and remove the not-too-useful examples. The current versionspeter1997-08-227-368/+4
| | | | should be in share/examples if anywhere.
* merge from vendor branchpeter1997-08-223-315/+609
|
* Fix the "remove optimization" by removing it. Sorry for the trouble.dyson1997-08-221-1/+3
|
* Merge ppp-2.3.1 changes onto mainlinepeter1997-08-222-119/+614
|
* Print a warning if an unsupported (under SMP) shared address space forkpeter1997-08-221-2/+5
| | | | is attempted rather than just failing with an errno.
* Update to include 2.3.1 details (this is not an imported file, it's apeter1997-08-221-0/+30
| | | | | | composite of other files) Reminded by: pst
* -I/sys converstion and Id linejmg1997-08-221-1/+2
|
OpenPOWER on IntegriCloud