Hi Yuval, [auto build test ERROR on net-next/master] [also build test ERROR on v4.11 next-20170511] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Yuval-Shaia/net-mlx4_core-Use-min_t-instead-of-if-for-consistency/20170511-163038 config: powerpc-ppc64_defconfig (attached as .config) compiler: powerpc64-linux-gnu-gcc (Debian 6.1.1-9) 6.1.1 20160705 reproduce: wget https://raw.githubusercontent.com/01org/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # save the attached .config to linux build tree make.cross ARCH=powerpc All errors (new ones prefixed by >>): drivers/net/ethernet/mellanox/mlx4/main.c: In function 'mlx4_enable_msi_x': >> drivers/net/ethernet/mellanox/mlx4/main.c:2869:30: error: macro "min_t" requires 3 arguments, but only 2 given nreq = min_t(nreq, MAX_MSIX); ^ >> drivers/net/ethernet/mellanox/mlx4/main.c:2869:10: error: 'min_t' undeclared (first use in this function) nreq = min_t(nreq, MAX_MSIX); ^~~~~ drivers/net/ethernet/mellanox/mlx4/main.c:2869:10: note: each undeclared identifier is reported only once for each function it appears in vim +/min_t +2869 drivers/net/ethernet/mellanox/mlx4/main.c 2863 2864 if (msi_x) { 2865 int nreq = min_t(int, 2866 dev->caps.num_ports * num_online_cpus() + 1, 2867 dev->caps.num_eqs - dev->caps.reserved_eqs); 2868 > 2869 nreq = min_t(nreq, MAX_MSIX); 2870 2871 entries = kcalloc(nreq, sizeof *entries, GFP_KERNEL); 2872 if (!entries) --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation
Attachment:
.config.gz
Description: application/gzip