Skip to content
Snippets Groups Projects
Commit f13dc920 authored by Johann Lombardi's avatar Johann Lombardi
Browse files

Branch b1_8-bld10

b=15878
i=johann
i=tianzy

original patch from Tianzy.
fix build issue introduced by the patch from bug 15878.
parent 6eb89d43
No related branches found
No related tags found
No related merge requests found
......@@ -342,6 +342,16 @@ do { \
#include <libcfs/list.h>
/* for_each_possible_cpu is defined newly, the former is
* for_each_cpu(eg. sles9 and sles10) b=15878 */
#ifndef for_each_possible_cpu
# ifdef for_each_cpu
# define for_each_possible_cpu(cpu) for_each_cpu(cpu)
# else
# error for_each_possible_cpu is not supported by kernel!
# endif
#endif
struct libcfs_ioctl_data; /* forward ref */
struct libcfs_ioctl_handler {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment