• Daniel Axtens's avatar
    powerpc/mce: fix off by one errors in mce event handling · d66c53d5
    Daniel Axtens authored
    commit ffb2d78e upstream.
    
    Before 69111bac ("powerpc: Replace __get_cpu_var uses"), in
    save_mce_event, index got the value of mce_nest_count, and
    mce_nest_count was incremented *after* index was set.
    
    However, that patch changed the behaviour so that mce_nest count was
    incremented *before* setting index.
    
    This causes an off-by-one error, as get_mce_event sets index as
    mce_nest_count - 1 before reading mce_event.  Thus get_mce_event reads
    bogus data, causing warnings like
    "Machine Check Exception, Unknown event version 0 !"
    and breaking MCEs handling.
    
    Restore the old behaviour and unbreak MCE handling by subtracting one
    from the newly incremented value.
    
    The same broken change occured in machine_check_queue_event (which set
    a queue read by machine_check_process_queued_event).  Fix that too,
    unbreaking printing of MCE information.
    
    Fixes: 69111bac ("powerpc: Replace __get_cpu_var uses")
    CC: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
    CC: Christoph Lameter <cl@linux.com>
    Signed-off-by: default avatarDaniel Axtens <dja@axtens.net>
    Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
    Signed-off-by: default avatarKamal Mostafa <kamal@canonical.com>
    d66c53d5
mce.c 9.75 KB