Joerg Wunsch
72fb076dce
Don't give a bad example by starting a struct tag name with an
...
underscore. Names starting with an underscore are reserved.
2001-07-03 16:22:42 +00:00
John Baldwin
29905510e0
Remove spl's in uio_yield() that are covered by the sched_lock.
2001-07-03 15:58:37 +00:00
Yaroslav Tykhiy
c3cc3cce4f
Fix a typo: "must be have" -> "must have"
...
MFC after: 5 days
2001-07-03 15:02:36 +00:00
Yaroslav Tykhiy
e2a7d2044a
First, fix a leftover of the cut'n'paste from the kld* pages:
...
change the name of the page (.Nm) from "kldstat" to "modstat".
Second, don't claim that modstat(2) always returns 0. Actually,
it behaves as most syscalls do - returns 0 on success, or -1
on failure.
MFC after: 5 days
2001-07-03 14:56:08 +00:00
Eivind Eklund
1b91bc6f2c
Use correct paths to postfix the way we install it
2001-07-03 14:16:45 +00:00
Cameron Grant
cbe7d6a3ed
remove obsolete typedefs.
...
only define INTR_TYPE_AV if it is not already defined.
2001-07-03 12:53:09 +00:00
Hajimu UMEMOTO
67defad7a1
use TAILQ_FOREACH() in searching address list
...
Obtained from: KAME
MFC after: 1 week
2001-07-03 11:54:07 +00:00
Mitsuru IWASAKI
6cee406625
Add Transmeta Crusoe LongRun support.
...
Submitted by: Tamotsu HATTORI <athlete@kta.att.ne.jp>
Reviewed by: arch@ folks
MFC after: 1 week
2001-07-03 10:03:24 +00:00
Ruslan Ermilov
ac731e6941
Fixed the world breakage in rev. 1.8 (space after -I).
...
While here, removed the GCCism (replaced with WARNS?=1).
2001-07-03 09:48:28 +00:00
Dima Dorfman
67196eb413
Remove duplicate $FreeBSD$ lines.
...
Approved by: bmah
2001-07-03 08:32:34 +00:00
Dima Dorfman
d8f203e797
New release notes: network device cloning, ich sound driver.
...
# I have deliberately not mentioned the kernel compile directory move;
# people using buildworld aren't affected, and those that aren't had
# better be reading cvs-all and/or src/UPDATING.
2001-07-03 08:25:54 +00:00
Dima Dorfman
8084b7b4c4
Mention hardware supported by the new ich sound driver.
...
Source: PR 25507
2001-07-03 08:19:06 +00:00
John Baldwin
d68a8cc0ab
Remove commented-out garbage that skipped updating schedcpu() stats for
...
ithreads in SWAIT.
2001-07-03 08:03:56 +00:00
John Baldwin
97b4306f0f
Just check p_oncpu when determining if a process is executing or not.
...
We already did this in the SMP case, and it is now maintained in the UP
case as well, and makes the code slightly more readable. Note that
curproc is always executing, thus the p != curproc test does not need to
be performed if the p_oncpu check is made.
2001-07-03 08:00:57 +00:00
John Baldwin
9d36b83e2c
Axe spl's that are covered by the sched_lock (and have been for quite
...
some time.)
2001-07-03 07:53:35 +00:00
Mike Smith
b6695bd0e8
Add a manpage for the acpi super-device. This is still fairly brief, and
...
will need to be fleshed out as the system's design solidifies.
2001-07-03 07:45:04 +00:00
John Baldwin
36f1548b96
Include the wait message and channel for msleep() in the KTR tracepoint.
2001-07-03 07:39:06 +00:00
John Baldwin
b62b9b648b
Fix a XXX comment by moving the initialization of the number of pbuf's
...
for the vnode pager to a new vnode pager init method instead of making it
a hack in getpages().
2001-07-03 07:35:56 +00:00
John Baldwin
8f451b4114
Remove bogus need_resched() of the current CPU in roundrobin().
...
We don't actually need to force a context switch of the current process.
The act of firing the event triggers a context switch to softclock() and
then switching back out again which is equivalent to a preemption, thus
no further work is needed on the local CPU.
2001-07-03 05:33:09 +00:00
John Baldwin
64acb05b1c
Grab Giant around postsig() since sendsig() can call into the vm to
...
grow the stack and we already needed Giant for KTRACE.
2001-07-03 05:27:53 +00:00
John Baldwin
aa5d2a75d8
Quiet warning by removing ast() prototype.
...
Forgotten by: jhb (me)
2001-07-03 05:11:55 +00:00
John Baldwin
d2a5bcc3d3
Allow Giant to be recursed when a process terminates.
2001-07-03 05:09:48 +00:00
Mike Heffner
28059d16ea
Argh...this isn't ready for WARNS=2 on alpha.
2001-07-03 03:34:42 +00:00
Mike Heffner
6c120f4628
Constify and lockdown with WARNS=2.
...
Submitted by: Mike Barcroft <mike@q9media.com>
MFC after: 2 weeks
2001-07-03 03:22:49 +00:00
Brian Somers
7aab014be6
Do away with the ``err'' variable.
...
Inspired by: kris
2001-07-03 01:02:26 +00:00
Dima Dorfman
6060f58628
Document continuation line support.
...
PR: 8479
Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
2001-07-02 23:59:06 +00:00
Dima Dorfman
376f839026
Correct handling of continuation lines. Instead of treating the
...
backslash as nothing, treat it like a space so that adjacent lines
aren't glued together.
PR: 8479
Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
2001-07-02 23:56:01 +00:00
Brian Feldman
bc0e6469ff
Correct obviously wrong mistakes.
2001-07-02 23:47:23 +00:00
Dima Dorfman
9e12bdbd79
EACCES may be returned if write permission was denied as well.
...
PR: 28553
Submitted by: Ronald F. Guilmette <rfg@monkeys.com>
2001-07-02 22:53:40 +00:00
Dima Dorfman
561aef9a69
Revert previous commit; it broke large file support on platforms that
...
had it to begin with (e.g., the Alpha).
Submitted by: bde
2001-07-02 22:51:33 +00:00
Joerg Wunsch
e42ad56f1a
Use the printstatus() function from ${.CURDIR}/../fdread/fdutil.c to
...
give a bit more information about up to 10 errors encountered during
formatting (unless -q has been specified, of course).
While being here, removed a bitrotten comment in the Makefile, and
kill the old Emacs local variable stuff at the end of fdformat.c
that's no longer useful anway.
2001-07-02 21:24:03 +00:00
Joerg Wunsch
65217f13ff
Break out the function to print the FDC error information into
...
fdutil.c so it can be used elsewhere.
2001-07-02 21:21:58 +00:00
Mike Smith
e1b835f025
Add a couple of major numbers for ICP Vortex (who were acquired by Intel,
...
thus taking over the SRC controllers).
2001-07-02 21:09:05 +00:00
Brooks Davis
cdb5d37b3e
Create gif devices in the "gifconfig" stage while configuring them.
...
Reviewed by: ru, ume
Obtained from: NetBSD
MFC after: 1 week
2001-07-02 21:08:48 +00:00
Brooks Davis
53dab5fe7b
gif(4) and stf(4) modernization:
...
- Remove gif dependencies from stf.
- Make gif and stf into modules
- Make gif cloneable.
PR: kern/27983
Reviewed by: ru, ume
Obtained from: NetBSD
MFC after: 1 week
2001-07-02 21:02:09 +00:00
Brooks Davis
3e61dca08d
Support network device cloning via create and destroy options.
...
Reviewed by: ru, ume
Obtained from: NetBSD
MFC after: 1 week
2001-07-02 20:52:34 +00:00
Brooks Davis
ad37a95b71
Document network device cloning ioctls.
...
Reviewed by: ru, ume
MFC after: 1 week
2001-07-02 20:50:37 +00:00
Brooks Davis
30aad87d72
Add kernel infrastructure for network device cloning.
...
Reviewed by: ru, ume
Obtained from: NetBSD
MFC after: 1 week
2001-07-02 20:49:25 +00:00
Wilko Bulte
cf7ae120d9
s/Netherlands/the Netherlands
...
ISO3166 is *plain wrong* ...
Requested by: grog
MFC after: 1 week
2001-07-02 18:31:34 +00:00
Hajimu UMEMOTO
96fbd5a8e7
correct arg to getopt (-P takes arg).
...
Submitted by: mikeh
MFC after: 1 week
2001-07-02 17:50:50 +00:00
Matt Jacob
b29f9e40f5
A slightly more complete change to timeouts:
...
1. Add SA_IO_TIMEOUT as an option (4 minutes default) to cover reads,
writes, wfm, test unit ready.
2. Add internal SCSIOP_TIMEOUT (e.g., for mode sense) at 1 minute. This
should not require an option, but is cleaner to parameterize.
MFC after: 1 week
2001-07-02 17:48:59 +00:00
Matt Jacob
5640e0ac5a
make it compile again in -current
2001-07-02 17:36:11 +00:00
Brooks Davis
9d9d5c9ba4
Add Cisco Aironet 350 Series.
...
Approved by: bmah
2001-07-02 16:56:12 +00:00
Lars Fredriksen
71cad36771
Reviewed by: Matthew Jacob
...
Changed the timeout to wait for writing of filemarks to complete from 1
minute to 3 minutes. This should probably be enhanced to be a sysctl variable.
2001-07-02 16:39:17 +00:00
Assar Westerlund
80631942e5
add MR-AFS port numbers
2001-07-02 16:03:50 +00:00
Crist J. Clark
92a99815a8
While in there fixing a fragment logging bug, fix it so we log
...
fragments "right." Log fragment information tcpdump(8)-style,
Jul 1 19:38:45 bubbles /boot/kernel/kernel: ipfw: 1000 Accept ICMP:8.0 192.168.64.60 192.168.64.20 in via ep0 (frag 53113:1480@0+)
That is, instead of the old,
... Fragment = <offset/8>
Do,
... (frag <IP ID>:<data len>@<offset>[+])
PR: kern/23446
Approved by: ru
MFC after: 1 week
2001-07-02 15:50:31 +00:00
Brian Feldman
5e6abe66d8
Detect the device on e.g. Dell OptiPlex GX110s.
2001-07-02 15:29:38 +00:00
Brian Feldman
0cfa4761f7
Make all this compile on 4.3, modulus sbuf.
2001-07-02 15:27:28 +00:00
Crist J. Clark
6ca048f825
Lose any stray host bits that a user may have entered when providing
...
a network number and netmask to the '-a' option.
Approved by: ru
MFC after: 1 week
2001-07-02 15:26:47 +00:00
Benno Rice
e5a44502dd
Add device ID for the OHCI controller in the Apple KeyLargo chip.
2001-07-02 14:03:25 +00:00