svn commit: r366936 - head/sys/net
Konstantin Belousov
kostikbel at gmail.com
Thu Oct 22 16:48:19 UTC 2020
On Thu, Oct 22, 2020 at 12:22:08PM +0000, Hans Petter Selasky wrote:
> Author: hselasky
> Date: Thu Oct 22 12:22:08 2020
> New Revision: 366936
> URL: https://svnweb.freebsd.org/changeset/base/366936
>
> Log:
> Compile fix for MIPS, MIPS64, POWERPC and POWERPC64.
> Add missing include files.
>
> Differential Revision: https://reviews.freebsd.org/D26254
> Reviewed by: melifaro@
> MFC after: 1 week
> Sponsored by: Mellanox Technologies // NVIDIA Networking
>
> Modified:
> head/sys/net/if_infiniband.c
>
> Modified: head/sys/net/if_infiniband.c
> ==============================================================================
> --- head/sys/net/if_infiniband.c Thu Oct 22 10:36:16 2020 (r366935)
> +++ head/sys/net/if_infiniband.c Thu Oct 22 12:22:08 2020 (r366936)
> @@ -29,6 +29,8 @@
> #include <sys/cdefs.h>
> __FBSDID("$FreeBSD$");
>
> +#include <sys/param.h>
> +#include <sys/kernel.h>
> #include <sys/types.h>
> #include <sys/systm.h>
> #include <sys/eventhandler.h>
sys/systm.h already includes sys/param.h. Also, sys/param.h already includes
sys/types.h.
More information about the svn-src-all
mailing list