Searched refs:lct (Results 1 – 8 of 8) sorted by relevance
/drivers/message/i2o/ |
D | device.c | 351 i2o_lct *lct; in i2o_device_parse_lct() local 359 kfree(c->lct); in i2o_device_parse_lct() 364 lct = c->lct = kmalloc(table_size * 4, GFP_KERNEL); in i2o_device_parse_lct() 365 if (!lct) { in i2o_device_parse_lct() 370 lct->lct_ver = buf >> 28; in i2o_device_parse_lct() 371 lct->boot_tid = buf >> 16 & 0xfff; in i2o_device_parse_lct() 372 lct->table_size = table_size; in i2o_device_parse_lct() 373 lct->change_ind = le32_to_cpu(*dlct++); in i2o_device_parse_lct() 374 lct->iop_flags = le32_to_cpu(*dlct++); in i2o_device_parse_lct() 379 lct->table_size); in i2o_device_parse_lct() [all …]
|
D | i2o_proc.c | 401 i2o_lct *lct = (i2o_lct *) c->lct; in i2o_seq_show_lct() local 412 entries = (lct->table_size - 3) / 9; in i2o_seq_show_lct() 416 if (lct->boot_tid) in i2o_seq_show_lct() 417 seq_printf(seq, "Boot Device @ ID %d\n", lct->boot_tid); in i2o_seq_show_lct() 419 seq_printf(seq, "Current Change Indicator: %#10x\n", lct->change_ind); in i2o_seq_show_lct() 424 i2o_get_class_name(lct->lct_entry[i].class_id)); in i2o_seq_show_lct() 429 switch (lct->lct_entry[i].class_id & 0xFFF) { in i2o_seq_show_lct() 431 switch (lct->lct_entry[i].sub_class) { in i2o_seq_show_lct() 450 lct->lct_entry[i].sub_class); in i2o_seq_show_lct() 456 switch (lct->lct_entry[i].sub_class & 0xFF) { in i2o_seq_show_lct() [all …]
|
D | README.ioctl | 88 ioctl(fd, I2OLCTGET, struct i2o_cmd_lct *lct); 100 by lct->iop in the buffer pointed to by lct->resbuf. The actual size of 101 the data is written into *(lct->reslen). 111 buffer length is written into *(lct->reslen)
|
D | i2o_config.c | 129 i2o_lct *lct; in i2o_cfg_getlct() local 147 lct = (i2o_lct *) c->lct; in i2o_cfg_getlct() 149 len = (unsigned int)lct->table_size << 2; in i2o_cfg_getlct() 153 else if (copy_to_user(kcmd.resbuf, lct, len)) in i2o_cfg_getlct()
|
D | pci.c | 61 kfree(c->lct); in i2o_pci_free()
|
D | exec-osm.c | 435 change_ind = c->lct->change_ind + 1; in i2o_exec_lct_modified()
|
/drivers/scsi/ |
D | dpt_i2o.c | 1121 pHba->lct = NULL; in adpt_install_hba() 1203 if(pHba->lct) { in adpt_i2o_delete_hba() 1205 pHba->lct, pHba->lct_pa); in adpt_i2o_delete_hba() 1544 i2o_lct *lct = pHba->lct; in adpt_i2o_parse_lct() local 1551 if (lct == NULL) { in adpt_i2o_parse_lct() 1556 max = lct->table_size; in adpt_i2o_parse_lct() 1561 if( lct->lct_entry[i].user_tid != 0xfff){ in adpt_i2o_parse_lct() 1569 if( lct->lct_entry[i].class_id != I2O_CLASS_RANDOM_BLOCK_STORAGE && in adpt_i2o_parse_lct() 1570 lct->lct_entry[i].class_id != I2O_CLASS_SCSI_PERIPHERAL && in adpt_i2o_parse_lct() 1571 lct->lct_entry[i].class_id != I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL ){ in adpt_i2o_parse_lct() [all …]
|
D | dpti.h | 242 i2o_lct* lct; member
|