Lines Matching refs:kw
1880 static int efx_mae_populate_ct_key(struct efx_nic *efx, __le32 *key, size_t kw, in efx_mae_populate_ct_key() argument
1917 size_t inlen, kw, rw; in efx_mae_insert_ct() local
1926 kw = DIV_ROUND_UP(efx->tc->meta_ct.desc.key_width, 32); in efx_mae_insert_ct()
1929 inlen = MC_CMD_TABLE_INSERT_IN_LEN(kw + rw); in efx_mae_insert_ct()
1936 key = kcalloc(kw, sizeof(__le32), GFP_KERNEL); in efx_mae_insert_ct()
1943 rc = efx_mae_populate_ct_key(efx, key, kw, conn); in efx_mae_insert_ct()
1971 memcpy(MCDI_PTR(inbuf, TABLE_INSERT_IN_DATA), key, kw * sizeof(__le32)); in efx_mae_insert_ct()
1972 memcpy(MCDI_PTR(inbuf, TABLE_INSERT_IN_DATA) + kw * sizeof(__le32), in efx_mae_insert_ct()
1990 size_t inlen, kw; in efx_mae_remove_ct() local
1998 kw = DIV_ROUND_UP(efx->tc->meta_ct.desc.key_width, 32); in efx_mae_remove_ct()
2000 inlen = MC_CMD_TABLE_DELETE_IN_LEN(kw); in efx_mae_remove_ct()
2007 key = kcalloc(kw, sizeof(__le32), GFP_KERNEL); in efx_mae_remove_ct()
2011 rc = efx_mae_populate_ct_key(efx, key, kw, conn); in efx_mae_remove_ct()
2020 memcpy(MCDI_PTR(inbuf, TABLE_DELETE_IN_DATA), key, kw * sizeof(__le32)); in efx_mae_remove_ct()