From 233f637fc4dac522b305a036ce28d18971657a6b Mon Sep 17 00:00:00 2001 From: Benjamin Herrenschmidt Date: Wed, 11 Apr 2012 10:42:15 +1000 Subject: [PATCH] --- yaml --- r: 298963 b: refs/heads/master c: fae2e0fb24c61ca68c98d854a34732549ebc1854 h: refs/heads/master i: 298961: 0a688128615a106c79eedb442e05189e74927686 298959: 4fd3812fe3e983962057ca97a5a9194e16d8a96f v: v3 --- [refs] | 2 +- trunk/arch/powerpc/kernel/process.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index c30b6e892967..3dd32a6db1a8 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 08f1ec8a594c60bf3856e3c45b6d15fd691d90bb +refs/heads/master: fae2e0fb24c61ca68c98d854a34732549ebc1854 diff --git a/trunk/arch/powerpc/kernel/process.c b/trunk/arch/powerpc/kernel/process.c index f88698c0f332..4937c9690090 100644 --- a/trunk/arch/powerpc/kernel/process.c +++ b/trunk/arch/powerpc/kernel/process.c @@ -1235,7 +1235,7 @@ void __ppc64_runlatch_on(void) ctrl |= CTRL_RUNLATCH; mtspr(SPRN_CTRLT, ctrl); - ti->local_flags |= TLF_RUNLATCH; + ti->local_flags |= _TLF_RUNLATCH; } /* Called with hard IRQs off */ @@ -1244,7 +1244,7 @@ void __ppc64_runlatch_off(void) struct thread_info *ti = current_thread_info(); unsigned long ctrl; - ti->local_flags &= ~TLF_RUNLATCH; + ti->local_flags &= ~_TLF_RUNLATCH; ctrl = mfspr(SPRN_CTRLF); ctrl &= ~CTRL_RUNLATCH;