Displaying 1 result from an estimated 1 matches for "sysctl_ctx".
2003 Sep 01
1
testers needed for CAM INVARIANTS fix
...#include <sys/sysctl.h>
+ #include <sys/taskqueue.h>
#include <cam/cam.h>
#include <cam/cam_ccb.h>
***************
*** 152,157 ****
--- 153,159 ----
int bufs_left;
struct cam_periph *periph;
int minimum_command_size;
+ struct task sysctl_task;
struct sysctl_ctx_list sysctl_ctx;
struct sysctl_oid *sysctl_tree;
STAILQ_HEAD(, cd_mode_params) mode_queue;
***************
*** 614,619 ****
--- 616,659 ----
}
}
+ static void
+ cdsysctlinit(void *context, int pending)
+ {
+ struct cam_periph *periph;
+ struct cd_softc *softc;
+ char tmpstr[80], tm...