From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 83D7311700 for ; Sun, 7 Jan 2024 20:35:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=intel.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=intel.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b="CH5Hgg1u" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1704659753; x=1736195753; h=date:from:to:cc:subject:message-id:mime-version; bh=ZocXyGs3K8RwSITndxX5WUhZkUHWMPzaU9We0EHy10U=; b=CH5Hgg1uBsLfdQPtnSO78uFjQZiaOiWN6Ess8H1YA7GIERlGH032MDt6 y8do4Iln3uIWcSkrKrwuJ8G1l6VxDgd46j6sjG/oMjAwGcpABFosVvGbK ChQnvFo+fYuy0JF9I5GeXuDLcFQg69BuQmHyh7cQZGWKmw02TNUjnbmof LHTZjMrcMOqgmmhQaBb88rYvECNn51VDA46YXQFR1RFKOcSp1BhsVWGQh QkcAKGdQJ9B0TFeLjDjCsQoCvc4S0NEJxF58aEOXPme8sPXHbfbK0LFQZ O12Yal6qfhE18cjbEbnKlOYe4znk0Xfak0MTHcg1Nafb2trBoh5whZGxA A==; X-IronPort-AV: E=McAfee;i="6600,9927,10946"; a="462046999" X-IronPort-AV: E=Sophos;i="6.04,339,1695711600"; d="scan'208";a="462046999" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jan 2024 12:35:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10946"; a="954455052" X-IronPort-AV: E=Sophos;i="6.04,339,1695711600"; d="scan'208";a="954455052" Received: from lkp-server02.sh.intel.com (HELO b07ab15da5fe) ([10.239.97.151]) by orsmga005.jf.intel.com with ESMTP; 07 Jan 2024 12:35:51 -0800 Received: from kbuild by b07ab15da5fe with local (Exim 4.96) (envelope-from ) id 1rMZs5-00048O-0h; Sun, 07 Jan 2024 20:35:49 +0000 Date: Mon, 8 Jan 2024 04:35:42 +0800 From: kernel test robot To: Arnd Bergmann Cc: oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org, Christian Brauner , Alexander Gordeev Subject: arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo' Message-ID: <202401080456.5qtlJuny-lkp@intel.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi Arnd, FYI, the error/warning still remains. tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 52b1853b080a082ec3749c3a9577f6c71b1d4a90 commit: ef104443bffa004f631729dfc924f0b84abbd602 procfs: consolidate arch_report_meminfo declaration date: 8 months ago config: parisc-randconfig-r062-20240107 (https://download.01.org/0day-ci/archive/20240108/202401080456.5qtlJuny-lkp@intel.com/config) compiler: hppa-linux-gcc (GCC) 13.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240108/202401080456.5qtlJuny-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot | Closes: https://lore.kernel.org/oe-kbuild-all/202401080456.5qtlJuny-lkp@intel.com/ All warnings (new ones prefixed by >>): >> arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo' [-Wmissing-prototypes] 65 | void arch_report_meminfo(struct seq_file *m) | ^~~~~~~~~~~~~~~~~~~ vim +/arch_report_meminfo +65 arch/parisc/kernel/pdt.c c9c2877d08d9aa Helge Deller 2017-05-11 63 c9c2877d08d9aa Helge Deller 2017-05-11 64 /* report PDT entries via /proc/meminfo */ c9c2877d08d9aa Helge Deller 2017-05-11 @65 void arch_report_meminfo(struct seq_file *m) c9c2877d08d9aa Helge Deller 2017-05-11 66 { c9c2877d08d9aa Helge Deller 2017-05-11 67 if (pdt_type == PDT_NONE) c9c2877d08d9aa Helge Deller 2017-05-11 68 return; c9c2877d08d9aa Helge Deller 2017-05-11 69 c9c2877d08d9aa Helge Deller 2017-05-11 70 seq_printf(m, "PDT_max_entries: %7lu\n", c9c2877d08d9aa Helge Deller 2017-05-11 71 pdt_status.pdt_size); c9c2877d08d9aa Helge Deller 2017-05-11 72 seq_printf(m, "PDT_cur_entries: %7lu\n", c9c2877d08d9aa Helge Deller 2017-05-11 73 pdt_status.pdt_entries); c9c2877d08d9aa Helge Deller 2017-05-11 74 } c9c2877d08d9aa Helge Deller 2017-05-11 75 :::::: The code at line 65 was first introduced by commit :::::: c9c2877d08d9aa0ca0a5c227ac795fbb76269300 parisc: Add Page Deallocation Table (PDT) support :::::: TO: Helge Deller :::::: CC: Helge Deller -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki