yamt
7abb70e1a5
scsipi_completion_thread:
...
if we seemt to need more resources after doing ADAPTER_REQ_GROW_RESOURCES,
yield cpu rather than busy-looping. PR/25164.
2005-04-04 11:26:50 +00:00
martti
d927f0a6a7
s/Finish/Finnish/
2005-04-04 09:08:54 +00:00
jmcneill
c74eb31f21
* Add support for skipping either the modem or audio AC'97 probes
...
via host_flags: AC97_HOST_SKIP_AUDIO, AC97_HOST_SKIP_MODEM
* If we're dealing with a modem codec, print the extended modem
capabilities.
* Add basic AC'97 modem initialization support.
* Add some (but not all) AC'97 modem registers. More will be added later.
2005-04-04 02:08:58 +00:00
bouyer
0eb1762804
Add the ksym pseudo-device, for the benefit of kmem grovelers.
...
Pointed out by Jason Thorpe on port-xen.
2005-04-03 19:29:18 +00:00
martin
b14ee41fe5
Use UIO_SYSSPACE for NDINIT. Found by Eike Dehling.
2005-04-03 17:29:15 +00:00
martti
58b8abcbf8
Upgraded IPFilter to 4.1.8
2005-04-03 15:05:30 +00:00
martti
c775aec128
Import IPFilter 4.1.8
2005-04-03 15:01:04 +00:00
jdolecek
f96a65dd86
claim tra
2005-04-03 11:40:09 +00:00
jdolecek
6aef8a6e14
add tra* at mca?
2005-04-03 11:39:07 +00:00
jdolecek
8914aa326e
white space cleanup, some KNF, long line wrapup
2005-04-03 11:36:32 +00:00
jdolecek
1c89179871
Add driver for MCA Tiara LANCard / Fujitsu mb86950 EtherStar. Driver provided
...
in PR kern/26899 by Dave Barnes.
2005-04-03 11:21:44 +00:00
jdolecek
29ff38e72d
regen: add one more Tiara ID and Standard MicroSystems 3016/MC ID
2005-04-03 11:19:30 +00:00
jdolecek
91575be17a
add one more Tiara ID and Standard MicroSystems 3016/MC ID
2005-04-03 11:17:49 +00:00
tron
6589458a53
Make sure that prefixes get purged. This fixes PR kern/21189,
...
PR kern/25968 and PR kern/27873.
2005-04-03 11:02:27 +00:00
jdolecek
fc38d3f3ac
Make it possible for attachment to specify that the 16bit access shouldn't
...
be toggled in WE_MEM_{ENABLE|DISABLE} when receiving or transmitting packets.
Use this to switch the toggle off for MCA cards, since it causes NIC resets
there.
Fixes PR kern/26895 by Dave Barnes.
2005-04-03 10:56:59 +00:00
yamt
4b935040d0
tcp_input: update a comment to match with the code.
2005-04-03 05:02:46 +00:00
christos
8f3566ce61
PR/29782: Martin Husemann: procfs can not unmount when some process has its
...
current directory in curproc. Fix from Pedro Martelletto:
We cannot call vgone() from procfs_inactive() if we are coming from
vclean(). that's what's probably causing the deadlock.
2005-04-02 06:15:09 +00:00
perseant
1ebfc508b6
Protect various per-fs structures with fs->lfs_interlock simple_lock, to
...
improve behavior in the multiprocessor case. Add debugging segment-lock
assertion statements.
2005-04-01 21:59:46 +00:00
yamt
e6d2a0e747
db_write_text: make this work on xen.
2005-04-01 13:00:57 +00:00
yamt
cde0e21683
unwrap short lines.
2005-04-01 12:37:27 +00:00
yamt
cf8d73702e
bump to 3.99.3.
...
uvm_km_* API changes. (yamt-km merge)
2005-04-01 12:01:32 +00:00
yamt
6b2d8b66a4
merge yamt-km branch.
...
- don't use managed mappings/backing objects for wired memory allocations.
save some resources like pv_entry. also fix (most of) PR/27030.
- simplify kernel memory management API.
- simplify pmap bootstrap of some ports.
- some related cleanups.
2005-04-01 11:59:21 +00:00
matt
6cd3611cff
P.k.py lp.kcrgow ao mabf ru go oycnn dak. _n.iajf_ t.fxrapeov
...
Allprk.e xf jrp.v
2005-04-01 05:49:26 +00:00
gavan
b246dedab4
Due to the increasing rarity of legacy keyboards, switch to a more contemporary default
...
layout for PC style keyboards.
2005-04-01 01:49:52 +00:00
christos
72ad9c4bc4
no point in assigning to ifq twice.
2005-03-31 21:19:35 +00:00
christos
200dc55908
fix compiling with -DALTQ
2005-03-31 21:14:52 +00:00
bouyer
78ea15ef7f
Don't eventually leak vnx and bp on unconfigure, pointed out by YAMAMOTO
...
Takashi. Instead, let the current I/O complete before killing the thread.
2005-03-31 18:02:16 +00:00
explorer
fcc0a1f852
Fix error with ifq not being set before use. Explicitly set it to NULL just before it may be set to the fastq, since if this becomes a loop (and in one case already is) this will always work. ifq_enqueue2() is designed to handle this case.
2005-03-31 17:07:39 +00:00
explorer
4efbb8a57b
Looks like a 'struct buf *bp' was left over from a previosu commit. Since kernel builds stop on this, removing it.
2005-03-31 16:46:13 +00:00
drochner
b3d10c788a
regen
2005-03-31 16:36:03 +00:00
drochner
014fa21e82
emulate setreuid()/setregid(), from Eric Schnoebelen per PR
...
port-alpha/21870
2005-03-31 16:34:54 +00:00
christos
d7ec95d370
factor out the interface queueing code into two functions. One used by
...
the non point-to-point interfaces that has one queue, and one used by
the point to point interfaces that has two queues. No functional changes.
XXX: The ALTQ stuff makes the code ugly.
XXX: More cleanup to come
2005-03-31 15:48:13 +00:00
bouyer
f5abf7cc11
Use DEV_STRATEGY() instead of VOP_STRATEGY(). YAMAMOTO Takashi says it's not
...
safe to use VOP_STRATEGY() from interrupt context.
2005-03-31 13:35:02 +00:00
yamt
99229e5d39
introduce a function to drain bufq and use it where appropriate.
2005-03-31 11:28:53 +00:00
chs
c92634930b
fix validation of new values when setting vm.{hi,low}water. fixes PR 29651.
2005-03-31 02:34:10 +00:00
bouyer
007f04c4a8
Make vnd do I/O to the underlying file from thread context. This
...
allows the strategy routine to be called from interrupt context, fixes
PR kern/29775 by Juan RP.
Now that pool_get() is only called from thread context, change PR_NOWAIT to
PR_WAITOK. Fix PR kern/26272 by Juergen Hannken-Illjes.
OK'd by thorpej@
2005-03-30 19:23:08 +00:00
christos
f9a341d1f6
PR/19837: Stephen Ma: signal(SIGCHLD, SIG_IGN) should not create zombies.
2005-03-30 17:07:50 +00:00
is
a0c9bc9616
Add IPv6 over GRE (contributed by Gert Doering in PR 29150).
2005-03-30 16:34:54 +00:00
skrll
8221a0eff7
Correct the comment against FKIOCTL and put the comment against FMASK back
...
where it belongs.
2005-03-30 13:15:13 +00:00
yamt
e53142951c
- use IFQ_POLL/DEQUEUE rather than IF_DEQUEUE/PREPEND.
...
- handle tx queue full correctly.
2005-03-30 11:38:06 +00:00
yamt
73a5d8f913
s of sack is selective, not selection. pointed by Michael Eriksson.
2005-03-30 11:09:16 +00:00
yamt
8b0967ff45
protect tcpipqent with splvm.
2005-03-29 20:10:16 +00:00
yamt
c08e90ff51
tcp_output: lock reass queue when building sack.
2005-03-29 20:09:24 +00:00
christos
518587967d
Re-enable chgsbsize. It should work now.
2005-03-29 18:18:06 +00:00
jmc
9c8f42a9a5
Add missing $HOST_SH to execution of walnut-mkimg.sh
2005-03-29 17:58:15 +00:00
he
8c10d661b0
Properly disable the bulk of chgsbsize(), completing revision 1.84.
...
This does an #if 0 / #endif, so that no code (or declarations!) are
left after the first "return 1", making this compilable for vax and
playsation2 again, both of which use gcc 2.95.3 or similar.
2005-03-29 15:57:17 +00:00
yamt
d1238feea1
re_encap: set RTK_TDESC_CMD_IPCSUM if any of checksum offloading is requested.
...
otherwise, RTK_TDESC_CMD_TCPCSUM/UDPCSUM don't seem to make any effect.
2005-03-29 09:52:31 +00:00
yamt
2c742b20e6
ip_reass: clear stale csum_flags.
2005-03-29 09:37:08 +00:00
yamt
c5544c42b5
nfsrv_rcv: don't do so_receive from socket upcall context.
...
while there's little benefits, it complicates locking and confuses
flow control.
2005-03-29 09:22:35 +00:00
thorpej
95cc3e3c00
- Add a alpha_shared_intr_reset_strays() function that resets the stray
...
interrupt counter for a given shared interrupt descriptor.
- When an interrupt is successfully handled, reset the strays counter,
thus preventing a "slow leak" from eventually shutting off the interrupt
vector. Idea taken from pci_kn300.c (which was changed to use the new
alpha_shared_intr_reset_strays() function).
2005-03-29 04:06:20 +00:00