aboutsummaryrefslogtreecommitdiff
path: root/sys/cam/ctl
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2012-10-27 09:40:29 +0000
committerAlexander Motin <mav@FreeBSD.org>2012-10-27 09:40:29 +0000
commit15a2601b2939172092dc060faeaea9a95aa498c8 (patch)
tree23709da9a552c9b927f397ab287afd19e9ff4faf /sys/cam/ctl
parente1c2df4d3071edd247c64b806ab9a1d5b4d5d642 (diff)
downloadsrc-15a2601b2939172092dc060faeaea9a95aa498c8.tar.gz
src-15a2601b2939172092dc060faeaea9a95aa498c8.zip
Remove several uses of numeric priorities from immediate CCB setups.
Notes
Notes: svn path=/head/; revision=242174
Diffstat (limited to 'sys/cam/ctl')
-rw-r--r--sys/cam/ctl/ctl_frontend_cam_sim.c2
-rw-r--r--sys/cam/ctl/scsi_ctl.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/cam/ctl/ctl_frontend_cam_sim.c b/sys/cam/ctl/ctl_frontend_cam_sim.c
index d7b20ddab976..fa72059c6144 100644
--- a/sys/cam/ctl/ctl_frontend_cam_sim.c
+++ b/sys/cam/ctl/ctl_frontend_cam_sim.c
@@ -240,7 +240,7 @@ cfcs_init(void)
goto bailout;
}
- xpt_setup_ccb(&csa.ccb_h, softc->path, /*priority*/ 5);
+ xpt_setup_ccb(&csa.ccb_h, softc->path, CAM_PRIORITY_NONE);
csa.ccb_h.func_code = XPT_SASYNC_CB;
csa.event_enable = AC_LOST_DEVICE;
csa.callback = cfcs_async;
diff --git a/sys/cam/ctl/scsi_ctl.c b/sys/cam/ctl/scsi_ctl.c
index 8d6f7e39983f..c5809fcd5d78 100644
--- a/sys/cam/ctl/scsi_ctl.c
+++ b/sys/cam/ctl/scsi_ctl.c
@@ -334,7 +334,7 @@ ctlfeasync(void *callback_arg, uint32_t code, struct cam_path *path, void *arg)
return;
}
xpt_setup_ccb(&ccb->ccb_h, cpi->ccb_h.path,
- /*priority*/ 1);
+ CAM_PRIORITY_NONE);
sim = xpt_path_sim(cpi->ccb_h.path);
@@ -571,7 +571,7 @@ ctlferegister(struct cam_periph *periph, void *arg)
callout_init_mtx(&softc->dma_callout, sim->mtx, /*flags*/ 0);
periph->softc = softc;
- xpt_setup_ccb(&en_lun_ccb.ccb_h, periph->path, /*priority*/ 1);
+ xpt_setup_ccb(&en_lun_ccb.ccb_h, periph->path, CAM_PRIORITY_NONE);
en_lun_ccb.ccb_h.func_code = XPT_EN_LUN;
en_lun_ccb.cel.grp6_len = 0;
en_lun_ccb.cel.grp7_len = 0;
@@ -668,7 +668,7 @@ ctlfeoninvalidate(struct cam_periph *periph)
softc = (struct ctlfe_lun_softc *)periph->softc;
- xpt_setup_ccb(&en_lun_ccb.ccb_h, periph->path, /*priority*/ 1);
+ xpt_setup_ccb(&en_lun_ccb.ccb_h, periph->path, CAM_PRIORITY_NONE);
en_lun_ccb.ccb_h.func_code = XPT_EN_LUN;
en_lun_ccb.cel.grp6_len = 0;
en_lun_ccb.cel.grp7_len = 0;
@@ -1694,7 +1694,7 @@ ctlfe_onoffline(void *arg, int online)
return;
}
ccb = (union ccb *)malloc(sizeof(*ccb), M_TEMP, M_WAITOK | M_ZERO);
- xpt_setup_ccb(&ccb->ccb_h, path, /*priority*/ 1);
+ xpt_setup_ccb(&ccb->ccb_h, path, CAM_PRIORITY_NONE);
sim = xpt_path_sim(path);