Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/base/firmware_loader/
Dmain.c1384 struct fw_cache_entry *fce; in alloc_fw_cache_entry() local
1386 fce = kzalloc(sizeof(*fce), GFP_ATOMIC); in alloc_fw_cache_entry()
1387 if (!fce) in alloc_fw_cache_entry()
1390 fce->name = kstrdup_const(name, GFP_ATOMIC); in alloc_fw_cache_entry()
1391 if (!fce->name) { in alloc_fw_cache_entry()
1392 kfree(fce); in alloc_fw_cache_entry()
1393 fce = NULL; in alloc_fw_cache_entry()
1397 return fce; in alloc_fw_cache_entry()
1403 struct fw_cache_entry *fce; in __fw_entry_found() local
1405 list_for_each_entry(fce, &fwc->fw_names, list) { in __fw_entry_found()
[all …]
/linux-6.12.1/tools/testing/selftests/net/
Dl2_tos_ttl_inherit.sh150 ip -netns "${NS0}" address add fdd1:ced0:5d88:3fce::1/64 \
152 ip -netns "${NS1}" address add fdd1:ced0:5d88:3fce::2/64 \
155 remote fdd1:ced0:5d88:3fce::2 tos $test_tos \
158 remote fdd1:ced0:5d88:3fce::1 tos $test_tos \
/linux-6.12.1/drivers/scsi/qla2xxx/
Dqla_dfs.c406 uint32_t *fce; in qla2x00_dfs_fce_show() local
420 fce = (uint32_t *) ha->fce; in qla2x00_dfs_fce_show()
428 seq_printf(s, "%08x", *fce++); in qla2x00_dfs_fce_show()
477 memset(ha->fce, 0, fce_calc_size(ha->fce_bufs)); in qla2x00_dfs_fce_release()
629 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.c2689 if (ha->fce) { in qla_enable_fce_trace()
2691 memset(ha->fce, 0, fce_calc_size(ha->fce_bufs)); in qla_enable_fce_trace()
3734 if (ha->fce) { in qla2x00_alloc_fce_trace()
3755 ha->fce = tc; in qla2x00_alloc_fce_trace()
3848 if (ha->fce) in qla2x00_alloc_fw_dump()
9432 if (ha->fce) { in qla82xx_restart_isp()
9434 memset(ha->fce, 0, in qla82xx_restart_isp()
Dqla_dbg.c488 if (!ha->fce) in qla25xx_copy_fce()
503 memcpy(iter_reg, ha->fce, ntohl(fcec->size)); in qla25xx_copy_fce()
Dqla_os.c4852 if (ha->fce) in qla2x00_free_fw_dump()
4854 FCE_SIZE, ha->fce, ha->fce_dma); in qla2x00_free_fw_dump()
4862 ha->fce = NULL; in qla2x00_free_fw_dump()
Dqla_def.h4634 void *fce; member
/linux-6.12.1/net/smc/
Dsmc_clc.c1271 int smc_clc_clnt_v2x_features_validate(struct smc_clc_first_contact_ext *fce, in smc_clc_clnt_v2x_features_validate() argument
1275 (struct smc_clc_first_contact_ext_v2x *)fce; in smc_clc_clnt_v2x_features_validate()
1299 struct smc_clc_first_contact_ext *fce = in smc_clc_v2x_features_confirm_check() local
1302 (struct smc_clc_first_contact_ext_v2x *)fce; in smc_clc_v2x_features_confirm_check()
1308 if (ini->release_nr != fce->release) in smc_clc_v2x_features_confirm_check()
1311 if (fce->release < SMC_RELEASE_1) in smc_clc_v2x_features_confirm_check()
Daf_smc.c670 struct smc_clc_first_contact_ext *fce; in smc_conn_save_peer_info_fce() local
686 fce = (struct smc_clc_first_contact_ext *)(((u8 *)clc) + clc_v2_len); in smc_conn_save_peer_info_fce()
687 smc->conn.lgr->peer_os = fce->os_type; in smc_conn_save_peer_info_fce()
688 smc->conn.lgr->peer_smc_release = fce->release; in smc_conn_save_peer_info_fce()
689 if (smc_isascii(fce->hostname)) in smc_conn_save_peer_info_fce()
690 memcpy(smc->conn.lgr->peer_hostname, fce->hostname, in smc_conn_save_peer_info_fce()
1201 struct smc_clc_first_contact_ext *fce = in smc_connect_rdma_v2_prepare() local
1209 if (fce->v2_direct) { in smc_connect_rdma_v2_prepare()
1224 ini->release_nr = fce->release; in smc_connect_rdma_v2_prepare()
1225 rc = smc_clc_clnt_v2x_features_validate(fce, ini); in smc_connect_rdma_v2_prepare()
[all …]
Dsmc_clc.h442 int smc_clc_clnt_v2x_features_validate(struct smc_clc_first_contact_ext *fce,