Re: [PATCH v8 04/16] ARM: LPAE: Move the FSR definitions toseparate files

From: Russell King - ARM Linux
Date: Thu Nov 10 2011 - 17:45:59 EST


On Mon, Nov 07, 2011 at 04:16:46PM +0000, Catalin Marinas wrote:
> diff --git a/arch/arm/mm/fault.h b/arch/arm/mm/fault.h
> index 49e9e38..25b45c1 100644
> --- a/arch/arm/mm/fault.h
> +++ b/arch/arm/mm/fault.h
> @@ -1,3 +1,20 @@
> -void do_bad_area(unsigned long addr, unsigned int fsr, struct pt_regs *regs);
> +#ifndef __ARCH_ARM_FAULT_H
> +#define __ARCH_ARM_FAULT_H
> +
> +/*
> + * Fault status register encodings. We steal bit 31 for our own purposes.
> + */
> +#define FSR_LNX_PF (1 << 31)
> +#define FSR_WRITE (1 << 11)
> +#define FSR_FS4 (1 << 10)
> +#define FSR_FS3_0 (15)
> +
> +static inline int fsr_fs(unsigned int fsr)
> +{
> + return (fsr & FSR_FS3_0) | (fsr & FSR_FS4) >> 6;
> +}

Much better.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/