Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/net/ethernet/sfc/
Dmtd.c58 size_t n_parts, size_t sizeof_part) in efx_mtd_add() argument
63 for (i = 0; i < n_parts; i++) { in efx_mtd_add()
Dsiena.c888 size_t n_parts) in siena_mtd_get_fw_subtypes() argument
899 for (i = 0; i < n_parts; i++) in siena_mtd_get_fw_subtypes()
910 size_t n_parts; in siena_mtd_probe() local
924 n_parts = 0; in siena_mtd_probe()
928 rc = siena_mtd_probe_partition(efx, &parts[n_parts], in siena_mtd_probe()
931 n_parts++; in siena_mtd_probe()
939 rc = siena_mtd_get_fw_subtypes(efx, parts, n_parts); in siena_mtd_probe()
943 rc = efx_mtd_add(efx, &parts[0].common, n_parts, sizeof(*parts)); in siena_mtd_probe()
Defx.h259 size_t n_parts, size_t sizeof_part);
Def10.c6102 size_t outlen, n_parts_total, i, n_parts; in efx_ef10_mtd_probe() local
6125 n_parts = 0; in efx_ef10_mtd_probe()
6129 rc = efx_ef10_mtd_probe_partition(efx, &parts[n_parts], type); in efx_ef10_mtd_probe()
6131 n_parts++; in efx_ef10_mtd_probe()
6136 rc = efx_mtd_add(efx, &parts[0].common, n_parts, sizeof(*parts)); in efx_ef10_mtd_probe()
/Linux-v4.19/drivers/net/ethernet/sfc/falcon/
Dmtd.c58 size_t n_parts, size_t sizeof_part) in ef4_mtd_add() argument
63 for (i = 0; i < n_parts; i++) { in ef4_mtd_add()
Dfalcon.c929 size_t n_parts; in falcon_mtd_probe() local
938 n_parts = 0; in falcon_mtd_probe()
942 parts[n_parts].spi = spi; in falcon_mtd_probe()
943 parts[n_parts].offset = FALCON_FLASH_BOOTCODE_START; in falcon_mtd_probe()
944 parts[n_parts].common.dev_type_name = "flash"; in falcon_mtd_probe()
945 parts[n_parts].common.type_name = "sfc_flash_bootrom"; in falcon_mtd_probe()
946 parts[n_parts].common.mtd.type = MTD_NORFLASH; in falcon_mtd_probe()
947 parts[n_parts].common.mtd.flags = MTD_CAP_NORFLASH; in falcon_mtd_probe()
948 parts[n_parts].common.mtd.size = spi->size - FALCON_FLASH_BOOTCODE_START; in falcon_mtd_probe()
949 parts[n_parts].common.mtd.erasesize = spi->erase_size; in falcon_mtd_probe()
[all …]
Defx.h223 size_t n_parts, size_t sizeof_part);
/Linux-v4.19/net/rxrpc/
Dkey.c222 unsigned int toklen = *_toklen, n_parts, loop, tmp, paddedlen; in rxrpc_krb5_decode_principal() local
232 n_parts = ntohl(*xdr++); in rxrpc_krb5_decode_principal()
234 if (n_parts <= 0 || n_parts > AFSTOKEN_K5_COMPONENTS_MAX) in rxrpc_krb5_decode_principal()
236 princ->n_name_parts = n_parts; in rxrpc_krb5_decode_principal()
238 if (toklen <= (n_parts + 1) * 4) in rxrpc_krb5_decode_principal()
241 princ->name_parts = kcalloc(n_parts, sizeof(char *), GFP_KERNEL); in rxrpc_krb5_decode_principal()
245 for (loop = 0; loop < n_parts; loop++) { in rxrpc_krb5_decode_principal()