search for: daregist

Displaying 2 results from an estimated 2 matches for "daregist".

Did you mean: regist
2003 Sep 09
0
CAM/INVARIANTS fix committed
...cam/scsi scsi_cd.c scsi_da.c sys/kern subr_taskqueue.c sys/sys taskqueue.h share/man/man4 cd.4 da.4 share/man/man9 cd.9 Log: MFC: Move dynamic sysctl(8) variable creation for the cd(4) and da(4) drivers out of cdregister() and daregister(), which are run from interrupt context. Files/revisions merged: scsi_da.c: 1.157, 1.158 scsi_cd.c: 1.81 subr_taskqueue.c: 1.17 taskqueue.h: 1.8 cd.4: 1.33 da.4: 1.42 cd.9: 1.1...
2003 Sep 01
1
testers needed for CAM INVARIANTS fix
...tx; struct sysctl_oid *sysctl_tree; }; *************** *** 397,402 **** --- 399,405 ---- static periph_init_t dainit; static void daasync(void *callback_arg, u_int32_t code, struct cam_path *path, void *arg); + static int dacmdsizesysctl(SYSCTL_HANDLER_ARGS); static periph_ctor_t daregister; static periph_dtor_t dacleanup; static periph_start_t dastart; *************** *** 1123,1128 **** --- 1126,1167 ---- } } + static void + dasysctlinit(void *context, int pending) + { + struct cam_periph *periph; + struct da_softc *softc; + char tmpstr[80], tmpstr2[80]; + int s; +...