summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-1060-60/+60
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-1023-24/+24
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-1016-18/+16
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-1015-15/+20
|
* Added #include <sys/proc.h>nyan2001-07-102-0/+2
| | | | Submitted by: Kaho Toshikazu <kaho@elam.kais.kyoto-u.ac.jp>
* mdoc(7) police: minor markup tweaks.ru2001-07-101-2/+4
|
* mdoc(7) police:ru2001-07-101-11/+25
| | | | | Restored .Pa for ``dumpdates'' (it's still a file). Also, removed duplicate ``file'' words.
* mdoc(7) police: eliminate warnings, fix markup.ru2001-07-101-10/+6
|
* Sort MAN= section.alfred2001-07-101-57/+52
|
* netbsd 1.5.1 is in jul 2001 (available via ftp already, but we need a concreteitojun2001-07-101-6/+6
| | | | | | | | date of the announcement) couple of URL fixes. From: Petri Koistinen <pkoistin@cs.stadia.fi> (http://www.byte.com/art/9410/sec8/art3.htm is now a dangling link. any alternative URL?)
* Install:alfred2001-07-101-0/+6
| | | | | cdevsw_add.9 cdevsw_remove.9 devsw.9 major.9 minor.9 umajor.9 uminor.9 vn_isdisk.9
* Document some of the dev_t related APIs.alfred2001-07-108-0/+461
| | | | Submitted by: Chad David <davidc@acns.ab.ca>
* Fix rule parsing breakage introduced in 1.103 cleanup. 'tcp' andcjc2001-07-101-5/+8
| | | | | | | 'icmp' rules could drop into infinite loops when given bad arguments. Reviewed by: ru, des Approved by: ru
* Use INTR_TYPE_AV rather than INTR_TYPE_MISC for the interrupt forimp2001-07-101-1/+1
| | | | pci interrupts for the bridge.
* Link in new manpages:alfred2001-07-101-1/+4
| | | | | | BUF_LOCK.9 BUF_LOCKFREE.9 BUF_LOCKINIT.9 BUF_REFCNT.9 BUF_TIMELOCK.9 BUF_UNLOCK.9 lockcount.9 lockdestroy.9 lockmgr.9 lockmgr_printinfo.9 lockstatus.9
* Note that this function is for debugging purposes.alfred2001-07-101-0/+2
|
* Fix explanation of LK_SLEEPFAIL option.alfred2001-07-101-2/+2
| | | | Remove extra period from end of sentance.
* fix typos: s/BUF_LOCK/BUF_TIMELOCK, order xrefs.alfred2001-07-101-4/+4
|
* Document some of the kernel API dealing with locks used primarily by VFS.alfred2001-07-1011-0/+758
| | | | Submitted by: Chad David <davidc@acns.ab.ca>
* MFS: add the FreeBSD history.obrien2001-07-101-1/+3
|
* Give the FreeBSD history also.obrien2001-07-101-1/+3
|
* Somehow I missed this. Use INTR_TYPE_AV (high priority) instead ofpeter2001-07-091-1/+1
| | | | INTR_TYPE_TTY (lowest priority).
* style nitobrien2001-07-092-2/+2
|
* Add LIBBZ2.obrien2001-07-091-0/+1
|
* Whoops; we get an ACPI_OBJECT back from evaluating a method, notmsmith2001-07-091-8/+6
| | | | | | an ACPI_OPERAND_OBJECT. Fix this so that the power resource type can be properly checked, and we can get the system level and resource order.
* New release notes: sysctl for TCP ISN fix, fsck_msdosfs(8), dump(8) -D,bmah2001-07-092-4/+28
| | | | OPIE replaced S/Key.
* Log when the user is turning debugging on/off.joerg2001-07-092-10/+18
| | | | | | | Also sanitize the TRACE* macros a bit so they syntactically behave like single C statements (even inside in `if' statement). Submitted by: des
* Hmpf, remove two variables that got unused by rev 1.214.joerg2001-07-092-4/+2
|
* Ouch, calculate correctly. With 300 rpm and 25 retries, it's 5 secondsjoerg2001-07-092-2/+2
| | | | till timeout.
* Remove parts of rev 1.211 again: do not delete our children iff theyjoerg2001-07-092-14/+0
| | | | | | haven't been probed successfully. It's a known bug that ISA hints processing instantiates those devices, and prematurely killing them has other unwanted side-effects.
* As des' example shows us, DMA overruns could happen in a situationjoerg2001-07-093-18/+75
| | | | | | | | where they will never succeed. Add a stop-gap measure that will at least eventually timeout the operation instead of retrying it indefinately. MFC after: 1 month
* Document more resolver(3) routines: dn_skip() from resolv.h, andtobez2001-07-092-2/+55
| | | | | | | ns_get16(), ns_get32(), ns_put16(), and ns_put32() from arpa/nameser.h. Markup by: ru OK'ed by: markm
* Add SYSCTL ints for default normal I/O timeout && retry counts.mjacob2001-07-091-4/+20
| | | | | | | | | | This is useful if you want to dynamically move into a Fibre Channel or Multi-initiator environment that happens to be particularly noisy and ugly that requires a lot of retries (with shorter I/O timeouts) for commands destried by LIPs or Bus Resets. Reviewed by: deafening silence on audit && scsi on the retry counts MFC after: 2 weeks
* Constify the fstype argument to vfs_mount(). This eliminates at least onedes2001-07-093-4/+4
| | | | "call discards qualifier" warning (in sys/compat/linux/linux_file.c).
* Don't share sig handlers after an execguido2001-07-091-1/+23
| | | | Reviewed by: Alfred Perlstein
* Get rid of useless bcopy (the next statement was equivalent)guido2001-07-091-2/+0
|
* Clean up (and in some cases write) the PAM mudules, usingmarkm2001-07-0935-266/+2030
| | | | | | | | | | o The new options-processing API o The new DEBUG-logging API Add man(1) pages for ALL modules. MDOC-Police welcome to check this. Audit, clean up while I'm here.
* Bump the major number. The libraries API has changed incompatibly.markm2001-07-091-1/+1
|
* Almost completely rewrite the PAM module options processingmarkm2001-07-097-82/+334
| | | | | | | | routines, and provide a more extended API for doing this. Provide an API for debug logging. Audit and clean up the code.
* Add the WANT_INSECURE_OPIE frob which is useful for debugging andmarkm2001-07-091-0/+6
| | | | | | over secure (encrypted) links. Add a MLINK for skey(4) to opie(4) to assist in the transition.
* Apply patch supplied by Jonathan Chen: use the correct arguments towpaul2001-07-0919-36/+36
| | | | | pci_enable_io(). We need to use SYS_RES_IOPORT/SYS_RES_MEMORY instead of PCIM_CMD_PORTEN/PCIM_CMD_MEMEN.
* Axe S/Key. OPIE is the legal successor.markm2001-07-0914-4025/+3
|
* Axe S/Key. OPIE is the true and faithful successor.markm2001-07-091-4/+2
|
* Remove S/Key. PAM can do its job. Well, not quite - there is an issuemarkm2001-07-094-63/+19
| | | | | | | with the conversation function and challenges which needs to be revisited, so in the interim a hack is introduced to provide an OPIE challenge (which is random if OPIE does not apply) at all non-anonymnous logins.
* Remove the S/Key key-handling apps, which are no longer needed, asmarkm2001-07-0910-616/+0
| | | | they are replaced by opiepasswd, opieinfo and opiekey.
* Provide a WANT_INSECURE_OPIE compile-time option, which is useful ifmarkm2001-07-093-0/+17
| | | | | | | you encrypt all traffic routinely, and is also useful for debugging. Also, (properly) set SUID bit on relevant apps - opieinfo and opiepasswd, which need it to mess with /etc/opiekeys.
* Goodbye S/Key, Hello OPIE.markm2001-07-092-13/+17
| | | | | I believe I have done due dilligence on this, but I'd appreciate decent test scenarios and sucess (or failure) reports.
* Note that spls are noopsimp2001-07-091-0/+2
|
* Better support for multi-lingual release documentation. We now supportbmah2001-07-092-3/+13
| | | | | | | | | | language-dependant SGML catalogs (in ${LANG_CODE}/share/sgml) and also use a default.dsl stylesheet similar to what the rest of the DocProj documents use. Requested by: hrs, Alex Kapranoff <kapr@acm.org> Reviewed by: hrs, dd MFC after: 2 days
* mdoc(7) police: eliminate -ww warnings.ru2001-07-091-2/+2
|
OpenPOWER on IntegriCloud