All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC 4/4] Bluetooth: RFCOMM: Replace use of memcpy_from_msg with bt_skb_sendmmsg
Date: Tue, 31 Aug 2021 11:14:01 +0800	[thread overview]
Message-ID: <202108311119.W2IP7Uns-lkp@intel.com> (raw)
In-Reply-To: <20210831011528.225877-4-luiz.dentz@gmail.com>

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

Hi Luiz,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on bluetooth-next/master]
[cannot apply to bluetooth/master v5.14 next-20210830]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Luiz-Augusto-von-Dentz/Bluetooth-Add-bt_skb_sendmsg-helper/20210831-091735
base:   https://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git master
config: m68k-allmodconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/0day-ci/linux/commit/a2468415c162f27c7def3dd53acdb62cf084afdd
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Luiz-Augusto-von-Dentz/Bluetooth-Add-bt_skb_sendmsg-helper/20210831-091735
        git checkout a2468415c162f27c7def3dd53acdb62cf084afdd
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=m68k 

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

All warnings (new ones prefixed by >>):

   net/bluetooth/rfcomm/sock.c: In function 'rfcomm_sock_sendmsg':
>> net/bluetooth/rfcomm/sock.c:561:16: warning: variable 'size' set but not used [-Wunused-but-set-variable]
     561 |         size_t size;
         |                ^~~~


vim +/size +561 net/bluetooth/rfcomm/sock.c

   555	
   556	static int rfcomm_sock_sendmsg(struct socket *sock, struct msghdr *msg,
   557				       size_t len)
   558	{
   559		struct sock *sk = sock->sk;
   560		struct rfcomm_dlc *d = rfcomm_pi(sk)->dlc;
 > 561		size_t size;
   562		struct sk_buff *skb;
   563		int sent;
   564	
   565		if (test_bit(RFCOMM_DEFER_SETUP, &d->flags))
   566			return -ENOTCONN;
   567	
   568		if (msg->msg_flags & MSG_OOB)
   569			return -EOPNOTSUPP;
   570	
   571		if (sk->sk_shutdown & SEND_SHUTDOWN)
   572			return -EPIPE;
   573	
   574		BT_DBG("sock %p, sk %p", sock, sk);
   575	
   576		lock_sock(sk);
   577	
   578		size = min_t(size_t, len, d->mtu);
   579	
   580		sent = bt_sock_wait_ready(sk, msg->msg_flags);
   581	
   582		release_sock(sk);
   583	
   584		if (sent)
   585			return sent;
   586	
   587		skb = bt_skb_sendmmsg(sk, msg, len, d->mtu, RFCOMM_SKB_RESERVE);
   588		if (IS_ERR_OR_NULL(skb))
   589			return PTR_ERR(skb);
   590	
   591		sent = rfcomm_dlc_send(d, skb);
   592		if (sent < 0)
   593			kfree_skb(skb);
   594	
   595		return sent;
   596	}
   597	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

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

  reply	other threads:[~2021-08-31  3:14 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-31  1:15 [RFC 1/4] Bluetooth: Add bt_skb_sendmsg helper Luiz Augusto von Dentz
2021-08-31  1:15 ` [RFC 2/4] Bluetooth: Add bt_skb_sendmmsg helper Luiz Augusto von Dentz
2021-08-31  1:15 ` [RFC 3/4] Bluetooth: SCO: Replace use of memcpy_from_msg with bt_skb_sendmsg Luiz Augusto von Dentz
2021-08-31  1:15 ` [RFC 4/4] Bluetooth: RFCOMM: Replace use of memcpy_from_msg with bt_skb_sendmmsg Luiz Augusto von Dentz
2021-08-31  3:14   ` kernel test robot [this message]
2021-08-31 12:30   ` kernel test robot
2021-08-31 12:30     ` kernel test robot
2021-08-31  8:35 ` [RFC 1/4] Bluetooth: Add bt_skb_sendmsg helper Marcel Holtmann
2021-09-01  0:20   ` Luiz Augusto von Dentz
2021-08-31 19:11 ` [RFC,1/4] " bluez.test.bot

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=202108311119.W2IP7Uns-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.