enami
f9c7a69ff5
Call the routine to calculate callwheelsize from allocsys() instead of
...
main() since some port like alpha and mips calls allocsys() before main()
is called. While I'm here, I renamed some function.
2000-03-24 11:57:14 +00:00
hannken
43e3ea96f3
Fix typos from last commit (callout).
2000-03-24 11:46:46 +00:00
hannken
f7049d302a
Fix a typo from last commit.
2000-03-24 10:30:12 +00:00
nisimura
58e4b0efbe
A minimal fix to make this compilable.
2000-03-24 08:24:29 +00:00
itojun
e2d658087d
move ia6->ia6_dad_ch to dp->dad_timer_ch, to ease KAME code sharing.
...
now in6_var.h does not need to pull sys/callout.h in.
2000-03-24 04:09:04 +00:00
nisimura
3af954d380
Have ST_REG_SR mnemonic for status register consistent with others.
2000-03-24 02:02:03 +00:00
thorpej
4ad898818b
Fallout from callout.
2000-03-24 01:04:11 +00:00
is
128258c1a2
Initial IOBlix support. Only lpt and com; lpt untested; com assumes 24 MHz
...
clock (needs autoprobe of clock speed).
2000-03-23 22:44:42 +00:00
mycroft
d07e505604
Rather than guessing at the location of the PMCSR, use the pointer returned by
...
pci_get_capability(). (This is, after all, a standardized interface...)
2000-03-23 22:23:03 +00:00
thorpej
2b58edac40
Remove the CALLWHEEL_SORT code. It was implemented just for experimenting,
...
and I had no plans to ever enable it. A record of the code is now in the
CVS history of the file, so we can unclutter now.
2000-03-23 20:51:09 +00:00
ws
0bb2093748
Add IPKDB support to GDB.
2000-03-23 20:44:40 +00:00
thorpej
7c8b72d592
uiomove(): if we're informed that we should yield the CPU, use the new
...
preempt() primitive to do so.
2000-03-23 20:39:58 +00:00
thorpej
68054a285a
Track if a process has been through a round-robin cycle without yielding
...
the CPU, and mark that it should yield if that happens.
Based on a discussion with Artur Grabowski.
2000-03-23 20:37:58 +00:00
ws
4eaea04eb7
Fix a few (essential!) tyops.
...
During initialization, don't buy any non-broadcast packet as being
from our debugger.
2000-03-23 20:33:37 +00:00
mycroft
d5d33d2b7f
Add some text about `dialout' devices.
2000-03-23 19:48:29 +00:00
mycroft
9acd4e0870
Fix uninitialized uuconf_fcarrier and uuconf_fhardflow in the case where the
...
port or line name was specified as an option. Fixes PR 9667.
2000-03-23 19:05:40 +00:00
thorpej
6a6358ed5c
Shake out some bugs from the callout changes.
2000-03-23 18:59:10 +00:00
thorpej
75f3a36686
Remove bogus callout_init(), pointed out by soren@netbsd.org.
2000-03-23 17:51:51 +00:00
joda
8ff53e0069
regen
2000-03-23 15:11:26 +00:00
joda
f68049679a
add two Intel 82810E devices (from IWAMOTO Toshihiro)
2000-03-23 15:10:56 +00:00
soren
2c88f0bb92
s/32-bits/32-bit/ (Hi Al!)
2000-03-23 15:04:49 +00:00
oster
807e453c32
When displaying component labels, indicate whether or not the set is
...
marked as being the one that should be used for the root partition.
2000-03-23 14:50:36 +00:00
soren
1c965174b0
Make MIPS1+MIPS3 compile again.
2000-03-23 14:49:29 +00:00
soren
93c531f872
Tiny comment update.
2000-03-23 14:32:41 +00:00
onoe
6654f3bc85
While am79c930 controller allows unaligned access, bus_space_read/write
...
must be aligned. So awi_read/write_2/4 issues multiple bsr1/bsw1 when
unaligned.
2000-03-23 13:57:58 +00:00
ad
9753adee2f
Previous was incomplete. Tsk.
2000-03-23 13:49:49 +00:00
ad
5cc8601c8f
Identify individual models correctly.
2000-03-23 11:33:35 +00:00
ad
90ae76da4b
Regen.
2000-03-23 11:18:09 +00:00
ad
96ec85342f
Back out rev 1.197.
2000-03-23 11:17:32 +00:00
enami
72a859fee9
Fix oversight in prevous commit to keep #if 0' outed code make sense.
2000-03-23 08:33:59 +00:00
enami
dce7fa489c
Fix a typo in comment in previous commit.
2000-03-23 08:20:06 +00:00
enami
c4845c62ca
- Convert to use callout(9).
...
- Remove a redundant assignment.
2000-03-23 08:18:11 +00:00
nisimura
608ce86497
- Have physical address for MIPS_PHYS_TO_KSEG1() macro.
...
- Make consistent function declarations.
- White spaces.
2000-03-23 08:09:54 +00:00
onoe
5e2634ff53
Added /usr/include/dev/ic/awictl.h
2000-03-23 07:28:00 +00:00
thorpej
6e327348f1
callout.9 pages.
2000-03-23 07:12:36 +00:00
thorpej
fed1844c73
Documentation for new callout interfaces.
2000-03-23 07:05:30 +00:00
thorpej
dc9dbd1a78
1.4W -- new callout code. Almost there!
2000-03-23 07:04:42 +00:00
thorpej
fc96443d15
New callout mechanism with two major improvements over the old
...
timeout()/untimeout() API:
- Clients supply callout handle storage, thus eliminating problems of
resource allocation.
- Insertion and removal of callouts is constant time, important as
this facility is used quite a lot in the kernel.
The old timeout()/untimeout() API has been removed from the kernel.
2000-03-23 07:01:25 +00:00
thorpej
7b918b4088
New callout mechanism with two major improvements over the old
...
timeout()/untimeout() API:
- Clients supply callout handle storage, thus eliminating problems of
resource allocation.
- Insertion and removal of callouts is constant time, important as
this facility is used quite a lot in the kernel.
The old timeout()/untimeout() API has been removed from the kernel.
2000-03-23 06:40:33 +00:00
thorpej
b667a5a357
New callout mechanism with two major improvements over the old
...
timeout()/untimeout() API:
- Clients supply callout handle storage, thus eliminating problems of
resource allocation.
- Insertion and removal of callouts is constant time, important as
this facility is used quite a lot in the kernel.
The old timeout()/untimeout() API has been removed from the kernel.
2000-03-23 06:30:07 +00:00
onoe
3ae525eaa3
Sorry I forgot to commit this file..
2000-03-23 06:04:24 +00:00
mycroft
dcd265af9c
GC unused variable.
2000-03-23 05:26:00 +00:00
mycroft
e695f87102
Remove AWICTL stuff that is obsoleted by SIOC[SG]IFMEDIA and SIOC[SG]80211NWID.
...
Also, disable AWICTL completely until awictl.h appears.
2000-03-23 05:19:44 +00:00
thorpej
dabbfde70a
Implement fdremove() which is used in place of all the code that
...
did the "fdp->fd_ofiles[fd] = 0" assignment; fdremove() make sure
the fd_freefiles hints stay in sync.
From OpenBSD.
2000-03-23 05:16:12 +00:00
mycroft
78a4ddbd60
Do a little rearrangement here. No functional change, but it's a little
...
clearer what's going on.
The assembler still whines about the lack of `.cprestore' when profiling,
but I'm not going there right now.
2000-03-23 04:58:59 +00:00
mycroft
58d6d5d60c
Add awi.
2000-03-23 04:43:41 +00:00
thorpej
3e93b28029
Use a software interrupt for tty input processing, not a callout.
2000-03-23 01:04:10 +00:00
mycroft
bcb26b717f
Add the Nokia C020 WLAN card.
2000-03-22 22:33:47 +00:00
simonb
a04e169a80
Include <string.h> to get a prototype for memset(). Fixes build
...
problems on alpha noted by Tim Rightnour on current-users.
2000-03-22 21:45:02 +00:00
mycroft
b6a2605ef2
Regen.
2000-03-22 21:41:48 +00:00