From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.10]) (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 43391224CA for ; Tue, 14 Nov 2023 13:43:27 +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="MNAzUkkJ" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1699969407; x=1731505407; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=6VwIraGNFNcEbcFRhPWTzddi2+t1Nd4XYUvQWVB6Yz0=; b=MNAzUkkJC4R0M99nTINGymXaq+jqytgVsWxsd0sAoKrdPhyo3k5OAS75 jwc42WhmLRNY09kNYThU9AfOrHU8uHH4EzazL2DZy6DQVIaIu4lXspebA sQfEs3lnp4MGQBNx+9iR6D7CoTCoQ+tdnCNZ/Rw96BP8+C7DfHaqdp7QI hwH0EHWlPBcWFLJyopeL2cd6B4TLlxnSjYV2zCH1+0BTFdlJHmgzWi1Jg BVTVKTJskPSasBeGDIUNpP2B51Nu1vIHBq3F+PnxXAS8u7o3Q3kR0jsAf tuCNSWTPLmMoOVARJUMjPpNO+DhnL85Gqp4jXTClKxSOqQOjkslfm0lAV Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10894"; a="3761152" X-IronPort-AV: E=Sophos;i="6.03,302,1694761200"; d="scan'208";a="3761152" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orvoesa102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Nov 2023 05:43:27 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10894"; a="938092066" X-IronPort-AV: E=Sophos;i="6.03,302,1694761200"; d="scan'208";a="938092066" Received: from lkp-server02.sh.intel.com (HELO 83346ef18697) ([10.239.97.151]) by orsmga005.jf.intel.com with ESMTP; 14 Nov 2023 05:43:22 -0800 Received: from kbuild by 83346ef18697 with local (Exim 4.96) (envelope-from ) id 1r2thH-0000HL-39; Tue, 14 Nov 2023 13:43:19 +0000 Date: Tue, 14 Nov 2023 21:42:52 +0800 From: kernel test robot To: Yicong Yang , catalin.marinas@arm.com, will@kernel.org, sudeep.holla@arm.com, linux-arm-kernel@lists.infradead.org Cc: oe-kbuild-all@lists.linux.dev, dietmar.eggemann@arm.com, gregkh@linuxfoundation.org, rafael@kernel.org, jonathan.cameron@huawei.com, prime.zeng@hisilicon.com, linuxarm@huawei.com, yangyicong@hisilicon.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 1/4] arch_topology: Support basic SMT control for the driver Message-ID: <202311142157.B3tyngmI-lkp@intel.com> References: <20231114040110.54590-2-yangyicong@huawei.com> Precedence: bulk X-Mailing-List: oe-kbuild-all@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231114040110.54590-2-yangyicong@huawei.com> Hi Yicong, kernel test robot noticed the following build warnings: [auto build test WARNING on arm64/for-next/core] [also build test WARNING on driver-core/driver-core-testing driver-core/driver-core-next driver-core/driver-core-linus arm/for-next kvmarm/next soc/for-next linus/master arm/fixes v6.7-rc1 next-20231114] [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/Yicong-Yang/arch_topology-Support-basic-SMT-control-for-the-driver/20231114-120544 base: https://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git for-next/core patch link: https://lore.kernel.org/r/20231114040110.54590-2-yangyicong%40huawei.com patch subject: [PATCH v3 1/4] arch_topology: Support basic SMT control for the driver config: parisc-generic-64bit_defconfig (https://download.01.org/0day-ci/archive/20231114/202311142157.B3tyngmI-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/20231114/202311142157.B3tyngmI-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/202311142157.B3tyngmI-lkp@intel.com/ All warnings (new ones prefixed by >>): >> drivers/base/arch_topology.c:32:12: warning: 'topology_smt_num_threads' defined but not used [-Wunused-variable] 32 | static int topology_smt_num_threads = 1; | ^~~~~~~~~~~~~~~~~~~~~~~~ vim +/topology_smt_num_threads +32 drivers/base/arch_topology.c 30 31 /* Maximum threads number per-Core */ > 32 static int topology_smt_num_threads = 1; 33 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 41A09C4167D for ; Tue, 14 Nov 2023 13:43:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=DgRB/ylFd/rT3ZvuYUbwV9aeh13jd30HNeO25OKWwBw=; b=Ny8BUP1H/MuBLL 21U0tRZ0P6xqO9OKeCmdh8Ttbe5bQa8s5dsVbH5e2T3J/ixXy3xKMWGJnFJu+E3wikbJ8HlVV9mCi NIhyNmYNwisucJpJPGS95TIcAbfAY3K2v6YQ1FAJM6Ylpn9XA/dn+FyzsdCNwC5hAgXPTBN5xKG2e 0s7VeLQwKLI8BKy1IunSvWMIkIrFlyhi1LDx2DvrBh27qf6Q9m3EayfHFqjdH8uwfwMfu4H170wXP ca91HH83ALyCCujy7n/VSa97/qVJIwrxFrEotqvFW+NuxjXGAg6anHqs5lheetRZah8kBDvaCPrJM tewNiFBderKKgBneW+Gg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1r2thV-00G4cD-2s; Tue, 14 Nov 2023 13:43:33 +0000 Received: from mgamail.intel.com ([198.175.65.10]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1r2thT-00G4Zy-0E for linux-arm-kernel@lists.infradead.org; Tue, 14 Nov 2023 13:43:32 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1699969411; x=1731505411; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=6VwIraGNFNcEbcFRhPWTzddi2+t1Nd4XYUvQWVB6Yz0=; b=CgQL54DZnlaM8ZE9rzaDeNNtPSs9lLzY4MnxBunDfXT62VfXfDfq3rYs c159+bIEvRHHA1iuKTO9Pfg9xBFnbCFbEDAgaavYGhqpKIScQUTiPlA9T MmeA66jX7aiQbzfRt1ceVS6s4JV+3a7AHILKGboWnN0HKE836J6sMlkBT G3+B7PQDVfW3mNZtbdh/yVJ2kPTGsd401xE6zCPJgtjGfDlrYy3hQe/bM AAGJ0/V0t5urgUun0luahhuan6HRIu0NhDBif0lEmpZGbiyqgwE7izxgA Q593cLxlmJoXcc09N/YBPKzTfw0OD4x0Kxgx7iav+wxRrNGtDU3th45AP g==; X-IronPort-AV: E=McAfee;i="6600,9927,10894"; a="3761149" X-IronPort-AV: E=Sophos;i="6.03,302,1694761200"; d="scan'208";a="3761149" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orvoesa102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Nov 2023 05:43:27 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10894"; a="938092066" X-IronPort-AV: E=Sophos;i="6.03,302,1694761200"; d="scan'208";a="938092066" Received: from lkp-server02.sh.intel.com (HELO 83346ef18697) ([10.239.97.151]) by orsmga005.jf.intel.com with ESMTP; 14 Nov 2023 05:43:22 -0800 Received: from kbuild by 83346ef18697 with local (Exim 4.96) (envelope-from ) id 1r2thH-0000HL-39; Tue, 14 Nov 2023 13:43:19 +0000 Date: Tue, 14 Nov 2023 21:42:52 +0800 From: kernel test robot To: Yicong Yang , catalin.marinas@arm.com, will@kernel.org, sudeep.holla@arm.com, linux-arm-kernel@lists.infradead.org Cc: oe-kbuild-all@lists.linux.dev, dietmar.eggemann@arm.com, gregkh@linuxfoundation.org, rafael@kernel.org, jonathan.cameron@huawei.com, prime.zeng@hisilicon.com, linuxarm@huawei.com, yangyicong@hisilicon.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 1/4] arch_topology: Support basic SMT control for the driver Message-ID: <202311142157.B3tyngmI-lkp@intel.com> References: <20231114040110.54590-2-yangyicong@huawei.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20231114040110.54590-2-yangyicong@huawei.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20231114_054331_200105_713B38A1 X-CRM114-Status: GOOD ( 12.75 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Yicong, kernel test robot noticed the following build warnings: [auto build test WARNING on arm64/for-next/core] [also build test WARNING on driver-core/driver-core-testing driver-core/driver-core-next driver-core/driver-core-linus arm/for-next kvmarm/next soc/for-next linus/master arm/fixes v6.7-rc1 next-20231114] [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/Yicong-Yang/arch_topology-Support-basic-SMT-control-for-the-driver/20231114-120544 base: https://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git for-next/core patch link: https://lore.kernel.org/r/20231114040110.54590-2-yangyicong%40huawei.com patch subject: [PATCH v3 1/4] arch_topology: Support basic SMT control for the driver config: parisc-generic-64bit_defconfig (https://download.01.org/0day-ci/archive/20231114/202311142157.B3tyngmI-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/20231114/202311142157.B3tyngmI-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/202311142157.B3tyngmI-lkp@intel.com/ All warnings (new ones prefixed by >>): >> drivers/base/arch_topology.c:32:12: warning: 'topology_smt_num_threads' defined but not used [-Wunused-variable] 32 | static int topology_smt_num_threads = 1; | ^~~~~~~~~~~~~~~~~~~~~~~~ vim +/topology_smt_num_threads +32 drivers/base/arch_topology.c 30 31 /* Maximum threads number per-Core */ > 32 static int topology_smt_num_threads = 1; 33 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel