Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 6f0c0580b70c89094b3422ba81118c7b959c7556 authored by Linus Torvalds on 20 October 2012, 19:11:32 UTC
Linux 3.7-rc2
Tip revision: 6f0c058
barrier.h
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2001 - 2005 Tensilica Inc.
 */

#ifndef _XTENSA_SYSTEM_H
#define _XTENSA_SYSTEM_H

#define smp_read_barrier_depends() do { } while(0)
#define read_barrier_depends() do { } while(0)

#define mb()  barrier()
#define rmb() mb()
#define wmb() mb()

#ifdef CONFIG_SMP
#error smp_* not defined
#else
#define smp_mb()	barrier()
#define smp_rmb()	barrier()
#define smp_wmb()	barrier()
#endif

#define set_mb(var, value)	do { var = value; mb(); } while (0)

#endif /* _XTENSA_SYSTEM_H */
back to top