Home
last modified time | relevance | path

Searched refs:col_idx (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/sys/dev/aic7xxx/
H A Daic79xx.h135 #define AHD_SET_SCB_COL_IDX(scb, col_idx) \ argument
137 (scb)->hscb->scsiid = ((col_idx) << TID_SHIFT) & TID; \
138 (scb)->hscb->lun = ((col_idx) >> 4) & (AHD_NUM_LUNS_NONPKT-1); \
1433 struct scb *ahd_get_scb(struct ahd_softc *ahd, u_int col_idx);
H A Daic79xx_osm.c516 u_int col_idx; in ahd_action() local
534 col_idx = AHD_NEVER_COL_IDX; in ahd_action()
536 col_idx = AHD_BUILD_COL_IDX(target_id, in ahd_action()
539 if ((scb = ahd_get_scb(ahd, col_idx)) == NULL) { in ahd_action()
H A Daic79xx.c194 struct scb *scb, u_int col_idx);
5881 ahd_add_col_list(struct ahd_softc *ahd, struct scb *scb, u_int col_idx) in ahd_add_col_list() argument
5888 AHD_SET_SCB_COL_IDX(scb, col_idx); in ahd_add_col_list()
5889 free_list = &ahd->scb_data.free_scb_lists[col_idx]; in ahd_add_col_list()
5906 u_int col_idx; in ahd_rem_col_list() local
5909 col_idx = AHD_GET_SCB_COL_IDX(ahd, scb); in ahd_rem_col_list()
5910 free_list = &ahd->scb_data.free_scb_lists[col_idx]; in ahd_rem_col_list()
5935 ahd_get_scb(struct ahd_softc *ahd, u_int col_idx) in ahd_get_scb() argument
5943 if (AHD_GET_SCB_COL_IDX(ahd, scb) != col_idx) { in ahd_get_scb()
5956 if (col_idx != AHD_NEVER_COL_IDX in ahd_get_scb()
[all …]