diff --git a/lnet/include/libcfs/libcfs.h b/lnet/include/libcfs/libcfs.h index 8e19a39e0ddcf32592879769b73566aebf5e97e2..564edd6357bf5151a1b35dffd27505476d635844 100644 --- a/lnet/include/libcfs/libcfs.h +++ b/lnet/include/libcfs/libcfs.h @@ -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 {