Lines Matching refs:mae
14 #include "mae.h"
1038 struct efx_mae *mae = efx->mae;
1043 rhashtable_walk_enter(&mae->mports_ht, &walk);
1074 return rhashtable_lookup_fast(&efx->mae->mports_ht, &mport_id,
1080 struct efx_mae *mae = efx->mae;
1083 rc = rhashtable_insert_fast(&mae->mports_ht, &desc->linkage,
2263 struct efx_mae *mae;
2269 mae = kmalloc(sizeof(*mae), GFP_KERNEL);
2270 if (!mae)
2273 rc = rhashtable_init(&mae->mports_ht, &efx_mae_mports_ht_params);
2275 kfree(mae);
2278 efx->mae = mae;
2279 mae->efx = efx;
2285 struct efx_mae *mae = efx->mae;
2287 kfree(mae);
2288 efx->mae = NULL;