eal: fix IPC memory leak on device hotplug
rte_mp_request_sync() says that the caller is responsible for freeing one of its parameters afterwards. EAL didn't do that, causing a memory leak. Fixes: 244d5130719c ("eal: enable hotplug on multi-process") Signed-off-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
This commit is contained in:
parent
98372f54ce
commit
04854a39e6
@ -355,6 +355,7 @@ int eal_dev_hotplug_request_to_primary(struct eal_dev_mp_req *req)
|
||||
resp = (struct eal_dev_mp_req *)mp_reply.msgs[0].param;
|
||||
req->result = resp->result;
|
||||
|
||||
free(mp_reply.msgs);
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -379,6 +380,7 @@ int eal_dev_hotplug_request_to_secondary(struct eal_dev_mp_req *req)
|
||||
|
||||
if (mp_reply.nb_sent != mp_reply.nb_received) {
|
||||
RTE_LOG(ERR, EAL, "not all secondary reply\n");
|
||||
free(mp_reply.msgs);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@ -397,6 +399,7 @@ int eal_dev_hotplug_request_to_secondary(struct eal_dev_mp_req *req)
|
||||
}
|
||||
}
|
||||
|
||||
free(mp_reply.msgs);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user