Searched refs:col_idx (Results 1 – 3 of 3) sorted by relevance
/linux-2.4.37.9/drivers/scsi/aic7xxx/ |
D | aic79xx.h | 134 #define AHD_SET_SCB_COL_IDX(scb, col_idx) \ argument 136 (scb)->hscb->scsiid = ((col_idx) << TID_SHIFT) & TID; \ 137 (scb)->hscb->lun = ((col_idx) >> 4) & (AHD_NUM_LUNS_NONPKT-1); \ 1378 struct scb *ahd_get_scb(struct ahd_softc *ahd, u_int col_idx);
|
D | aic79xx_core.c | 192 struct scb *scb, u_int col_idx); 5441 ahd_add_col_list(struct ahd_softc *ahd, struct scb *scb, u_int col_idx) in ahd_add_col_list() argument 5448 AHD_SET_SCB_COL_IDX(scb, col_idx); in ahd_add_col_list() 5449 free_list = &ahd->scb_data.free_scb_lists[col_idx]; in ahd_add_col_list() 5466 u_int col_idx; in ahd_rem_col_list() local 5469 col_idx = AHD_GET_SCB_COL_IDX(ahd, scb); in ahd_rem_col_list() 5470 free_list = &ahd->scb_data.free_scb_lists[col_idx]; in ahd_rem_col_list() 5495 ahd_get_scb(struct ahd_softc *ahd, u_int col_idx) in ahd_get_scb() argument 5503 if (AHD_GET_SCB_COL_IDX(ahd, scb) != col_idx) { in ahd_get_scb() 5516 if (col_idx != AHD_NEVER_COL_IDX in ahd_get_scb() [all …]
|
D | aic79xx_osm.c | 4034 u_int col_idx; local 4065 col_idx = AHD_NEVER_COL_IDX; 4067 col_idx = AHD_BUILD_COL_IDX(cmd->device->id, 4070 if ((scb = ahd_get_scb(ahd, col_idx)) == NULL) {
|