Home
last modified time | relevance | path

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

/Linux-v6.1/drivers/base/firmware_loader/
Dmain.c1258 struct fw_cache_entry *fce; in alloc_fw_cache_entry() local
1260 fce = kzalloc(sizeof(*fce), GFP_ATOMIC); in alloc_fw_cache_entry()
1261 if (!fce) in alloc_fw_cache_entry()
1264 fce->name = kstrdup_const(name, GFP_ATOMIC); in alloc_fw_cache_entry()
1265 if (!fce->name) { in alloc_fw_cache_entry()
1266 kfree(fce); in alloc_fw_cache_entry()
1267 fce = NULL; in alloc_fw_cache_entry()
1271 return fce; in alloc_fw_cache_entry()
1277 struct fw_cache_entry *fce; in __fw_entry_found() local
1279 list_for_each_entry(fce, &fwc->fw_names, list) { in __fw_entry_found()
[all …]
/Linux-v6.1/net/smc/
Dsmc_clc.c423 static void smc_clc_fill_fce(struct smc_clc_first_contact_ext *fce, int *len) in smc_clc_fill_fce() argument
425 memset(fce, 0, sizeof(*fce)); in smc_clc_fill_fce()
426 fce->os_type = SMC_CLC_OS_LINUX; in smc_clc_fill_fce()
427 fce->release = SMC_RELEASE; in smc_clc_fill_fce()
428 memcpy(fce->hostname, smc_hostname, sizeof(smc_hostname)); in smc_clc_fill_fce()
429 (*len) += sizeof(*fce); in smc_clc_fill_fce()
986 struct smc_clc_first_contact_ext fce; in smc_clc_send_confirm_accept() local
1017 smc_clc_fill_fce(&fce, &len); in smc_clc_send_confirm_accept()
1061 smc_clc_fill_fce(&fce, &len); in smc_clc_send_confirm_accept()
1062 fce.v2_direct = !link->lgr->uses_gateway; in smc_clc_send_confirm_accept()
[all …]
Daf_smc.c632 struct smc_clc_first_contact_ext *fce; in smc_conn_save_peer_info_fce() local
650 fce = (struct smc_clc_first_contact_ext *)(((u8 *)clc_v2) + clc_v2_len); in smc_conn_save_peer_info_fce()
651 smc->conn.lgr->peer_os = fce->os_type; in smc_conn_save_peer_info_fce()
652 smc->conn.lgr->peer_smc_release = fce->release; in smc_conn_save_peer_info_fce()
653 if (smc_isascii(fce->hostname)) in smc_conn_save_peer_info_fce()
654 memcpy(smc->conn.lgr->peer_hostname, fce->hostname, in smc_conn_save_peer_info_fce()
1156 struct smc_clc_first_contact_ext *fce = in smc_connect_rdma_v2_prepare() local
1163 if (fce->v2_direct) { in smc_connect_rdma_v2_prepare()
/Linux-v6.1/tools/testing/selftests/net/
Dl2_tos_ttl_inherit.sh140 ip addr add fdd1:ced0:5d88:3fce::1/64 dev veth0
141 $ns ip addr add fdd1:ced0:5d88:3fce::2/64 dev veth1
143 remote fdd1:ced0:5d88:3fce::2 tos $test_tos ttl $test_ttl \
146 remote fdd1:ced0:5d88:3fce::1 tos $test_tos ttl $test_ttl \
/Linux-v6.1/drivers/scsi/qla2xxx/
Dqla_dfs.c390 uint32_t *fce; in qla2x00_dfs_fce_show() local
404 fce = (uint32_t *) ha->fce; in qla2x00_dfs_fce_show()
412 seq_printf(s, "%08x", *fce++); in qla2x00_dfs_fce_show()
461 memset(ha->fce, 0, fce_calc_size(ha->fce_bufs)); in qla2x00_dfs_fce_release()
658 if (!ha->fce) in qla2x00_dfs_setup()
Dqla_tmpl.c398 if (vha->hw->fce) { in qla27xx_fwdt_entry_t264()
410 qla27xx_insertbuf(vha->hw->fce, FCE_SIZE, buf, len); in qla27xx_fwdt_entry_t264()
Dqla_init.c3429 if (ha->fce) { in qla2x00_init_fce_trace()
3460 ha->fce = tc; in qla2x00_init_fce_trace()
3568 if (ha->fce) in qla2x00_alloc_fw_dump()
7340 if (ha->fce) { in qla2x00_abort_isp()
7342 memset(ha->fce, 0, in qla2x00_abort_isp()
9138 if (ha->fce) { in qla82xx_restart_isp()
9140 memset(ha->fce, 0, in qla82xx_restart_isp()
Dqla_dbg.c489 if (!ha->fce) in qla25xx_copy_fce()
504 memcpy(iter_reg, ha->fce, ntohl(fcec->size)); in qla25xx_copy_fce()
Dqla_os.c4793 if (ha->fce) in qla2x00_free_fw_dump()
4795 FCE_SIZE, ha->fce, ha->fce_dma); in qla2x00_free_fw_dump()
4803 ha->fce = NULL; in qla2x00_free_fw_dump()
Dqla_def.h4549 void *fce; member