Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/falcon/
Dmtd.c55 size_t n_parts, size_t sizeof_part) in ef4_mtd_add() argument
60 for (i = 0; i < n_parts; i++) { in ef4_mtd_add()
Dfalcon.c926 size_t n_parts; in falcon_mtd_probe() local
935 n_parts = 0; in falcon_mtd_probe()
939 parts[n_parts].spi = spi; in falcon_mtd_probe()
940 parts[n_parts].offset = FALCON_FLASH_BOOTCODE_START; in falcon_mtd_probe()
941 parts[n_parts].common.dev_type_name = "flash"; in falcon_mtd_probe()
942 parts[n_parts].common.type_name = "sfc_flash_bootrom"; in falcon_mtd_probe()
943 parts[n_parts].common.mtd.type = MTD_NORFLASH; in falcon_mtd_probe()
944 parts[n_parts].common.mtd.flags = MTD_CAP_NORFLASH; in falcon_mtd_probe()
945 parts[n_parts].common.mtd.size = spi->size - FALCON_FLASH_BOOTCODE_START; in falcon_mtd_probe()
946 parts[n_parts].common.mtd.erasesize = spi->erase_size; in falcon_mtd_probe()
[all …]
Defx.h220 size_t n_parts, size_t sizeof_part);
/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/
Dmtd.c55 size_t n_parts, size_t sizeof_part) in efx_mtd_add() argument
60 for (i = 0; i < n_parts; i++) { in efx_mtd_add()
Dsiena.c890 size_t n_parts) in siena_mtd_get_fw_subtypes() argument
901 for (i = 0; i < n_parts; i++) in siena_mtd_get_fw_subtypes()
912 size_t n_parts; in siena_mtd_probe() local
926 n_parts = 0; in siena_mtd_probe()
930 rc = siena_mtd_probe_partition(efx, &parts[n_parts], in siena_mtd_probe()
933 n_parts++; in siena_mtd_probe()
941 rc = siena_mtd_get_fw_subtypes(efx, parts, n_parts); in siena_mtd_probe()
945 rc = efx_mtd_add(efx, &parts[0].common, n_parts, sizeof(*parts)); in siena_mtd_probe()
Defx.h186 size_t n_parts, size_t sizeof_part);
Def10.c3523 size_t outlen, n_parts_total, i, n_parts; in efx_ef10_mtd_probe() local
3546 n_parts = 0; in efx_ef10_mtd_probe()
3550 rc = efx_ef10_mtd_probe_partition(efx, &parts[n_parts], type, in efx_ef10_mtd_probe()
3556 n_parts++; in efx_ef10_mtd_probe()
3559 if (!n_parts) { in efx_ef10_mtd_probe()
3564 rc = efx_mtd_add(efx, &parts[0].common, n_parts, sizeof(*parts)); in efx_ef10_mtd_probe()
/kernel/linux/linux-5.10/net/rxrpc/
Dkey.c220 unsigned int toklen = *_toklen, n_parts, loop, tmp, paddedlen; in rxrpc_krb5_decode_principal() local
230 n_parts = ntohl(*xdr++); in rxrpc_krb5_decode_principal()
232 if (n_parts <= 0 || n_parts > AFSTOKEN_K5_COMPONENTS_MAX) in rxrpc_krb5_decode_principal()
234 princ->n_name_parts = n_parts; in rxrpc_krb5_decode_principal()
236 if (toklen <= (n_parts + 1) * 4) in rxrpc_krb5_decode_principal()
239 princ->name_parts = kcalloc(n_parts, sizeof(char *), GFP_KERNEL); in rxrpc_krb5_decode_principal()
243 for (loop = 0; loop < n_parts; loop++) { in rxrpc_krb5_decode_principal()