christos
100356d547
remove __GNUC__ lossage.
2002-07-16 19:53:37 +00:00
hannken
10ff5e6607
Implement a new device buffer queue interface.
...
One basic struct, a function to setup a queue with a specific strategy and
three macros to put buf's into the queue, get and remove the next buf or
get the next buf without removal.
The BUFQ_XXX interface will be removed in the future.
The B_ORDERED flag is not longer supported.
Approved by: Jason R. Thorpe <thorpej@wasabisystems.com>
2002-07-16 18:03:17 +00:00
thorpej
64a96a4664
Rename DTYPE_SYSTRACE to DTYPE_MISC. DTYPE_MISC can now be used by
...
any misc. pseudo-device which requires cloning semantics.
2002-07-16 16:40:55 +00:00
matt
3dc1994d70
Don't install extintr handler if not supplied.
...
Make panic message more informative.
2002-07-16 16:39:12 +00:00
christos
5c7b6b0606
modernize:
...
- use wait4
- KNF
- factor out common printf code
- use err/warn
- use getprogname
2002-07-16 15:41:57 +00:00
ichiro
2255ed4ecb
add ixpcom to cdevsw
2002-07-16 14:20:04 +00:00
mrg
ec69f2b1fd
fix a bug introduced in rev 1.19:
...
- finish bus_space-ification of cs4231_sbus_trigger_input().
this stops recording on the sbus cs4231 from crashing.
2002-07-16 11:48:45 +00:00
agc
ca35a8f6ac
Make this file compile without warnings on systems where chars are unsigned.
2002-07-16 10:12:28 +00:00
agc
7907df8eaa
correct pfil_run_hooks.0 -> .9, and put the pfil_* manual pages in the right
...
system package
2002-07-16 10:04:39 +00:00
abs
fbb7ab458d
Add Jenoptik camera/mp3 player
2002-07-16 09:19:29 +00:00
wiz
f277e86bfd
Punctuation/casing fixes, and don't repeat too verbosely how to set sysctl()s.
...
Noted by Martin Husemann.
2002-07-16 09:03:10 +00:00
itojun
5350bc28c2
fix safeputchar(). sync w/ tcpdump.org
2002-07-16 04:17:46 +00:00
rafal
4b77d56d71
Skip blank lines in the input file (mixerctl.conf).
2002-07-16 03:24:24 +00:00
itojun
72b53650e0
copyright cleanup from openbsd (thanks!)
...
>license change from William LeFebvre <wnl@groupsys.com>; top is now BSD
>licensed. this same license will show up on his next release as well.
2002-07-16 00:40:51 +00:00
lha
5fd41a12f3
add missing pfil_head_get in manpage
...
add missing MLINKS
add new files to sets lists
fixes my own pr kern/15060
2002-07-16 00:36:45 +00:00
lha
a9c28fe019
add myself
2002-07-16 00:31:44 +00:00
christos
85c9292513
Add a small regression test for getopt.
2002-07-15 22:04:00 +00:00
wiz
7dc4401b11
Add a paragraph about MSS clamping (refer
...
http://www.netbsd.org/Documentation/network/pppoe/ )
on request by billc and martin. Some minor fixes.
2002-07-15 22:03:00 +00:00
drochner
8badbffa2f
recognize a SMC9432BTX from PCI subsys id and tell the bus independant
...
backend that it bas a BNC port (just like the SMC9432BTX1)
2002-07-15 17:23:06 +00:00
ichiro
78573b4061
delete unneed file
2002-07-15 17:21:12 +00:00
ichiro
ed89c15166
add configuration file
...
Netwise APlication Platform Board
2002-07-15 17:18:03 +00:00
ichiro
3aee04fce7
add support ixp12x0 eva-board "IXM1200"
2002-07-15 17:13:30 +00:00
ichiro
7374c0afee
add support for ixp12x0
2002-07-15 16:27:15 +00:00
thorpej
b767b60c60
Add "(NetBSD nb3)" to the version string.
2002-07-15 15:44:53 +00:00
aymeric
1f11daa1ee
Bump to nb3, following revision 1.2 of expr.c
2002-07-15 15:12:48 +00:00
junyoung
f1216cb905
Replace with a much better one which covers the whole Unicode range,
...
from U+0000 to U+FFFF.
Contributed by Hye-Shik Chang <perky@freebsd.org>. Thanks, perky!
2002-07-15 13:40:06 +00:00
rafal
c4181ec121
Update sgimips portions of release notes to more closely match reality, esp.
...
after the removal of the kern-GENERIC set from sysinst. While here, fix up
some minor things (wording, bad markup, typoes) in the non-sgimips specific
common portions.
2002-07-15 12:47:58 +00:00
jdolecek
65822e1b55
Remove sa_sigaction member of struct sigaction, accidentaly added here
...
in rev. 1.26.
Problem pointed out by Antti Kantee.
2002-07-15 07:48:57 +00:00
grant
f7ddfc3676
add additional StuffIt format.
2002-07-15 06:07:16 +00:00
rafal
21b586407d
Since the O2 kernel doesn't work, don't bother giving users a choice to
...
install it. Discussed with Soren and Scott G. Taylor (who originally
suggested we do this).
2002-07-15 04:51:41 +00:00
rafal
653e0b546e
Fix boot device detection in the face of multiple SCSI controllers. This
...
isn't perfect (the NetBSD device units must match ARCS device numbers), but
it's better than randomly matching one of the devices. Fixes PR 16584 from
Scott G. Taylor.
2002-07-15 04:38:59 +00:00
mbw
0b1aae71e4
Properly name SPARCstation Voyager.
...
Mention that nell PCMCIA support works for Voyager as well as Sbus card.
2002-07-15 00:19:54 +00:00
chs
b1b5af79c2
when dropping a kernel loan, if this was the last loan-to-kernel but
...
the page is still loaned to an anon, we should put the page back on a
paging queue. this is because while pages loaned to the kernel really
do need to stay resident (since the kernel is accessing the physical
memory directly), pages loaned to anons can be paged out just fine.
(the page will be paged out twice, first to the object and then again
to the anon, but after that the page can be reused.)
2002-07-14 23:53:41 +00:00
itojun
572c4c4a3f
need to bzero() before rtalloc. KAME PR 432
2002-07-14 21:09:17 +00:00
chs
bfb698717d
use the SROM info to set the media in 2114[23] autonegotiation
...
rather than just fiddling the opmode CSR, since we might
need to change the SIA CSRs as well (eg. for some ZNYX cards).
from PR 17510.
2002-07-14 21:02:41 +00:00
chs
ef1115901f
put the OF buffer page in the BSS rather than allocate it at runtime.
...
from PR 14497.
2002-07-14 20:56:12 +00:00
augustss
92826242e2
Add a scanner (from OpenBSD).
2002-07-14 20:53:21 +00:00
augustss
42a78db8f1
Regen.
2002-07-14 20:52:30 +00:00
augustss
1f7f7ee488
Add a scanner (from OpenBSD).
2002-07-14 20:52:11 +00:00
matt
778e246527
Add sinf/cosf.
2002-07-14 19:55:24 +00:00
thorpej
c2a0c6fe7c
Add a missing ":" when printing the delay constant message.
2002-07-14 19:42:58 +00:00
jdolecek
f5cda4499d
missed trap.h
2002-07-14 17:34:01 +00:00
wiz
fd8d583021
Unifdef __STDC__. Remove __P() and register. ANSIfy.
2002-07-14 16:32:48 +00:00
wiz
51c0807f60
Unifdef __STDC__. Remove __P(). Remove register. ANSIfy.
2002-07-14 16:30:41 +00:00
wiz
279bdef494
Unifdef __STDC__. ANSIfy. Remove __P().
2002-07-14 15:34:58 +00:00
wiz
895dc72a69
Unifdef __STDC__. Remove __P(). ANSIfy.
2002-07-14 15:27:58 +00:00
drochner
08285ba648
explicitely set ds, es, fs and gs to 0 before calling kvm86;
...
use the right places in the trap frame (the 4 segment registers which
get loaded on a rti to VM86 mode) to set them for BIOS calls
(we have never set them to anything but 0 before, so it didn't matter)
2002-07-14 14:39:44 +00:00
drochner
ff2b8f83ec
fix typo which made textmode check always succeed
2002-07-14 13:56:20 +00:00
aymeric
169b0eb038
Bring in diff from 1.144.4.10 to 1.144.4.11, from the gcc CVS repository.
...
This fixes (at least) broken compilation of xkbcomp with -O2 on powerpc.
ChangeLog entry:
2001-05-17 Bernd Schmidt <bernds@redhat.com>
* expr.c (protect_from_queue): Protect against subsequent calls to
emit_queue.
(expand_expr, case ADDR_EXPR): Prevent protect_from_queue from being
too clever.
CVS log entry:
revision 1.144.4.11
date: 2001/05/17 17:01:06; author: bernds; state: Exp; lines: +10 -3
Fix queueing-related bugs
2002-07-14 13:55:38 +00:00
fvdl
c24cb24f0d
Update comment.
2002-07-14 12:30:36 +00:00