processor.h (ff47d8c05019d6e7753cef270d6399cb5a33be57) | processor.h (606aa4aa0b2c6d7c4f5d2e459922675ea1d7e459) |
---|---|
1/* 2 * S390 version 3 * Copyright IBM Corp. 1999 4 * Author(s): Hartmut Penner (hp@de.ibm.com), 5 * Martin Schwidefsky (schwidefsky@de.ibm.com) 6 * 7 * Derived from "include/asm-i386/processor.h" 8 * Copyright (C) 1994, Linus Torvalds 9 */ 10 11#ifndef __ASM_S390_PROCESSOR_H 12#define __ASM_S390_PROCESSOR_H 13 14#include <linux/const.h> 15 16#define CIF_MCCK_PENDING 0 /* machine check handling is pending */ | 1/* 2 * S390 version 3 * Copyright IBM Corp. 1999 4 * Author(s): Hartmut Penner (hp@de.ibm.com), 5 * Martin Schwidefsky (schwidefsky@de.ibm.com) 6 * 7 * Derived from "include/asm-i386/processor.h" 8 * Copyright (C) 1994, Linus Torvalds 9 */ 10 11#ifndef __ASM_S390_PROCESSOR_H 12#define __ASM_S390_PROCESSOR_H 13 14#include <linux/const.h> 15 16#define CIF_MCCK_PENDING 0 /* machine check handling is pending */ |
17#define CIF_ASCE 1 /* user asce needs fixup / uaccess */ | 17#define CIF_ASCE_PRIMARY 1 /* primary asce needs fixup / uaccess */ |
18#define CIF_NOHZ_DELAY 2 /* delay HZ disable for a tick */ 19#define CIF_FPU 3 /* restore FPU registers */ 20#define CIF_IGNORE_IRQ 4 /* ignore interrupt (for udelay) */ 21#define CIF_ENABLED_WAIT 5 /* in enabled wait state */ 22 23#define _CIF_MCCK_PENDING _BITUL(CIF_MCCK_PENDING) | 18#define CIF_NOHZ_DELAY 2 /* delay HZ disable for a tick */ 19#define CIF_FPU 3 /* restore FPU registers */ 20#define CIF_IGNORE_IRQ 4 /* ignore interrupt (for udelay) */ 21#define CIF_ENABLED_WAIT 5 /* in enabled wait state */ 22 23#define _CIF_MCCK_PENDING _BITUL(CIF_MCCK_PENDING) |
24#define _CIF_ASCE _BITUL(CIF_ASCE) | 24#define _CIF_ASCE_PRIMARY _BITUL(CIF_ASCE_PRIMARY) |
25#define _CIF_NOHZ_DELAY _BITUL(CIF_NOHZ_DELAY) 26#define _CIF_FPU _BITUL(CIF_FPU) 27#define _CIF_IGNORE_IRQ _BITUL(CIF_IGNORE_IRQ) 28#define _CIF_ENABLED_WAIT _BITUL(CIF_ENABLED_WAIT) 29 30#ifndef __ASSEMBLY__ 31 32#include <linux/linkage.h> --- 341 unchanged lines hidden --- | 25#define _CIF_NOHZ_DELAY _BITUL(CIF_NOHZ_DELAY) 26#define _CIF_FPU _BITUL(CIF_FPU) 27#define _CIF_IGNORE_IRQ _BITUL(CIF_IGNORE_IRQ) 28#define _CIF_ENABLED_WAIT _BITUL(CIF_ENABLED_WAIT) 29 30#ifndef __ASSEMBLY__ 31 32#include <linux/linkage.h> --- 341 unchanged lines hidden --- |