Home
last modified time | relevance | path

Searched refs:fce (Results 1 – 8 of 8) sorted by relevance

/linux-4.1.27/drivers/base/
Dfirmware_class.c1395 struct fw_cache_entry *fce; in alloc_fw_cache_entry() local
1397 fce = kzalloc(sizeof(*fce) + strlen(name) + 1, GFP_ATOMIC); in alloc_fw_cache_entry()
1398 if (!fce) in alloc_fw_cache_entry()
1401 strcpy(fce->name, name); in alloc_fw_cache_entry()
1403 return fce; in alloc_fw_cache_entry()
1409 struct fw_cache_entry *fce; in __fw_entry_found() local
1411 list_for_each_entry(fce, &fwc->fw_names, list) { in __fw_entry_found()
1412 if (!strcmp(fce->name, name)) in __fw_entry_found()
1421 struct fw_cache_entry *fce; in fw_cache_piggyback_on_request() local
1428 fce = alloc_fw_cache_entry(name); in fw_cache_piggyback_on_request()
[all …]
/linux-4.1.27/drivers/scsi/qla2xxx/
Dqla_dfs.c20 uint32_t *fce; in qla2x00_dfs_fce_show() local
34 fce = (uint32_t *) ha->fce; in qla2x00_dfs_fce_show()
42 seq_printf(s, "%08x", *fce++); in qla2x00_dfs_fce_show()
91 memset(ha->fce, 0, fce_calc_size(ha->fce_bufs)); in qla2x00_dfs_fce_release()
120 if (!ha->fce) in qla2x00_dfs_setup()
Dqla_tmpl.c447 if (vha->hw->fce) { in qla27xx_fwdt_entry_t264()
459 qla27xx_insertbuf(vha->hw->fce, FCE_SIZE, buf, len); in qla27xx_fwdt_entry_t264()
Dqla_init.c1577 if (ha->fce) in qla2x00_alloc_fw_dump()
1579 FCE_SIZE, ha->fce, ha->fce_dma); in qla2x00_alloc_fw_dump()
1607 ha->fce = tc; in qla2x00_alloc_fw_dump()
1667 if (ha->fce) { in qla2x00_alloc_fw_dump()
1668 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce, in qla2x00_alloc_fw_dump()
1670 ha->fce = NULL; in qla2x00_alloc_fw_dump()
4797 if (ha->fce) { in qla2x00_abort_isp()
4799 memset(ha->fce, 0, in qla2x00_abort_isp()
6334 if (ha->fce) { in qla82xx_restart_isp()
6336 memset(ha->fce, 0, in qla82xx_restart_isp()
Dqla_dbg.c485 if (!ha->fce) in qla25xx_copy_fce()
500 memcpy(iter_reg, ha->fce, ntohl(fcec->size)); in qla25xx_copy_fce()
Dqla_os.c3608 if (ha->fce) in qla2x00_free_fw_dump()
3610 FCE_SIZE, ha->fce, ha->fce_dma); in qla2x00_free_fw_dump()
3621 ha->fce = NULL; in qla2x00_free_fw_dump()
Dqla_def.h3322 void *fce; member
/linux-4.1.27/net/core/
Dflow.c86 struct flow_cache_entry *fce, *n; in flow_cache_gc_task() local
95 list_for_each_entry_safe(fce, n, &gc_list, u.gc_list) in flow_cache_gc_task()
96 flow_entry_kill(fce, xfrm); in flow_cache_gc_task()