From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.8]) (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 0927854FA2; Tue, 21 Nov 2023 17:09:51 +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="I6VDx++u" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1700586592; x=1732122592; h=date:from:to:cc:subject:message-id:mime-version; bh=IjIFoFy6HcwJ+HemyO4VxK0Byfq+CQ8SrdYszDMI/kM=; b=I6VDx++u9nJD0ysQQyFi1cjsAVzGQnf5OVqDAg0uxMA1SHd9uYuqaJKT ANKtzmWL7d4i4+Z/c/fwjunWV6JZl45kvKmm9viA4fYGrZ9N47i+UNa1X vjvyA+Ic/RUfjwtPDnI0rodlWcHpUdB+fjH9dgIlMOAcKCt/Ay8geakzL 1tEw3BzhrxxCZqeN1X7oIc62M+absb+6gKTIwYrUvg9NsjT5t2Twujr2J jBfCphkr+xJLMZypO/iawUHrm9JH3NNeSpExJo11VizYMe586gG4wAmdi 0W6yiW1FwvF4fPMhWn7srL5pH5UsAj8qKwj6UIQ/OGtFZBxA0IZW6PedI Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10901"; a="5010892" X-IronPort-AV: E=Sophos;i="6.04,216,1695711600"; d="scan'208";a="5010892" Received: from orviesa001.jf.intel.com ([10.64.159.141]) by fmvoesa102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Nov 2023 09:09:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.04,216,1695711600"; d="scan'208";a="14570558" Received: from lkp-server02.sh.intel.com (HELO b8de5498638e) ([10.239.97.151]) by orviesa001.jf.intel.com with ESMTP; 21 Nov 2023 09:09:23 -0800 Received: from kbuild by b8de5498638e with local (Exim 4.96) (envelope-from ) id 1r5UFP-00084c-0q; Tue, 21 Nov 2023 17:09:15 +0000 Date: Wed, 22 Nov 2023 01:08:52 +0800 From: kernel test robot To: Thomas Gleixner Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev Subject: [tglx-devel:x86/topology 30/73] arch/x86/hyperv/hv_vtl.c:29:19: error: no member named 'find_smp_config' in 'struct x86_init_mpparse'; did you mean 'get_smp_config'? Message-ID: <202311220123.GmPxx6VY-lkp@intel.com> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline tree: https://git.kernel.org/pub/scm/linux/kernel/git/tglx/devel.git x86/topology head: 4fe0e2152c0eca6ed0c790ace47809c2c9e62708 commit: cde477ffc7d4bae2cefa239dddb4d2465b75edaa [30/73] x86/mpparse: Rename default_find_smp_config() config: x86_64-allyesconfig (https://download.01.org/0day-ci/archive/20231122/202311220123.GmPxx6VY-lkp@intel.com/config) compiler: clang version 16.0.4 (https://github.com/llvm/llvm-project.git ae42196bc493ffe877a7e3dff8be32035dea4d07) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231122/202311220123.GmPxx6VY-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/202311220123.GmPxx6VY-lkp@intel.com/ All errors (new ones prefixed by >>): >> arch/x86/hyperv/hv_vtl.c:29:19: error: no member named 'find_smp_config' in 'struct x86_init_mpparse'; did you mean 'get_smp_config'? x86_init.mpparse.find_smp_config = x86_init_noop; ^~~~~~~~~~~~~~~ get_smp_config arch/x86/include/asm/x86_init.h:24:9: note: 'get_smp_config' declared here void (*get_smp_config)(unsigned int early); ^ 1 error generated. vim +29 arch/x86/hyperv/hv_vtl.c 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 18 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 19 void __init hv_vtl_init_platform(void) 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 20 { 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 21 pr_info("Linux runs in Hyper-V Virtual Trust Level\n"); 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 22 cb6aeeb69af06b Saurabh Sengar 2023-04-24 23 x86_platform.realmode_reserve = x86_init_noop; cb6aeeb69af06b Saurabh Sengar 2023-04-24 24 x86_platform.realmode_init = x86_init_noop; 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 25 x86_init.irqs.pre_vector_init = x86_init_noop; 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 26 x86_init.timers.timer_init = x86_init_noop; 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 27 9e2d0c33652470 Saurabh Sengar 2023-06-23 28 /* Avoid searching for BIOS MP tables */ 9e2d0c33652470 Saurabh Sengar 2023-06-23 @29 x86_init.mpparse.find_smp_config = x86_init_noop; 9e2d0c33652470 Saurabh Sengar 2023-06-23 30 x86_init.mpparse.get_smp_config = x86_init_uint_noop; 9e2d0c33652470 Saurabh Sengar 2023-06-23 31 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 32 x86_platform.get_wallclock = get_rtc_noop; 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 33 x86_platform.set_wallclock = set_rtc_noop; 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 34 x86_platform.get_nmi_reason = hv_get_nmi_reason; 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 35 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 36 x86_platform.legacy.i8042 = X86_LEGACY_I8042_PLATFORM_ABSENT; 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 37 x86_platform.legacy.rtc = 0; 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 38 x86_platform.legacy.warm_reset = 0; 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 39 x86_platform.legacy.reserve_bios_regions = 0; 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 40 x86_platform.legacy.devices.pnpbios = 0; 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 41 } 3be1bc2fe9d2e4 Saurabh Sengar 2023-04-10 42 :::::: The code at line 29 was first introduced by commit :::::: 9e2d0c336524706fb327e9b87477f5f3337ad7a6 x86/hyperv: add noop functions to x86_init mpparse functions :::::: TO: Saurabh Sengar :::::: CC: Wei Liu -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki