linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
Cc: kbuild-all@lists.01.org, linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH v2 02/10] Bluetooth: Add initial implementation of CIS connections
Date: Sun, 12 Jan 2020 06:33:47 +0800	[thread overview]
Message-ID: <202001120617.Z5Zn6VT1%lkp@intel.com> (raw)
In-Reply-To: <20200111022216.30842-3-luiz.dentz@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 3777 bytes --]

Hi Luiz,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on bluetooth-next/master]
[also build test ERROR on next-20200110]
[cannot apply to bluetooth/master v5.5-rc5]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Luiz-Augusto-von-Dentz/Bluetooth-5-2-initial-support/20200111-154512
base:   https://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git master
config: alpha-randconfig-a001-20200112 (attached as .config)
compiler: alpha-linux-gcc (GCC) 7.5.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        GCC_VERSION=7.5.0 make.cross ARCH=alpha 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   net/bluetooth/af_bluetooth.o: In function `bt_init':
   net/bluetooth/af_bluetooth.c:760: undefined reference to `iso_init'
   net/bluetooth/af_bluetooth.c:760: undefined reference to `iso_init'
>> net/bluetooth/af_bluetooth.c:771: undefined reference to `iso_exit'
>> net/bluetooth/af_bluetooth.c:771: undefined reference to `iso_exit'
   net/bluetooth/hci_core.o: In function `hci_isodata_packet':
   net/bluetooth/hci_core.c:4480: undefined reference to `iso_recv'
   net/bluetooth/hci_core.c:4480: undefined reference to `iso_recv'
   net/bluetooth/hci_event.o: In function `hci_proto_connect_ind':
   include/net/bluetooth/hci_core.h:1285: undefined reference to `iso_connect_ind'
   include/net/bluetooth/hci_core.h:1285: undefined reference to `iso_connect_ind'
   include/net/bluetooth/hci_core.h:1285: undefined reference to `iso_connect_ind'
   include/net/bluetooth/hci_core.h:1285: undefined reference to `iso_connect_ind'

vim +771 net/bluetooth/af_bluetooth.c

   718	
   719	#define VERSION __stringify(BT_SUBSYS_VERSION) "." \
   720			__stringify(BT_SUBSYS_REVISION)
   721	
   722	static int __init bt_init(void)
   723	{
   724		int err;
   725	
   726		sock_skb_cb_check_size(sizeof(struct bt_skb_cb));
   727	
   728		BT_INFO("Core ver %s", VERSION);
   729	
   730		err = bt_selftest();
   731		if (err < 0)
   732			return err;
   733	
   734		bt_debugfs = debugfs_create_dir("bluetooth", NULL);
   735	
   736		bt_leds_init();
   737	
   738		err = bt_sysfs_init();
   739		if (err < 0)
   740			return err;
   741	
   742		err = sock_register(&bt_sock_family_ops);
   743		if (err)
   744			goto cleanup_sysfs;
   745	
   746		BT_INFO("HCI device and connection manager initialized");
   747	
   748		err = hci_sock_init();
   749		if (err)
   750			goto unregister_socket;
   751	
   752		err = l2cap_init();
   753		if (err)
   754			goto cleanup_socket;
   755	
   756		err = sco_init();
   757		if (err)
   758			goto cleanup_cap;
   759	
 > 760		err = iso_init();
   761		if (err)
   762			goto cleanup_sco;
   763	
   764		err = mgmt_init();
   765		if (err)
   766			goto cleanup_iso;
   767	
   768		return 0;
   769	
   770	cleanup_iso:
 > 771		iso_exit();
   772	cleanup_sco:
   773		sco_exit();
   774	cleanup_cap:
   775		l2cap_exit();
   776	cleanup_socket:
   777		hci_sock_cleanup();
   778	unregister_socket:
   779		sock_unregister(PF_BLUETOOTH);
   780	cleanup_sysfs:
   781		bt_sysfs_cleanup();
   782		return err;
   783	}
   784	

---
0-DAY kernel test infrastructure                 Open Source Technology Center
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 27106 bytes --]

  reply	other threads:[~2020-01-11 22:35 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-11  2:22 [PATCH v2 00/10] Bluetooth 5.2 initial support Luiz Augusto von Dentz
2020-01-11  2:22 ` [PATCH v2 01/10] Bluetooth: Add definitions for CIS connections Luiz Augusto von Dentz
2020-01-14 14:11   ` Marcel Holtmann
2020-01-11  2:22 ` [PATCH v2 02/10] Bluetooth: Add initial implementation of " Luiz Augusto von Dentz
2020-01-11 22:33   ` kbuild test robot [this message]
2020-01-11  2:22 ` [PATCH v2 03/10] Bluetooth: L2CAP: Add definitions for Enhanced Credit Based Mode Luiz Augusto von Dentz
2020-01-14 14:15   ` Marcel Holtmann
2020-01-11  2:22 ` [PATCH v2 04/10] Bluetooth: L2CAP: Add initial code " Luiz Augusto von Dentz
2020-01-11  2:22 ` [PATCH v2 05/10] Bluetooth: hci_vhci: Add support for ISO packets Luiz Augusto von Dentz
2020-01-11  2:22 ` [PATCH v2 06/10] Bluetooth: monitor: " Luiz Augusto von Dentz
2020-01-11  2:22 ` [PATCH v2 07/10] Bluetooth: Make use of __check_timeout on hci_sched_le Luiz Augusto von Dentz
2020-01-11  2:22 ` [PATCH v2 08/10] Bluetooth: hci_h4: Add support for ISO packets Luiz Augusto von Dentz
2020-01-11  2:22 ` [PATCH v2 09/10] Bluetooth: btusb: " Luiz Augusto von Dentz
2020-01-14 14:18   ` Marcel Holtmann
2020-01-11  2:22 ` [PATCH v2 10/10] Bluetooth: btusb: Detect if an ACL packet is in fact an ISO packet Luiz Augusto von Dentz
2020-01-14 14:19   ` Marcel Holtmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202001120617.Z5Zn6VT1%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=luiz.dentz@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).