Skip to content
Snippets Groups Projects
Commit 0c6471cc authored by David Jander's avatar David Jander Committed by Greg Kroah-Hartman
Browse files

regmap: rbtree: Fix overlapping rbnodes.


commit 4e67fb5f upstream.

Avoid overlapping register regions by making the initial blklen of a new
node 1. If a register write occurs to a yet uncached register, that is
lower than but near an existing node's base_reg, a new node is created
and it's blklen is set to an arbitrary value (sizeof(*rbnode)). That may
cause this node to overlap with another node. Those nodes should be merged,
but this merge doesn't happen yet, so this patch at least makes the initial
blklen small enough to avoid hitting the wrong node, which may otherwise
lead to severe breakage.

Signed-off-by: default avatarDavid Jander <david@protonic.nl>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
Signed-off-by: default avatarZhouping Liu <zliu@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2ac13a8f
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment