/drivers/net/ethernet/mellanox/mlx5/core/esw/ |
D | vporttbl.c | 80 u32 hkey; in mlx5_esw_vporttbl_get() local 83 hkey = flow_attr_to_vport_key(esw, attr, &skey); in mlx5_esw_vporttbl_get() 84 e = esw_vport_tbl_lookup(esw, &skey, hkey); in mlx5_esw_vporttbl_get() 110 hash_add(esw->fdb_table.offloads.vports.table, &e->hlist, hkey); in mlx5_esw_vporttbl_get() 127 u32 hkey; in mlx5_esw_vporttbl_put() local 130 hkey = flow_attr_to_vport_key(esw, attr, &key); in mlx5_esw_vporttbl_put() 131 e = esw_vport_tbl_lookup(esw, &key, hkey); in mlx5_esw_vporttbl_put()
|
/drivers/crypto/ |
D | atmel-sha.c | 1617 static inline void atmel_sha_hmac_key_init(struct atmel_sha_hmac_key *hkey) in atmel_sha_hmac_key_init() argument 1619 memset(hkey, 0, sizeof(*hkey)); in atmel_sha_hmac_key_init() 1622 static inline void atmel_sha_hmac_key_release(struct atmel_sha_hmac_key *hkey) in atmel_sha_hmac_key_release() argument 1624 kfree(hkey->keydup); in atmel_sha_hmac_key_release() 1625 memset(hkey, 0, sizeof(*hkey)); in atmel_sha_hmac_key_release() 1628 static inline int atmel_sha_hmac_key_set(struct atmel_sha_hmac_key *hkey, in atmel_sha_hmac_key_set() argument 1632 atmel_sha_hmac_key_release(hkey); in atmel_sha_hmac_key_set() 1634 if (keylen > sizeof(hkey->buffer)) { in atmel_sha_hmac_key_set() 1635 hkey->keydup = kmemdup(key, keylen, GFP_KERNEL); in atmel_sha_hmac_key_set() 1636 if (!hkey->keydup) in atmel_sha_hmac_key_set() [all …]
|
/drivers/platform/x86/ |
D | panasonic-laptop.c | 322 union acpi_object *hkey = NULL; in acpi_pcc_retrieve_biosdata() local 332 hkey = buffer.pointer; in acpi_pcc_retrieve_biosdata() 333 if (!hkey || (hkey->type != ACPI_TYPE_PACKAGE)) { in acpi_pcc_retrieve_biosdata() 339 if (pcc->num_sifr < hkey->package.count) { in acpi_pcc_retrieve_biosdata() 345 for (i = 0; i < hkey->package.count; i++) { in acpi_pcc_retrieve_biosdata() 346 union acpi_object *element = &(hkey->package.elements[i]); in acpi_pcc_retrieve_biosdata() 352 pcc->sinf[hkey->package.count] = -1; in acpi_pcc_retrieve_biosdata()
|
D | thinkpad_acpi.c | 565 TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */ 3484 TPACPI_ACPIHANDLE_INIT(hkey); in hotkey_init() 3876 static bool hotkey_notify_hotkey(const u32 hkey, in hotkey_notify_hotkey() argument 3881 unsigned int scancode = hkey & 0xfff; in hotkey_notify_hotkey() 3890 switch ((hkey >> 8) & 0xf) { in hotkey_notify_hotkey() 3926 static bool hotkey_notify_wakeup(const u32 hkey, in hotkey_notify_wakeup() argument 3934 switch (hkey) { in hotkey_notify_wakeup() 3966 static bool hotkey_notify_dockevent(const u32 hkey, in hotkey_notify_dockevent() argument 3974 switch (hkey) { in hotkey_notify_dockevent() 4011 static bool hotkey_notify_usrevent(const u32 hkey, in hotkey_notify_usrevent() argument [all …]
|
/drivers/net/ethernet/cisco/enic/ |
D | enic_ethtool.c | 582 static int enic_get_rxfh(struct net_device *netdev, u32 *indir, u8 *hkey, in enic_get_rxfh() argument 587 if (hkey) in enic_get_rxfh() 588 memcpy(hkey, enic->rss_key, ENIC_RSS_LEN); in enic_get_rxfh() 597 const u8 *hkey, const u8 hfunc) in enic_set_rxfh() argument 605 if (hkey) in enic_set_rxfh() 606 memcpy(enic->rss_key, hkey, ENIC_RSS_LEN); in enic_set_rxfh()
|
/drivers/net/ethernet/marvell/octeontx2/nic/ |
D | otx2_ethtool.c | 755 const u8 *hkey, const u8 hfunc, in otx2_set_rxfh_context() argument 777 if (hkey) { in otx2_set_rxfh_context() 778 memcpy(rss->key, hkey, sizeof(rss->key)); in otx2_set_rxfh_context() 800 u8 *hkey, u8 *hfunc, u32 rss_context) in otx2_get_rxfh_context() argument 832 if (hkey) in otx2_get_rxfh_context() 833 memcpy(hkey, rss->key, sizeof(rss->key)); in otx2_get_rxfh_context() 840 u8 *hkey, u8 *hfunc) in otx2_get_rxfh() argument 842 return otx2_get_rxfh_context(dev, indir, hkey, hfunc, in otx2_get_rxfh() 848 const u8 *hkey, const u8 hfunc) in otx2_set_rxfh() argument 853 return otx2_set_rxfh_context(dev, indir, hkey, hfunc, &rss_context, 0); in otx2_set_rxfh()
|
/drivers/net/ethernet/cavium/thunder/ |
D | nicvf_ethtool.c | 652 static int nicvf_get_rxfh(struct net_device *dev, u32 *indir, u8 *hkey, in nicvf_get_rxfh() argument 664 if (hkey) in nicvf_get_rxfh() 665 memcpy(hkey, rss->key, RSS_HASH_KEY_SIZE * sizeof(u64)); in nicvf_get_rxfh() 674 const u8 *hkey, const u8 hfunc) in nicvf_set_rxfh() argument 694 if (hkey) { in nicvf_set_rxfh() 695 memcpy(rss->key, hkey, RSS_HASH_KEY_SIZE * sizeof(u64)); in nicvf_set_rxfh()
|
/drivers/net/ethernet/emulex/benet/ |
D | be_ethtool.c | 1272 static int be_get_rxfh(struct net_device *netdev, u32 *indir, u8 *hkey, in be_get_rxfh() argument 1284 if (hkey) in be_get_rxfh() 1285 memcpy(hkey, rss->rss_hkey, RSS_HASH_KEY_LEN); in be_get_rxfh() 1294 const u8 *hkey, const u8 hfunc) in be_set_rxfh() argument 1318 if (!hkey) in be_set_rxfh() 1319 hkey = adapter->rss_info.rss_hkey; in be_set_rxfh() 1323 RSS_INDIR_TABLE_LEN, hkey); in be_set_rxfh() 1328 memcpy(adapter->rss_info.rss_hkey, hkey, RSS_HASH_KEY_LEN); in be_set_rxfh()
|
/drivers/crypto/ccree/ |
D | cc_aead.h | 57 u8 hkey[AES_BLOCK_SIZE] ____cacheline_aligned; member
|
D | cc_buffer_mgr.c | 1009 dma_addr = dma_map_single(dev, areq_ctx->hkey, AES_BLOCK_SIZE, in cc_map_aead_request() 1013 AES_BLOCK_SIZE, areq_ctx->hkey); in cc_map_aead_request()
|
D | cc_aead.c | 1845 memset(req_ctx->hkey, 0, AES_BLOCK_SIZE); in config_gcm_context()
|
/drivers/net/phy/mscc/ |
D | mscc_macsec.c | 505 u16 key_len, u8 hkey[16]) in vsc8584_macsec_derive_key() 515 aes_encrypt(&ctx, hkey, input); in vsc8584_macsec_derive_key() 527 u8 hkey[16]; in vsc8584_macsec_transformation() local 530 ret = vsc8584_macsec_derive_key(flow->key, priv->secy->key_len, hkey); in vsc8584_macsec_transformation() 572 ((u32 *)hkey)[i]); in vsc8584_macsec_transformation()
|
/drivers/net/ethernet/intel/i40e/ |
D | i40e_main.c | 10519 static const u32 hkey[] = { in i40e_fdir_sb_setup() local 10527 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]); in i40e_fdir_sb_setup()
|