/*1* This file is subject to the terms and conditions of the GNU General Public2* License. See the file "COPYING" in the main directory of this archive3* for more details.4*5* Copyright (C) 1997, 98, 99, 2000, 2003 Ralf Baechle6* Copyright (C) 1999 Silicon Graphics, Inc.7*/8#ifndef _ASM_CACHE_H9#define _ASM_CACHE_H1011#include <kmalloc.h>1213#define L1_CACHE_SHIFT CONFIG_MIPS_L1_CACHE_SHIFT14#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)1516#define SMP_CACHE_SHIFT L1_CACHE_SHIFT17#define SMP_CACHE_BYTES L1_CACHE_BYTES1819#define __read_mostly __attribute__((__section__(".data..read_mostly")))2021#endif /* _ASM_CACHE_H */222324