From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by smtp.lore.kernel.org (Postfix) with ESMTP id E364AC433F5 for ; Wed, 1 Dec 2021 10:32:46 +0000 (UTC) Received: by kanga.kvack.org (Postfix) id 4ABE06B0073; Wed, 1 Dec 2021 05:32:36 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id 459C06B0074; Wed, 1 Dec 2021 05:32:36 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 370216B0075; Wed, 1 Dec 2021 05:32:36 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0116.hostedemail.com [216.40.44.116]) by kanga.kvack.org (Postfix) with ESMTP id 299D66B0073 for ; Wed, 1 Dec 2021 05:32:36 -0500 (EST) Received: from smtpin27.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay03.hostedemail.com (Postfix) with ESMTP id DD3E48249980 for ; Wed, 1 Dec 2021 10:32:25 +0000 (UTC) X-FDA: 78868861050.27.220ED8D Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by imf06.hostedemail.com (Postfix) with ESMTP id E1C10801A8A3 for ; Wed, 1 Dec 2021 10:32:24 +0000 (UTC) X-IronPort-AV: E=McAfee;i="6200,9189,10184"; a="299822241" X-IronPort-AV: E=Sophos;i="5.87,278,1631602800"; d="scan'208";a="299822241" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Dec 2021 02:32:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,278,1631602800"; d="scan'208";a="654720653" Received: from lkp-server02.sh.intel.com (HELO 9e1e9f9b3bcb) ([10.239.97.151]) by fmsmga001.fm.intel.com with ESMTP; 01 Dec 2021 02:32:22 -0800 Received: from kbuild by 9e1e9f9b3bcb with local (Exim 4.92) (envelope-from ) id 1msMuT-000Ekr-Jb; Wed, 01 Dec 2021 10:32:21 +0000 Date: Wed, 1 Dec 2021 18:31:51 +0800 From: kernel test robot To: Muchun Song Cc: kbuild-all@lists.01.org, Linux Memory Management List , Andrew Morton Subject: [linux-next:master 4619/4626] drivers/nubus/proc.c:112:20: error: called object 'pde_data' is not a function or function pointer Message-ID: <202112011801.s4uIt5YV-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-Rspamd-Server: rspam11 X-Rspamd-Queue-Id: E1C10801A8A3 X-Stat-Signature: ru4iqwuuod7azkdpbh78qcmputd3inrg Authentication-Results: imf06.hostedemail.com; dkim=none; dmarc=fail reason="No valid SPF, No valid DKIM" header.from=intel.com (policy=none); spf=none (imf06.hostedemail.com: domain of lkp@intel.com has no SPF policy when checking 134.134.136.100) smtp.mailfrom=lkp@intel.com X-HE-Tag: 1638354744-432992 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master head: 048aeae86c3967f4c40666cd26f2c1eb73a4b805 commit: 6c7bec95ceb319e9cc9e35884fa1a16411c8eab5 [4619/4626] proc: remove PDE_DATA() completely config: m68k-defconfig (https://download.01.org/0day-ci/archive/20211201/202112011801.s4uIt5YV-lkp@intel.com/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://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=6c7bec95ceb319e9cc9e35884fa1a16411c8eab5 git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git git fetch --no-tags linux-next master git checkout 6c7bec95ceb319e9cc9e35884fa1a16411c8eab5 # save the config file to linux build tree mkdir build_dir COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=m68k SHELL=/bin/bash If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All errors (new ones prefixed by >>): drivers/nubus/proc.c: In function 'nubus_proc_rsrc_show': >> drivers/nubus/proc.c:112:20: error: called object 'pde_data' is not a function or function pointer 112 | pde_data = pde_data(inode); | ^~~~~~~~ drivers/nubus/proc.c:110:37: note: declared here 110 | struct nubus_proc_pde_data *pde_data; | ^~~~~~~~ vim +/pde_data +112 drivers/nubus/proc.c 106 107 static int nubus_proc_rsrc_show(struct seq_file *m, void *v) 108 { 109 struct inode *inode = m->private; 110 struct nubus_proc_pde_data *pde_data; 111 > 112 pde_data = pde_data(inode); 113 if (!pde_data) 114 return 0; 115 116 if (pde_data->res_size > m->size) 117 return -EFBIG; 118 119 if (pde_data->res_size) { 120 int lanes = (int)proc_get_parent_data(inode); 121 struct nubus_dirent ent; 122 123 if (!lanes) 124 return 0; 125 126 ent.mask = lanes; 127 ent.base = pde_data->res_ptr; 128 ent.data = 0; 129 nubus_seq_write_rsrc_mem(m, &ent, pde_data->res_size); 130 } else { 131 unsigned int data = (unsigned int)pde_data->res_ptr; 132 133 seq_putc(m, data >> 16); 134 seq_putc(m, data >> 8); 135 seq_putc(m, data >> 0); 136 } 137 return 0; 138 } 139 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org