CVE-2026-74265: net: mana: initialize gdma queue id to INVALID_QUEUE_ID
In the Linux kernel, the following vulnerability has been resolved:
net: mana: initialize gdma queue id to INVALIDQUEUEID
managdcreatemanawqcq() leaves queue->id as 0 (from kzallocobj()) until manacreatewqobj() assigns the firmware-returned id. If creation fails before that, cleanup calls managddestroycq() with id 0, NULLing gc->cqtable[0] and silently breaking whichever real CQ owns that slot.
Initialize queue->id to INVALIDQUEUEID right after allocation, matching managdcreateeq(). The existing (id >= maxnumcqs) guard then short-circuits cleanly.