Skip to content

Commit

Permalink
x86/mce: Rename mce_log()'s argument
Browse files Browse the repository at this point in the history
We call it everywhere "struct mce *m". Adjust that here too to avoid
confusion.

No functionality change.

Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-edac <linux-edac@vger.kernel.org>
Link: http://lkml.kernel.org/r/20170327093304.10683-3-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
  • Loading branch information
Borislav Petkov authored and Ingo Molnar committed Mar 28, 2017
1 parent 4a96d1a commit fe3ed20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/x86/kernel/cpu/mcheck/mce.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,14 @@ static struct mce_log mcelog = {
.recordlen = sizeof(struct mce),
};

void mce_log(struct mce *mce)
void mce_log(struct mce *m)
{
unsigned next, entry;

/* Emit the trace record: */
trace_mce_record(mce);
trace_mce_record(m);

if (!mce_gen_pool_add(mce))
if (!mce_gen_pool_add(m))
irq_work_queue(&mce_irq_work);

wmb();
Expand Down Expand Up @@ -195,7 +195,7 @@ void mce_log(struct mce *mce)
if (cmpxchg(&mcelog.next, entry, next) == entry)
break;
}
memcpy(mcelog.entry + entry, mce, sizeof(struct mce));
memcpy(mcelog.entry + entry, m, sizeof(struct mce));
wmb();
mcelog.entry[entry].finished = 1;
wmb();
Expand Down

0 comments on commit fe3ed20

Please sign in to comment.