Commit 313abe55a87bc10e55d00f337d609e17ad5f8c9a added a vmap usage to mlx4. Unfortunately on some platforms (ppc64) <linux/vmalloc.h> is not implicitly included. Fix that.
Signed-off-by: Kyle McMartin <[EMAIL PROTECTED]> --- diff --git a/drivers/net/mlx4/alloc.c b/drivers/net/mlx4/alloc.c index 521dc03..75ef9d0 100644 --- a/drivers/net/mlx4/alloc.c +++ b/drivers/net/mlx4/alloc.c @@ -34,6 +34,7 @@ #include <linux/slab.h> #include <linux/bitmap.h> #include <linux/dma-mapping.h> +#include <linux/vmalloc.h> #include "mlx4.h" -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html