Thread (26 messages) 26 messages, 5 authors, 2012-05-17

Re: [PATCH v5 2/2] decrement static keys on real destroy time

From: Glauber Costa <hidden>
Date: 2012-05-17 09:54:22
Also in: linux-mm, netdev

On 05/17/2012 09:37 AM, Andrew Morton wrote:
quoted
quoted
 If that happens, locking in static_key_slow_inc will prevent any damage.
 My previous version had explicit code to prevent that, but we were
 pointed out that this is already part of the static_key expectations, so
 that was dropped.
This makes no sense.  If two threads run that code concurrently,
key->enabled gets incremented twice.  Nobody anywhere has a record that
this happened so it cannot be undone.  key->enabled is now in an
unknown state.
Kame, Tejun,

Andrew is right. It seems we will need that mutex after all. Just this 
is not a race, and neither something that should belong in the 
static_branch interface.

We want to make sure that enabled is not updated before the jump label 
update, because we need a specific ordering guarantee at the patched 
sites. And *that*, the interface guarantees, and we were wrong to 
believe it did not. That is a correction issue for the accounting, and 
that part is right.

But when we disarm it, we'll need to make sure that happened only once, 
otherwise we may never unpatch it. That, or we'd need that to be a 
counter. The jump label interface does not - and should not - keep track 
of how many updates happened to a key. That's the role of whoever is 
using it.

If you agree with the above, I'll send this patch again with the correction.

Andrew, thank you very much. Do you spot anything else here?

Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help