Commit graph

55705 commits

Author SHA1 Message Date
John Baldwin 5e878a541c Add in an interrupt type for this driver. I have no idea how this could
have ever worked without this.

Reviewed by:	peter
2001-01-19 08:55:14 +00:00
John Baldwin 568ae39fd5 Revert revision 1.102. I don't think p_nice needs to be protected with
sched_lock, and I'm fairly certain P_TRACED will be protected with the
proc lock instead.

Pointed out indirectly by:	bde
2001-01-19 08:23:22 +00:00
Jun-ichiro itojun Hagino cf2e52f3de BSD/OS was called BSD/386 prior to 2.0. 2001-01-19 07:36:36 +00:00
Matthew Dillon bcc740c453 Do not cluster with B_LOCKED buffers.
This is an odd one.  This patch appears to fix a panic related to background
bitmap writes (for FFS), though neither Kirk, Ian, or I can figure out how
B_CLUSTEROK could possibly be set on a bitmap block to cause the clustering
code to improperly cluster with a buffer undergoing a background write.

In anycase, the clustering code is very fragile and this patch helps with
that, as well as possibly fixing a bug Andre was having.

Suggested by: Ian Dowse <iedowse@maths.tcd.ie>
Testing by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
2001-01-19 05:31:07 +00:00
Bosko Milekic 08812b3925 Implement MTX_RECURSE flag for mtx_init().
All calls to mtx_init() for mutexes that recurse must now include
the MTX_RECURSE bit in the flag argument variable. This change is in
preparation for an upcoming (further) mutex API cleanup.
The witness code will call panic() if a lock is found to recurse but
the MTX_RECURSE bit was not set during the lock's initialization.

The old MTX_RECURSE "state" bit (in mtx_lock) has been renamed to
MTX_RECURSED, which is more appropriate given its meaning.

The following locks have been made "recursive," thus far:
eventhandler, Giant, callout, sched_lock, possibly some others declared
in the architecture-specific code, all of the network card driver locks
in pci/, as well as some other locks in dev/ stuff that I've found to
be recursive.

Reviewed by: jhb
2001-01-19 01:59:14 +00:00
Poul-Henning Kamp 5683c3dd1f Look for modules in /boot/kernel these days. 2001-01-18 22:36:34 +00:00
Bruce A. Mah 097b422067 New release notes: Condition variables in kernel, ConnectionsPerPeriod
deprecated in sshd_config, cdcontrol(1) and CDROM, sysctl -N,
ports "origin", sysinstall->/usr/sbin.

Note MFC for LinkSys cards note, clarify and MFC syslogd(8) and
LOG_CONSOLE.
2001-01-18 19:25:40 +00:00
Bruce A. Mah 683ca03c88 Document I386_CPU kernel options, and note removal of I386_CPU
from the GENERIC kernel.

Reviewed by:	peter, jhb
2001-01-18 17:25:34 +00:00
Ruslan Ermilov 404d68d48f mdoc(7) police: add missing .Ed call. 2001-01-18 17:23:15 +00:00
Ruslan Ermilov 8d79d770c5 man(7) -> mdoc(7). 2001-01-18 16:04:48 +00:00
Søren Schmidt df32668400 When blocksize is set to 2352, alwas read 2352 bytes.
This means it might read more than just data, but that is exactly
what we want here (for reading VCD's fx)
2001-01-18 15:20:18 +00:00
Ruslan Ermilov 1abae7ee85 man(7) -> mdoc(7). 2001-01-18 12:56:17 +00:00
Ben Smithurst cb507c094f remove reference to nonexistent screenmap(5) manual page.
PR:		24305
Submitted by:	Marco van de Voort <marcov@stack.nl>
2001-01-18 11:59:01 +00:00
Ruslan Ermilov 9c48887207 mdoc(7) police:
Use proper macros for variables and their types, removed
hard sentence breaks, added a bunch of cross references.
2001-01-18 09:42:50 +00:00
John Baldwin dcfc09d931 Protect p_stat and p_oncpu with sched_lock in forward_signal(). 2001-01-18 08:19:25 +00:00
Jordan K. Hubbard 627f8f8b57 Note that /stand/sysinstall is deprecated.
Forgotten by:	jhb
2001-01-18 08:13:38 +00:00
Peter Wemm 4a3e427f20 Deal with table parsing bugs caused by out-of-order record entries.
Complain about out-of-order entries.  This fixes the 'mp extended
table HOSED!" report on the DL360 we have here with the "fixed" compaq
bios rom to fix the table length off-by-one error.
2001-01-18 07:42:02 +00:00
Jeroen Ruigrok van der Werven 047efaadd5 Add a smal line of text which indicates I am working on updating
this.  <almost exactly 6 years after Garrett>
2001-01-18 07:19:25 +00:00
Jun-ichiro itojun Hagino 1723dbbbf6 workaround; be sure to initialize nd6 interface information when IPv6
interface address gets added.  this will avoid presenting EMSGSIZE when
outgoing interface is down (and never brought up).

sync with kame.
2001-01-18 06:07:53 +00:00
Nick Hibma a3698b8a7f Nikon E990 and Nomad MP3 player Ids.
Submitted by:	pete@altadena.net
2001-01-18 00:15:49 +00:00
Peter Wemm c237ca8da1 Previous commit was:
Submitted by: Bart Thate <freebsd@1st.dudi.org>
2001-01-17 22:37:52 +00:00
Peter Wemm ba014c35dc Argh! add card_if.h to the generated list. This fixes kernel builds for
those who haven't added 'NO_MODULES=off' to /etc/make.conf.
2001-01-17 22:36:49 +00:00
Ben Smithurst 23c326d124 Document the restrictions on changing times in high securelevels.
PR:		23502
Submitted by:	Robert Boyd <rboyd@pokerspot.com>
2001-01-17 21:27:54 +00:00
Ben Smithurst b83c969d48 Document EHOSTDOWN error.
PR:		24410
Submitted by:	Martin Horcicka <horcicka@vol.cz>
2001-01-17 21:02:50 +00:00
Chris D. Faulhaber 401643c23e Clarify comments referring to strlcat() usage
Obtained from:	OpenBSD
2001-01-17 20:51:20 +00:00
Chris D. Faulhaber 420923e972 - Reverse the order of two loop invariant to ensure strlcat() does not
attempt to read memory when siz is 0
- Clarify comments referring to strlcat() usage

PR:		24278, 24295
Submitted by:	Tony Finch <dot@dotat.at>
		Richard Kettlewell <rjk@greenend.org.uk>
Reviewed by:	-audit
2001-01-17 20:51:16 +00:00
Wilko Bulte c059fe98ac Note fix for isp that made certain CDROM attach fail.
PR:		22650
2001-01-17 20:42:29 +00:00
John Baldwin d3fe3a0af7 The example install.cfg now lives in /usr/src/usr.sbin/sysinstall. 2001-01-17 19:52:16 +00:00
John Baldwin 25edf1a5eb Look for help files in /usr/src/usr.sbin/sysinstall instead of
/usr/src/release/sysinstall.
2001-01-17 19:51:08 +00:00
John Baldwin 0652b882c8 Tell users to run /usr/sbin/sysinstall now instead of /stand/sysinstall.
Reminded by:	jkh
2001-01-17 19:29:53 +00:00
Ben Smithurst 4f6964d072 Merge the documentation for sigsetmask() and sigblock() into a
single manual page, appropriately linked, since this removes the
decision of which page the (previously non-existent) sigmask.2
MLINK should point at.

Submitted by:	will
2001-01-17 19:20:58 +00:00
Ruslan Ermilov 1b51e5d0ce man(7) -> mdoc(7). 2001-01-17 18:26:21 +00:00
Ruslan Ermilov 86a64baacd Add librpcsvc. 2001-01-17 18:19:06 +00:00
Warner Losh aac7dfeae8 Catchup from my holiday lull:
o libcrypt not a symlink.
o hw.sndunit -> hw.snd.unit
o burncd / kernel changes
o I386_CPU now mutually exclusive with all other CPU types.
2001-01-17 17:59:09 +00:00
Duncan Barclay a07736d0f6 Take advantage of the fixes to the pcic code that allows multiple
active memory maps. This removes the need to change the memory
map from common to attribute every time a packet is sent/received.

This increases performance and decreases cpu load (ping times on
slow machines improve by about 1.5ms).

Move out the old common memory/attrbiute memory hack functions to a
new header file to tidy up the main code. I want to keep them available
for a while.
2001-01-17 17:55:00 +00:00
Andrey A. Chernov 24b01c2bd0 Activate Greek message catalog 2001-01-17 16:54:43 +00:00
Andrey A. Chernov 4d18cd83d1 Add Greek collate
PR:		24324
Submitted by:	past@netmode.ntua.gr
2001-01-17 16:47:28 +00:00
Andrey A. Chernov c6257e4afd Add Greek keyboard
PR:		24324
Submitted by:	past@netmode.ntua.gr
2001-01-17 16:27:47 +00:00
Andrey A. Chernov 51347d4e77 Add iso07 fonts
PR:		24324
Submitted by:	past@netmode.ntua.gr
2001-01-17 15:57:22 +00:00
Andrey A. Chernov 74d7bac3c7 Add Greek support
PR:		24324
Submitted by:	past@netmode.ntua.gr
2001-01-17 13:43:20 +00:00
Andrey A. Chernov fd4d93e56c Add Greek support
PR:		24324
Submitted by:	past@netmode.ntua.gr
2001-01-17 13:30:16 +00:00
Andrey A. Chernov 9073168b1b Add el_GR.ISO_8859-7 2001-01-17 13:15:46 +00:00
Peter Wemm 2ca37b5a4f Add NEWCARD hooks. This seems to work just fine. 2001-01-17 12:31:59 +00:00
Ben Smithurst 6164dd8137 document ${KERNEL}
PR:		24404
Submitted by:	Mike Meyer <mwm@mired.org>
2001-01-17 11:51:43 +00:00
Ruslan Ermilov e39c397610 rstat(1) and rstat_svc(8) are the early versions of
the rup(1) and rpc.rstatd(8) manpages respectively.
2001-01-17 11:50:42 +00:00
Ben Smithurst 92fbe861c6 Actually add build.7 to the Makefile, 2 months late.
PR:		24405
Submitted by:	Mike Meyer <mwm@mired.org>
2001-01-17 11:11:02 +00:00
Søren Schmidt af152621e5 Add first cut support for the ATA100 capable VIA82c686b. 2001-01-17 09:22:13 +00:00
Ruslan Ermilov c0f67a683a man(7) -> mdoc(7). 2001-01-17 09:15:13 +00:00
Ruslan Ermilov 0985ff699a mdoc(7) police: compact a few lists for better output. 2001-01-17 09:07:31 +00:00
Ruslan Ermilov 736bc1b8dd mdoc(7) police: removed empty line (mdocNG does not like them),
columnate ENVIRONMENT variables.
2001-01-17 08:32:08 +00:00