aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/smp_compat.h
blob: 4da35f4ad9bf36c0663d716856f42c116dd5b482 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _SPL_SMP_COMPAT_H
#define _SPL_SMP_COMPAT_H

#include <linux/smp.h>

#ifdef HAVE_3ARGS_ON_EACH_CPU

#define spl_on_each_cpu(func,info,wait)	on_each_cpu(func,info,wait)

#else

#define spl_on_each_cpu(func,info,wait)	on_each_cpu(func,info,0,wait)

#endif /* HAVE_3ARGS_ON_EACH_CPU */

#endif /* _SPL_SMP_COMPAT_H */