s390: rename struct _lowcore to struct lowcore

Finally get rid of the leading underscore. I tried this already two or
three years ago, however Michael Holzheu objected since this would
break the crash utility (again).

However Michael integrated support for the new name into the crash
utility back then, so it doesn't break if the name will be changed
now.  So finally get rid of the ever confusing leading underscore.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
Heiko Carstens
2015-12-31 10:29:00 +01:00
committed by Martin Schwidefsky
parent 423d5b364c
commit c667aeacc1
12 changed files with 116 additions and 116 deletions

View File

@@ -60,7 +60,7 @@ static inline int test_cpu_flag(int flag)
*/
static inline int test_cpu_flag_of(int flag, int cpu)
{
struct _lowcore *lc = lowcore_ptr[cpu];
struct lowcore *lc = lowcore_ptr[cpu];
return !!(lc->cpu_flags & (1UL << flag));
}