aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/aac
Commit message (Collapse)AuthorAgeFilesLines
* Only compile aac_linux.ko for i386Scott Long2004-08-301-0/+2
| | | | Notes: svn path=/head/; revision=134507
* Revert the use of -g that leaked in.Scott Long2003-02-261-1/+0
| | | | Notes: svn path=/head/; revision=111539
* Introduce a new taskqueue that runs completely free of Giant, and inScott Long2003-02-261-0/+1
| | | | | | | | | | turns runs its tasks free of Giant too. It is intended that as drivers become locked down, they will move out of the old, Giant-bound taskqueue and into this new one. The old taskqueue has been renamed to taskqueue_swi_giant, and the new one keeps the name taskqueue_swi. Notes: svn path=/head/; revision=111528
* Include "../Makefile.inc".Yoshihiro Takahashi2002-11-061-0/+3
| | | | Notes: svn path=/head/; revision=106496
* The AAC_COMPAT_LINUX option was really annoying, since it made theScott Long2002-09-252-2/+10
| | | | | | | | | | | | | | | | | | | aac driver dependent on the linux emulation module. This was especially bad for the release engineers who tried to move the aac driver from the kernel onto the drivers floppy. The linux compat bits for this driver are now in their own driver, aac_linux. It can be loaded as a module or compiled into the kernel. For the latter case, the AAC_COMPAT_LINUX option is needed, along with the COMPAT_LINUX option. I've tested this in every configuration I can think of. This is an MFC candidate for 4.7. Idea from: rwatson MFC after: 3 days Notes: svn path=/head/; revision=103952
* Add a CAM interface to the aac driver. This is useful in case you shouldScott Long2002-04-271-1/+2
| | | | | | | | | | | | | | | | | | ever connect a SCSI Cdrom/Tape/Jukebox/Scanner/Printer/kitty-litter-scooper to your high-end RAID controller. The interface to the arrays is still via the block interface; this merely provides a way to circumvent the RAID functionality and access the SCSI buses directly. Note that for somewhat obvious reasons, hard drives are not exposed to the da driver through this interface, though you can still talk to them via the pass driver. Be the first on your block to low-level format unsuspecting drives that are part of an array! To enable this, add the 'aacp' device to your kernel config. MFC after: 3 days Notes: svn path=/head/; revision=95536
* Fix the building of the aac driver as a module. Add a comment about enablingScott Long2001-03-171-1/+2
| | | | | | | debug information for the driver. Notes: svn path=/head/; revision=74379
* Use a consistent style and one much closer to the rest of /usr/srcDavid E. O'Brien2001-01-061-7/+8
| | | | Notes: svn path=/head/; revision=70711
* A new driver for PCI:SCSI RAID controllers based on the Adaptec FSAMike Smith2000-09-131-0/+13
design. This includes integrated Dell RAID controllers, the Dell PERC 2/QC and the HP NetRAID-4M. Notes: svn path=/head/; revision=65793