If we have a large amount of livepatches and want to print them
on the console using 'xl debug-keys x' we eventually hit
the preemption check:
if ( i && !(i % 64) )
{
spin_unlock(&payload_lock);
process_pending_softirqs();
if ( spin_trylock(&payload_lock) )
return
<facepalm> The effect is that we have just effectively
taken the lock and returned without unlocking!
Reviewed-by: Ross Lagerwall <ross.lagerwall@citrix.com>
Reviewed-and-tested-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
master commit:
75dfe7c566c36e0af4714557a666827f49b69191
master date: 2017-06-12 08:59:33 -0400
{
spin_unlock(&payload_lock);
process_pending_softirqs();
- if ( spin_trylock(&payload_lock) )
+ if ( !spin_trylock(&payload_lock) )
{
printk("Couldn't reacquire lock. Try again.\n");
return;