freebsd-dev/sys
Bruce Evans 933a354fe5 Fixed breakage of the pci case of the cy driver by the new interrupt
code.  Both the driver and the new code were wrong.  Driver interrupt
handlers are supposed to take "void *vsc" arg, but some including all
COMPAT_ISA drivers and the pci part of the cy driver want an "int unit"
arg.  They got this using bogus casts of function pointers which should
have kept working despite their bogusness.  However, the new interrupt
code doesn't honor requests to pass an arg of ((void *)0), so things
are very broken if the arg is actually a representation of unit 0.

The fix is to use a normal "void *vsc" arg for the pci case and a
wrapper for the COMPAT_ISA case (of the cy driver).  This cleans up
new-busification of the pci case but takes the COMPAT_ISA case a little
further from new-bus.  The corresponding bug for the COMPAT_ISA case
has already been fixed similarly using a wrapper in compat_isa.c and
we need another wrapper just to undo that.

Fixed some directly related style bugs (mainly by removing compatibility
cruft).

cy.c:
Fixed an indirectly related old bug in cyattach_common().  A wrong status
was returned in the unlikely event that malloc() failed.

Approved by:	re (scottl)
2003-12-02 12:36:00 +00:00
..
alpha - Set mp_maxid in a way that is consistent with every other arch. It is 2003-11-30 22:08:24 +00:00
amd64 - Make mp_maxid reflect the same meaning as it does on other architectures. 2003-11-30 22:20:40 +00:00
arm Add sysentvec->sv_fixlimits() hook so that we can catch cases on 64 bit 2003-09-25 01:10:26 +00:00
boot With the beastie menu a problem was introduced in which selecting a 2003-11-21 19:01:02 +00:00
cam SS_FATAL|ENXIO rather than SS_RDEF for illegal track mode. 2003-12-01 10:13:00 +00:00
coda - Implement selwakeuppri() which allows raising the priority of a 2003-11-09 09:17:26 +00:00
compat Do not call VOP_GETATTR in getdents function. It does not serve any 2003-11-19 04:12:32 +00:00
conf Major 186 for sx driver (for Specialix I/O8+) by frank@exit.com 2003-12-02 04:40:33 +00:00
contrib This commit was generated by cvs2svn to compensate for changes in r123041, 2003-11-29 01:11:48 +00:00
crypto avoid module name conflict with opencrypto/rijndael.c. 2003-11-12 04:22:37 +00:00
ddb Reworked rev.1.14. Use the ELF symbol type again to summarily reject 2003-09-28 06:02:33 +00:00
dev Fixed breakage of the pci case of the cy driver by the new interrupt 2003-12-02 12:36:00 +00:00
fs Fix vnode locking in fdesc_setattr. Lock vnode before invoking 2003-11-19 04:14:42 +00:00
geom Call class->init() an class->fini() while the class is hooked up, 2003-11-18 18:17:39 +00:00
gnu Fixed a reference to a nonexistent variable in previous commit. Renaming 2003-11-05 11:56:58 +00:00
i4b Based on an excellent suggestion from tanimura@ define I4BPRI and use it 2003-11-10 14:20:34 +00:00
i386 Fixed breakage of the pci case of the cy driver by the new interrupt 2003-12-02 12:36:00 +00:00
ia64 - Split cpu_mp_probe() into two parts. cpu_mp_setmaxid() is still called 2003-11-21 22:23:26 +00:00
isa Don't disable the TSC with statclock_disable. 2003-11-13 10:02:12 +00:00
isofs/cd9660 DuH! 2003-10-18 14:10:28 +00:00
kern Fixed a bug in sendfile(2) where the sent data would be corrupted due 2003-12-01 22:12:50 +00:00
libkern - Support for multibyte charsets in LIBICONV. 2003-09-26 20:26:25 +00:00
modules * Add acpi_pcpu_get_id(idx, *acpi_id, *cpu_id) which fetches the 2003-11-26 19:01:33 +00:00
net Remove the call to M_ASSERTVALID from BPF_MTAP; some mbufs passed to 2003-11-28 18:48:59 +00:00
net80211 o insure the current channel is in a good state before starting an AP scan 2003-11-13 05:23:58 +00:00
netatalk Eliminate a duplicate free when deleting an interface address. This 2003-11-28 04:19:41 +00:00
netatm Introduce a MAC label reference in 'struct inpcb', which caches 2003-11-18 00:39:07 +00:00
netgraph Lower the maximum ACK timeout for GRE packets from 10 to 1 second. 2003-11-18 20:43:23 +00:00
netinet Include opt_ipsec.h so IPSEC/FAST_IPSEC is defined and the appropriate 2003-12-02 00:23:45 +00:00
netinet6 Split the "inp" mutex class into separate classes for each of divert, 2003-11-26 01:40:44 +00:00
netipsec Introduce a MAC label reference in 'struct inpcb', which caches 2003-11-18 00:39:07 +00:00
netipx Introduce a MAC label reference in 'struct inpcb', which caches 2003-11-18 00:39:07 +00:00
netkey missing splx. 2003-11-28 14:34:42 +00:00
netnatm Introduce a MAC label reference in 'struct inpcb', which caches 2003-11-18 00:39:07 +00:00
netncp The present defaults for the open and close for device drivers which 2003-09-27 12:01:01 +00:00
netsmb - Support for multibyte charsets in LIBICONV. 2003-09-26 20:26:25 +00:00
nfs University of Michigan's Citi NFSv4 kernel client code. 2003-11-14 20:54:10 +00:00
nfs4client Use function pointers to remove the depenancy cross dependancy on nfs4 2003-11-22 02:21:49 +00:00
nfsclient Use function pointers to remove the depenancy cross dependancy on nfs4 2003-11-22 02:21:49 +00:00
nfsserver Update a comment about needing to fix NFS server credential use 2003-11-17 00:56:53 +00:00
opencrypto eliminate an unnecessary 8Kbyte bzero that was being done for each 2003-11-19 22:42:34 +00:00
pc98 Merged from sys/dev/sio/sio.c revisions 1.415 and 1.416. 2003-11-17 23:13:08 +00:00
pccard - Implement selwakeuppri() which allows raising the priority of a 2003-11-09 09:17:26 +00:00
pci Fixed breakage of the pci case of the cy driver by the new interrupt 2003-12-02 12:36:00 +00:00
posix4 sched_setscheduler: Return EINVAL when a invalid policy is specified, 2003-09-13 18:46:24 +00:00
powerpc - Split cpu_mp_probe() into two parts. cpu_mp_setmaxid() is still called 2003-11-21 22:23:26 +00:00
rpc Remove unneeded file. (could be repo removed as nothing ever referenced it.) 2003-11-20 04:42:50 +00:00
security Use UMA zone allocator for Biba and MLS labels rather than MALLOC(9). 2003-11-18 04:11:52 +00:00
sparc64 - Split cpu_mp_probe() into two parts. cpu_mp_setmaxid() is still called 2003-11-21 22:23:26 +00:00
sys Correct a problem where ipfw-generated packets were being returned 2003-11-24 03:57:03 +00:00
tools Changes for new SMP-safe kobj method dispatch algorithm. 2003-10-16 13:29:26 +00:00
ufs Write the UFS2 superblock with a 'BAD' magic number at the beginning 2003-11-16 07:08:27 +00:00
vm - Unbreak UP. mp_maxid is not defined on uni-processor machines, although 2003-11-30 22:18:14 +00:00
Makefile Revert exclusion for amd64 that stopped boot/ being built. 2003-06-26 03:52:48 +00:00