From: kernel test robot <lkp@intel.com>
To: Kangzhen Lou <kangzhen.lou@dell.com>, oliver@neukum.org
Cc: oe-kbuild-all@lists.linux.dev, linux-usb@vger.kernel.org,
Kangzhen Lou <kangzhen.lou@dell.com>
Subject: Re: [PATCH] net: cdc_ncm: support ACPI MAC address pass through functionality
Date: Thu, 9 Mar 2023 20:25:53 +0800 [thread overview]
Message-ID: <202303092027.01TO9rlB-lkp@intel.com> (raw)
In-Reply-To: <20230309083436.6729-1-kangzhen.lou@dell.com>
Hi Kangzhen,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on westeri-thunderbolt/next]
[also build test WARNING on linus/master v6.3-rc1 next-20230309]
[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#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Kangzhen-Lou/net-cdc_ncm-support-ACPI-MAC-address-pass-through-functionality/20230309-184736
base: https://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git next
patch link: https://lore.kernel.org/r/20230309083436.6729-1-kangzhen.lou%40dell.com
patch subject: [PATCH] net: cdc_ncm: support ACPI MAC address pass through functionality
config: ia64-allyesconfig (https://download.01.org/0day-ci/archive/20230309/202303092027.01TO9rlB-lkp@intel.com/config)
compiler: ia64-linux-gcc (GCC) 12.1.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/intel-lab-lkp/linux/commit/97cd8ee9a774c36093af3d26255e415f6082b4a3
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Kangzhen-Lou/net-cdc_ncm-support-ACPI-MAC-address-pass-through-functionality/20230309-184736
git checkout 97cd8ee9a774c36093af3d26255e415f6082b4a3
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=ia64 olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=ia64 SHELL=/bin/bash drivers/net/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202303092027.01TO9rlB-lkp@intel.com/
All warnings (new ones prefixed by >>):
drivers/net/usb/cdc_ncm.c:818:5: warning: no previous prototype for 'acpi_mac_passthru_invalid' [-Wmissing-prototypes]
818 | int acpi_mac_passthru_invalid(void)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
drivers/net/usb/cdc_ncm.c:851:5: warning: no previous prototype for 'get_acpi_mac_passthru' [-Wmissing-prototypes]
851 | int get_acpi_mac_passthru(char *MACAddress)
| ^~~~~~~~~~~~~~~~~~~~~
drivers/net/usb/cdc_ncm.c: In function 'cdc_ncm_get_ethernet_address':
drivers/net/usb/cdc_ncm.c:894:49: warning: passing argument 6 of 'usbnet_read_cmd' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
894 | iface_no, dev->net->dev_addr, ETH_ALEN);
| ~~~~~~~~^~~~~~~~~~
In file included from drivers/net/usb/cdc_ncm.c:53:
include/linux/usb/usbnet.h:181:49: note: expected 'void *' but argument is of type 'const unsigned char *'
181 | u16 value, u16 index, void *data, u16 size);
| ~~~~~~^~~~
drivers/net/usb/cdc_ncm.c: In function 'cdc_ncm_determine_ethernet_addr':
>> drivers/net/usb/cdc_ncm.c:980:48: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
980 | memcpy(dev->net->dev_addr, sa.sa_data, ETH_ALEN);
| ~~~~~~~~^~~~~~~~~~
In file included from include/linux/string.h:20,
from include/linux/bitmap.h:11,
from include/linux/cpumask.h:12,
from include/linux/mm_types_task.h:14,
from include/linux/mm_types.h:5,
from include/linux/buildid.h:5,
from include/linux/module.h:14,
from drivers/net/usb/cdc_ncm.c:41:
arch/ia64/include/asm/string.h:19:22: note: expected 'void *' but argument is of type 'const unsigned char *'
19 | extern void *memcpy (void *, const void *, __kernel_size_t);
| ^~~~~~
vim +980 drivers/net/usb/cdc_ncm.c
950
951 static int cdc_ncm_determine_ethernet_addr(struct usb_interface *intf)
952 {
953 struct sockaddr sa;
954 struct usbnet *dev = usb_get_intfdata(intf);
955 struct cdc_ncm_ctx *ctx;
956 int ret = 0;
957
958 if (!dev)
959 return 0;
960
961 /* MAC pass through function only apply to Realtek RTL8153-DD chip */
962 if (!(dev->udev->descriptor.idVendor == 0x0bda
963 && dev->udev->descriptor.idProduct == 0x8153
964 && (dev->udev->descriptor.bcdDevice & 0xff00) == 0x3300))
965 return 0;
966
967 ctx = (struct cdc_ncm_ctx *)dev->data[0];
968 if (!ctx->ether_desc)
969 return 0;
970
971 ret = cdc_ncm_get_ethernet_address(dev, ctx);
972 if (ret) {
973 dev_dbg(&intf->dev, "failed to get mac address\n");
974 return ret;
975 }
976
977 if (!get_acpi_mac_passthru(sa.sa_data)) {
978 if (memcmp(dev->net->dev_addr, sa.sa_data, ETH_ALEN) != 0) {
979 if (!cdc_ncm_set_ethernet_address(dev, &sa))
> 980 memcpy(dev->net->dev_addr, sa.sa_data, ETH_ALEN);
981 }
982 }
983
984 dev_info(&intf->dev, "MAC-Address: %pM\n", dev->net->dev_addr);
985
986 return 0;
987 }
988
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
next prev parent reply other threads:[~2023-03-09 12:27 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-09 8:34 [PATCH] net: cdc_ncm: support ACPI MAC address pass through functionality Kangzhen Lou
2023-03-09 11:10 ` Greg KH
2023-03-28 3:54 ` [PATCH] net: cdc_ncm: support ACPI MAC address pass through functionality Message-ID: <ZAm+irMSf7FrcGK3@kroah.com> Kangzhen Lou
2023-03-09 12:15 ` [PATCH] net: cdc_ncm: support ACPI MAC address pass through functionality kernel test robot
2023-03-09 12:25 ` kernel test robot [this message]
2023-03-10 5:31 ` kernel test robot
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=202303092027.01TO9rlB-lkp@intel.com \
--to=lkp@intel.com \
--cc=kangzhen.lou@dell.com \
--cc=linux-usb@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=oliver@neukum.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 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).