libcamera: control_serializer: Separate the handles space
Two independent instances of the ControlSerializer class are in use at the IPC boundaries, one in the Proxy class that serializes data from the pipeline handler to the IPA, and one in the ProxyWorker which serializes data in the opposite direction. Each instance operates autonomously, without any centralized point of control, and each one assigns a numerical handle to each ControlInfoMap it serializes. This creates a risk of potential collision on the handle values, as both instances will use the same numerical space and are not aware of what handles has been already used by the instance "on the other side". To fix that, partition the handles numerical space by initializing the control serializer with a seed according to the role of the component that creates the serializer and increment the handle number by 2, to avoid any collision risk. While this is temporary and rather hacky solution, it solves an issue with isolated IPA modules without too much complexity added. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
23c2b8a9ca
commit
11e9d19288
6 changed files with 75 additions and 13 deletions
|
@ -30,8 +30,8 @@ protected:
|
|||
|
||||
int run() override
|
||||
{
|
||||
ControlSerializer serializer;
|
||||
ControlSerializer deserializer;
|
||||
ControlSerializer serializer(ControlSerializer::Role::Proxy);
|
||||
ControlSerializer deserializer(ControlSerializer::Role::Worker);
|
||||
|
||||
std::vector<uint8_t> infoData;
|
||||
std::vector<uint8_t> listData;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue