cvs commit: src/sys/dev/firewire firewire.c firewirereg.h fwdev.c
fwdma.c fwmem.c fwohci.c fwohci_pci.c fwohcivar.h if_fwe.c
if_fwevar.h if_fwip.c if_fwipvar.h sbp.c sbp_targ.c
Hidetoshi Shimokawa
simokawa at FreeBSD.org
Wed Jun 6 14:31:37 UTC 2007
simokawa 2007-06-06 14:31:36 UTC
FreeBSD src repository
Modified files:
sys/dev/firewire firewire.c firewirereg.h fwdev.c fwdma.c
fwmem.c fwohci.c fwohci_pci.c fwohcivar.h
if_fwe.c if_fwevar.h if_fwip.c
if_fwipvar.h sbp.c sbp_targ.c
Log:
MFp4: MPSAFE firewire stack.
- lock its own locks and drop Giant.
- create its own taskqueue thread.
- split interrupt routine
- use interrupt filter as a fast interrupt.
- run watchdog timer in taskqueue so that it should be
serialized with the bottom half.
- add extra sanity check for transaction labels.
disable ad-hoc workaround for unknown tlabels.
- add sleep/wakeup synchronization primitives
- don't reset OHCI in fwohci_stop()
Revision Changes Path
1.95 +214 -69 src/sys/dev/firewire/firewire.c
1.47 +27 -10 src/sys/dev/firewire/firewirereg.h
1.52 +67 -40 src/sys/dev/firewire/fwdev.c
1.9 +2 -2 src/sys/dev/firewire/fwdma.c
1.34 +27 -14 src/sys/dev/firewire/fwmem.c
1.90 +252 -243 src/sys/dev/firewire/fwohci.c
1.60 +8 -5 src/sys/dev/firewire/fwohci_pci.c
1.16 +9 -9 src/sys/dev/firewire/fwohcivar.h
1.44 +30 -24 src/sys/dev/firewire/if_fwe.c
1.6 +4 -1 src/sys/dev/firewire/if_fwevar.h
1.16 +31 -37 src/sys/dev/firewire/if_fwip.c
1.5 +3 -0 src/sys/dev/firewire/if_fwipvar.h
1.92 +67 -10 src/sys/dev/firewire/sbp.c
1.14 +108 -33 src/sys/dev/firewire/sbp_targ.c
More information about the cvs-src
mailing list