freebsd-dev/sys/cam
David Malone 041b706b2f Despite several examples in the kernel, the third argument of
sysctl_handle_int is not sizeof the int type you want to export.
The type must always be an int or an unsigned int.

Remove the instances where a sizeof(variable) is passed to stop
people accidently cut and pasting these examples.

In a few places this was sysctl_handle_int was being used on 64 bit
types, which would truncate the value to be exported.  In these
cases use sysctl_handle_quad to export them and change the format
to Q so that sysctl(1) can still print them.
2007-06-04 18:25:08 +00:00
..
scsi Despite several examples in the kernel, the third argument of 2007-06-04 18:25:08 +00:00
cam_ccb.h Remove Giant from CAM. Drivers (SIMs) now register a mutex that CAM will 2007-04-15 08:49:19 +00:00
cam_debug.h Since DELAY() was moved, most <machine/clock.h> #includes have been 2006-05-16 14:37:58 +00:00
cam_periph.c Eliminate the use of M_TEMP. 2007-05-14 21:48:53 +00:00
cam_periph.h Inline cam_periph_lock|unlock to make debugging easier. Use more 2007-04-19 22:46:26 +00:00
cam_queue.c
cam_queue.h
cam_sim.c Split the camisr into per-SIM done queues. This optimizes the locking a 2007-04-19 14:28:43 +00:00
cam_sim.h Split the camisr into per-SIM done queues. This optimizes the locking a 2007-04-19 14:28:43 +00:00
cam_xpt_periph.h Revert a driver API change to xpt_alloc_ccb that isn't necessary. Fix a 2007-04-18 04:58:53 +00:00
cam_xpt_sim.h
cam_xpt.c Despite several examples in the kernel, the third argument of 2007-06-04 18:25:08 +00:00
cam_xpt.h Add a helper function for registering async callbacks. Besides 2007-05-16 16:54:23 +00:00
cam.c Remove duplicate includes. 2007-05-23 13:36:02 +00:00
cam.h
README.quirks Add a placeholder document to be filled out by Nate which will describe 2007-05-29 20:07:22 +00:00

/* $FreeBSD$ */

This is a place holder for instructions about how both committers
and non-committers should submit device quirks.