Message ID | 20220203231240.2297588-1-kuba@kernel.org (mailing list archive) |
---|---|
State | Handled Elsewhere |
Headers | show |
Series | [net-next,v2] net: don't include ndisc.h from ipv6.h | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/checkpatch | success | Checkpatch PASS |
tedd_an/gitlint | success | Gitlint PASS |
tedd_an/subjectprefix | fail | "Bluetooth: " is not specified in the subject |
tedd_an/buildkernel | success | Build Kernel PASS |
tedd_an/buildkernel32 | success | Build Kernel32 PASS |
tedd_an/incremental_build | success | Pass |
tedd_an/testrunnersetup | success | Test Runner Setup PASS |
tedd_an/testrunnerl2cap-tester | success | Total: 40, Passed: 40 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerbnep-tester | success | Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnermgmt-tester | success | Total: 493, Passed: 493 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerrfcomm-tester | success | Total: 9, Passed: 9 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersco-tester | success | Total: 12, Passed: 12 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersmp-tester | success | Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunneruserchan-tester | success | Total: 4, Passed: 4 (100.0%), Failed: 0, Not Run: 0 |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=611162 ---Test result--- Test Summary: CheckPatch PASS 2.48 seconds GitLint PASS 1.04 seconds SubjectPrefix FAIL 0.84 seconds BuildKernel PASS 29.87 seconds BuildKernel32 PASS 27.10 seconds Incremental Build with patchesPASS 36.95 seconds TestRunner: Setup PASS 475.73 seconds TestRunner: l2cap-tester PASS 13.66 seconds TestRunner: bnep-tester PASS 6.22 seconds TestRunner: mgmt-tester PASS 105.59 seconds TestRunner: rfcomm-tester PASS 7.60 seconds TestRunner: sco-tester PASS 7.76 seconds TestRunner: smp-tester PASS 7.59 seconds TestRunner: userchan-tester PASS 6.50 seconds Details ############################## Test: SubjectPrefix - FAIL - 0.84 seconds Check subject contains "Bluetooth" prefix "Bluetooth: " is not specified in the subject --- Regards, Linux Bluetooth
On 2/3/22 4:12 PM, Jakub Kicinski wrote: > Nothing in ipv6.h needs ndisc.h, drop it. > > Link: https://lore.kernel.org/r/20220203043457.2222388-1-kuba@kernel.org > Acked-by: Jeremy Kerr <jk@codeconstruct.com.au> > Acked-by: Stefan Schmidt <stefan@datenfreihafen.org> > Signed-off-by: Jakub Kicinski <kuba@kernel.org> > --- > CC: j.vosburgh@gmail.com > CC: vfalico@gmail.com > CC: andy@greyhouse.net > CC: oliver@neukum.org > CC: yoshfuji@linux-ipv6.org > CC: dsahern@kernel.org > CC: alex.aring@gmail.com > CC: jukka.rissanen@linux.intel.com > CC: matt@codeconstruct.com.au > CC: linux-usb@vger.kernel.org > CC: linux-bluetooth@vger.kernel.org > CC: linux-wpan@vger.kernel.org > --- > drivers/net/bonding/bond_alb.c | 1 + > drivers/net/usb/cdc_mbim.c | 1 + > include/net/ipv6.h | 1 - > include/net/ipv6_frag.h | 1 + > net/6lowpan/core.c | 1 + > net/ieee802154/6lowpan/core.c | 1 + > net/mctp/device.c | 1 + > 7 files changed, 6 insertions(+), 1 deletion(-) > Reviewed-by: David Ahern <dsahern@kernel.org>
Hello: This patch was applied to netdev/net-next.git (master) by Jakub Kicinski <kuba@kernel.org>: On Thu, 3 Feb 2022 15:12:40 -0800 you wrote: > Nothing in ipv6.h needs ndisc.h, drop it. > > Link: https://lore.kernel.org/r/20220203043457.2222388-1-kuba@kernel.org > Acked-by: Jeremy Kerr <jk@codeconstruct.com.au> > Acked-by: Stefan Schmidt <stefan@datenfreihafen.org> > Signed-off-by: Jakub Kicinski <kuba@kernel.org> > > [...] Here is the summary with links: - [net-next,v2] net: don't include ndisc.h from ipv6.h https://git.kernel.org/netdev/net-next/c/c78b8b20e349 You are awesome, thank you!
diff --git a/drivers/net/bonding/bond_alb.c b/drivers/net/bonding/bond_alb.c index c98a4b0a8453..303c8d32d451 100644 --- a/drivers/net/bonding/bond_alb.c +++ b/drivers/net/bonding/bond_alb.c @@ -19,6 +19,7 @@ #include <linux/in.h> #include <net/arp.h> #include <net/ipv6.h> +#include <net/ndisc.h> #include <asm/byteorder.h> #include <net/bonding.h> #include <net/bond_alb.h> diff --git a/drivers/net/usb/cdc_mbim.c b/drivers/net/usb/cdc_mbim.c index 82bb5ed94c48..a7c1434fe2da 100644 --- a/drivers/net/usb/cdc_mbim.c +++ b/drivers/net/usb/cdc_mbim.c @@ -21,6 +21,7 @@ #include <net/ipv6.h> #include <net/addrconf.h> #include <net/ipv6_stubs.h> +#include <net/ndisc.h> /* alternative VLAN for IP session 0 if not untagged */ #define MBIM_IPS0_VID 4094 diff --git a/include/net/ipv6.h b/include/net/ipv6.h index 082f30256f59..cda1f205f391 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h @@ -15,7 +15,6 @@ #include <linux/refcount.h> #include <linux/jump_label_ratelimit.h> #include <net/if_inet6.h> -#include <net/ndisc.h> #include <net/flow.h> #include <net/flow_dissector.h> #include <net/snmp.h> diff --git a/include/net/ipv6_frag.h b/include/net/ipv6_frag.h index 0a4779175a52..5052c66e22d2 100644 --- a/include/net/ipv6_frag.h +++ b/include/net/ipv6_frag.h @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _IPV6_FRAG_H #define _IPV6_FRAG_H +#include <linux/icmpv6.h> #include <linux/kernel.h> #include <net/addrconf.h> #include <net/ipv6.h> diff --git a/net/6lowpan/core.c b/net/6lowpan/core.c index a068757eabaf..7b3341cef926 100644 --- a/net/6lowpan/core.c +++ b/net/6lowpan/core.c @@ -5,6 +5,7 @@ * (C) 2015 Pengutronix, Alexander Aring <aar@pengutronix.de> */ +#include <linux/if_arp.h> #include <linux/module.h> #include <net/6lowpan.h> diff --git a/net/ieee802154/6lowpan/core.c b/net/ieee802154/6lowpan/core.c index 2cf62718a282..2c087b7f17c5 100644 --- a/net/ieee802154/6lowpan/core.c +++ b/net/ieee802154/6lowpan/core.c @@ -47,6 +47,7 @@ #include <linux/module.h> #include <linux/netdevice.h> #include <linux/ieee802154.h> +#include <linux/if_arp.h> #include <net/ipv6.h> diff --git a/net/mctp/device.c b/net/mctp/device.c index ef2755f82f87..02ddc0f1bd3e 100644 --- a/net/mctp/device.c +++ b/net/mctp/device.c @@ -6,6 +6,7 @@ * Copyright (c) 2021 Google */ +#include <linux/if_arp.h> #include <linux/if_link.h> #include <linux/mctp.h> #include <linux/netdevice.h>