Home
last modified time | relevance | path

Searched refs:hkey (Results 1 – 22 of 22) sorted by relevance

/linux-6.6.21/drivers/net/ethernet/mellanox/mlx5/core/esw/
Dvporttbl.c88 u32 hkey; in mlx5_esw_vporttbl_get() local
92 hkey = flow_attr_to_vport_key(esw, attr, &skey); in mlx5_esw_vporttbl_get()
93 e = esw_vport_tbl_lookup(esw, &skey, hkey); in mlx5_esw_vporttbl_get()
119 hash_add(esw->fdb_table.offloads.vports.table, &e->hlist, hkey); in mlx5_esw_vporttbl_get()
136 u32 hkey; in mlx5_esw_vporttbl_put() local
140 hkey = flow_attr_to_vport_key(esw, attr, &key); in mlx5_esw_vporttbl_put()
141 e = esw_vport_tbl_lookup(esw, &key, hkey); in mlx5_esw_vporttbl_put()
/linux-6.6.21/net/ethtool/
Drss.c17 u8 *hkey; member
88 data->hkey = rss_config + indir_bytes; in rss_prepare_data()
91 ret = ops->get_rxfh_context(dev, data->indir_table, data->hkey, in rss_prepare_data()
94 ret = ops->get_rxfh(dev, data->indir_table, data->hkey, in rss_prepare_data()
132 nla_put(skb, ETHTOOL_A_RSS_HKEY, data->hkey_size, data->hkey))) in rss_fill_reply()
Dioctl.c1180 u8 *hkey = NULL; in ethtool_get_rxfh() local
1222 hkey = rss_config + indir_bytes; in ethtool_get_rxfh()
1225 ret = dev->ethtool_ops->get_rxfh_context(dev, indir, hkey, in ethtool_get_rxfh()
1229 ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc); in ethtool_get_rxfh()
1256 u8 *hkey = NULL; in ethtool_set_rxfh() local
1326 hkey = rss_config + indir_bytes; in ethtool_set_rxfh()
1327 if (copy_from_user(hkey, in ethtool_set_rxfh()
1336 ret = ops->set_rxfh_context(dev, indir, hkey, rxfh.hfunc, in ethtool_set_rxfh()
1339 ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc); in ethtool_set_rxfh()
/linux-6.6.21/drivers/crypto/
Datmel-sha.c1617 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 …]
/linux-6.6.21/drivers/platform/x86/
Dpanasonic-laptop.c322 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()
Dthinkpad_acpi.c579 TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
3373 TPACPI_ACPIHANDLE_INIT(hkey); in hotkey_init()
3727 static bool hotkey_notify_extended_hotkey(const u32 hkey) in hotkey_notify_extended_hotkey() argument
3731 switch (hkey) { in hotkey_notify_extended_hotkey()
3734 tpacpi_driver_event(hkey); in hotkey_notify_extended_hotkey()
3742 scancode = (hkey & 0xfff) - (0x300 - TP_ACPI_HOTKEYSCAN_EXTENDED_START); in hotkey_notify_extended_hotkey()
3752 static bool hotkey_notify_hotkey(const u32 hkey, in hotkey_notify_hotkey() argument
3757 unsigned int scancode = hkey & 0xfff; in hotkey_notify_hotkey()
3766 switch ((hkey >> 8) & 0xf) { in hotkey_notify_hotkey()
3786 return hotkey_notify_extended_hotkey(hkey); in hotkey_notify_hotkey()
[all …]
/linux-6.6.21/drivers/net/ethernet/cisco/enic/
Denic_ethtool.c571 static int enic_get_rxfh(struct net_device *netdev, u32 *indir, u8 *hkey, in enic_get_rxfh() argument
576 if (hkey) in enic_get_rxfh()
577 memcpy(hkey, enic->rss_key, ENIC_RSS_LEN); in enic_get_rxfh()
586 const u8 *hkey, const u8 hfunc) in enic_set_rxfh() argument
594 if (hkey) in enic_set_rxfh()
595 memcpy(enic->rss_key, hkey, ENIC_RSS_LEN); in enic_set_rxfh()
/linux-6.6.21/drivers/net/ethernet/marvell/octeontx2/nic/
Dotx2_ethtool.c839 const u8 *hkey, const u8 hfunc, in otx2_set_rxfh_context() argument
861 if (hkey) { in otx2_set_rxfh_context()
862 memcpy(rss->key, hkey, sizeof(rss->key)); in otx2_set_rxfh_context()
884 u8 *hkey, u8 *hfunc, u32 rss_context) in otx2_get_rxfh_context() argument
916 if (hkey) in otx2_get_rxfh_context()
917 memcpy(hkey, rss->key, sizeof(rss->key)); in otx2_get_rxfh_context()
924 u8 *hkey, u8 *hfunc) in otx2_get_rxfh() argument
926 return otx2_get_rxfh_context(dev, indir, hkey, hfunc, in otx2_get_rxfh()
932 const u8 *hkey, const u8 hfunc) in otx2_set_rxfh() argument
937 return otx2_set_rxfh_context(dev, indir, hkey, hfunc, &rss_context, 0); in otx2_set_rxfh()
/linux-6.6.21/drivers/net/ethernet/cavium/thunder/
Dnicvf_ethtool.c656 static int nicvf_get_rxfh(struct net_device *dev, u32 *indir, u8 *hkey, in nicvf_get_rxfh() argument
668 if (hkey) in nicvf_get_rxfh()
669 memcpy(hkey, rss->key, RSS_HASH_KEY_SIZE * sizeof(u64)); in nicvf_get_rxfh()
678 const u8 *hkey, const u8 hfunc) in nicvf_set_rxfh() argument
698 if (hkey) { in nicvf_set_rxfh()
699 memcpy(rss->key, hkey, RSS_HASH_KEY_SIZE * sizeof(u64)); in nicvf_set_rxfh()
/linux-6.6.21/drivers/net/ethernet/emulex/benet/
Dbe_ethtool.c1274 static int be_get_rxfh(struct net_device *netdev, u32 *indir, u8 *hkey, in be_get_rxfh() argument
1286 if (hkey) in be_get_rxfh()
1287 memcpy(hkey, rss->rss_hkey, RSS_HASH_KEY_LEN); in be_get_rxfh()
1296 const u8 *hkey, const u8 hfunc) in be_set_rxfh() argument
1320 if (!hkey) in be_set_rxfh()
1321 hkey = adapter->rss_info.rss_hkey; in be_set_rxfh()
1325 RSS_INDIR_TABLE_LEN, hkey); in be_set_rxfh()
1330 memcpy(adapter->rss_info.rss_hkey, hkey, RSS_HASH_KEY_LEN); in be_set_rxfh()
/linux-6.6.21/drivers/crypto/ccree/
Dcc_aead.h57 u8 hkey[AES_BLOCK_SIZE] ____cacheline_aligned; member
Dcc_buffer_mgr.c1009 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()
Dcc_aead.c1845 memset(req_ctx->hkey, 0, AES_BLOCK_SIZE); in config_gcm_context()
/linux-6.6.21/fs/xfs/scrub/
Drmap.c142 union xfs_btree_key *lkey, *hkey; in xchk_rmapbt_check_unwritten_in_keyflags() local
166 hkey = xfs_btree_high_key_addr(cur, ptr, keyblock); in xchk_rmapbt_check_unwritten_in_keyflags()
167 if (hkey->rmap.rm_offset & badflag) { in xchk_rmapbt_check_unwritten_in_keyflags()
Dbtree.c143 union xfs_btree_key hkey; in xchk_btree_rec() local
175 cur->bc_ops->init_high_key_from_rec(&hkey, rec); in xchk_btree_rec()
177 if (xfs_btree_keycmp_lt(cur, keyp, &hkey)) in xchk_btree_rec()
/linux-6.6.21/drivers/net/phy/mscc/
Dmscc_macsec.c504 static int vsc8584_macsec_derive_key(const u8 *key, u16 key_len, u8 hkey[16]) in vsc8584_macsec_derive_key()
514 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(key, priv->secy->key_len, hkey); in vsc8584_macsec_transformation()
572 ((u32 *)hkey)[i]); in vsc8584_macsec_transformation()
/linux-6.6.21/drivers/nvme/common/
Dauth.c305 static int nvme_auth_hash_skey(int hmac_id, u8 *skey, size_t skey_len, u8 *hkey) in nvme_auth_hash_skey() argument
321 ret = crypto_shash_tfm_digest(tfm, skey, skey_len, hkey); in nvme_auth_hash_skey()
/linux-6.6.21/fs/xfs/libxfs/
Dxfs_btree.c2056 union xfs_btree_key hkey; in xfs_btree_get_leaf_keys() local
2069 cur->bc_ops->init_high_key_from_rec(&hkey, rec); in xfs_btree_get_leaf_keys()
2070 if (xfs_btree_keycmp_gt(cur, &hkey, &max_hkey)) in xfs_btree_get_leaf_keys()
2071 max_hkey = hkey; in xfs_btree_get_leaf_keys()
2086 union xfs_btree_key *hkey; in xfs_btree_get_node_keys() local
2097 hkey = xfs_btree_high_key_addr(cur, n, block); in xfs_btree_get_node_keys()
2098 if (xfs_btree_keycmp_gt(cur, hkey, max_hkey)) in xfs_btree_get_node_keys()
2099 max_hkey = hkey; in xfs_btree_get_node_keys()
2153 union xfs_btree_key *hkey; in __xfs_btree_updkeys() local
2168 hkey = xfs_btree_high_key_from_key(cur, lkey); in __xfs_btree_updkeys()
[all …]
/linux-6.6.21/Documentation/netlink/specs/
Dethtool.yaml912 name: hkey
1603 - hkey
/linux-6.6.21/tools/net/ynl/generated/
Dethtool-user.c5434 free(rsp->hkey); in ethtool_rss_get_rsp_free()
5488 dst->hkey = malloc(len); in ethtool_rss_get_rsp_parse()
5489 memcpy(dst->hkey, mnl_attr_get_payload(attr), len); in ethtool_rss_get_rsp_parse()
5538 free(rsp->obj.hkey); in ethtool_rss_get_list_free()
Dethtool-user.h4796 void *hkey; member
/linux-6.6.21/drivers/net/ethernet/intel/i40e/
Di40e_main.c10548 static const u32 hkey[] = { in i40e_fdir_sb_setup() local
10556 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]); in i40e_fdir_sb_setup()