Message ID | a909ae78-ed49-407a-29c7-b86729f356b8@redhat.com (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
On Thu, Dec 8, 2016 at 5:03 AM, Jonathan Toppins <jtoppins@redhat.com> wrote:
> +#include <net/dcbnl.h>
in the kernel which i used for compilation and testing,
linux/netdevice.h is including net/dcbnl.h. bnxt_re_main.c is
including netdevice.h. Anyway, i will add this explicitly in
bnxt_re_main.c in V2.
Doug,
Since David Miller applied the bnxt_en changes to his net-next tree
(both pending patches and bnxt_re related changes), can you please
pull those changes to your bnxt_re branch?
Thanks,
Selvin
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
On 12/8/2016 4:38 AM, Selvin Xavier wrote: > On Thu, Dec 8, 2016 at 5:03 AM, Jonathan Toppins <jtoppins@redhat.com> wrote: >> +#include <net/dcbnl.h> > > in the kernel which i used for compilation and testing, > linux/netdevice.h is including net/dcbnl.h. bnxt_re_main.c is > including netdevice.h. Anyway, i will add this explicitly in > bnxt_re_main.c in V2. > > Doug, > Since David Miller applied the bnxt_en changes to his net-next tree > (both pending patches and bnxt_re related changes), can you please > pull those changes to your bnxt_re branch? > > Thanks, > Selvin > I had already pulled the changes, I just hadn't pushed them. Now pushed.
On 12/08/2016 04:08 PM, Doug Ledford wrote: > On 12/8/2016 4:38 AM, Selvin Xavier wrote: >> On Thu, Dec 8, 2016 at 5:03 AM, Jonathan Toppins <jtoppins@redhat.com> wrote: >>> +#include <net/dcbnl.h> >> >> in the kernel which i used for compilation and testing, >> linux/netdevice.h is including net/dcbnl.h. bnxt_re_main.c is >> including netdevice.h. Anyway, i will add this explicitly in >> bnxt_re_main.c in V2. >> >> Doug, >> Since David Miller applied the bnxt_en changes to his net-next tree >> (both pending patches and bnxt_re related changes), can you please >> pull those changes to your bnxt_re branch? >> >> Thanks, >> Selvin >> > > I had already pulled the changes, I just hadn't pushed them. Now pushed. > hummm ok I will retest. When I did the original compile test I did it on top of net-next/master as well as rdma/k.o/for-4.10 + merge of net-next/master + patches in this series not already merged into net-next and still got compile error. So clearly there was a patch from somewhere else I was missing. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
=== $ git diff diff --git i/drivers/infiniband/hw/bnxtre/bnxt_re_main.c w/drivers/infiniband/hw/bnxtre/bnxt_re_main.c index 9f3960037931..1bd67887a23c 100644 --- i/drivers/infiniband/hw/bnxtre/bnxt_re_main.c +++ w/drivers/infiniband/hw/bnxtre/bnxt_re_main.c @@ -19,6 +19,7 @@ #include <linux/rculist.h> #include <linux/spinlock.h> #include <linux/pci.h> +#include <net/dcbnl.h> #include <net/ipv6.h> #include <net/addrconf.h> ===