mirror of
https://github.com/openvswitch/ovs
synced 2025-10-19 14:37:21 +00:00
The NXM_IS_NX_REG macro didn't check the "hasmask" bit, which meant that it looked like it was supposed to match both exact and wildcarded NXM headers, e.g. both NXM_NX_REG0 and NXM_NX_REG0_W. But exact and wildcarded NXM headers differ not just in the "hasmask" bit but in the "length" value also (the wildcarded version's length is twice the exact version's length), so this was not what it actually did. The only current users of NXM_IS_NX_REG actually only want to match exact versions, so this commit makes it only match those. It also adds a new NXM_IS_NX_REG_W macro that matches only wildcarded versions. This new macro has no users yet, but its existence should help to make it clear that NXM_IS_NX_REG only matches exact NXM headers. Reported-by: Natasha Gude <natasha@nicira.com>