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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6D081EB64DD for ; Wed, 16 Aug 2023 03:20:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241592AbjHPDUQ (ORCPT ); Tue, 15 Aug 2023 23:20:16 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56752 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241419AbjHPDTk (ORCPT ); Tue, 15 Aug 2023 23:19:40 -0400 Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.88]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2550B1FCA for ; Tue, 15 Aug 2023 20:19:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1692155979; x=1723691979; h=date:from:to:cc:subject:message-id:mime-version; bh=CkXtmHegSk/PkmcFdzJevFUzfjawOHUoTx9CiuDiLa0=; b=mtPk5AteM6iGbODA0yp2aMAPahTtDx+MHX4sHn4LBVK9JGEon+g+ojD9 u948dtS60yJBefSx0UWDbBmF8xRS+8KrFk6UScPU0GAaq75ZI9qlP2mHL kVvxJO1sBmQqwlVPi9feIDmvBxXtsXFBqtDskIzUEnDFYihbbW8atjTww PS34IUd7fV2IvP60G5dr3uDzc4uCgwvQspEYXVXJGnO87zLgCELXMGHsK D2zrqpcy/4Wl2af/bz0TSCGFwNKxyvRrTa21hJMyuf0PztAp4wuxIDxMU Xhu5MoXm53Tn7zIvNT7lyrdBiYlERvRkSlwf6/uYoR0eiraSeoC/yrbH3 Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10803"; a="403408302" X-IronPort-AV: E=Sophos;i="6.01,175,1684825200"; d="scan'208";a="403408302" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Aug 2023 20:19:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10803"; a="804041982" X-IronPort-AV: E=Sophos;i="6.01,175,1684825200"; d="scan'208";a="804041982" Received: from lkp-server02.sh.intel.com (HELO b5fb8d9e1ffc) ([10.239.97.151]) by fmsmga004.fm.intel.com with ESMTP; 15 Aug 2023 20:19:37 -0700 Received: from kbuild by b5fb8d9e1ffc with local (Exim 4.96) (envelope-from ) id 1qW74K-0001Rb-2m; Wed, 16 Aug 2023 03:19:36 +0000 Date: Wed, 16 Aug 2023 11:19:25 +0800 From: kernel test robot To: "Paul E. McKenney" Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org Subject: [paulmck-rcu:dev.2023.08.14a 49/51] kernel/rcu/rcutorture.c:24:10: fatal error: 'linux/rcu_notifier.h' file not found Message-ID: <202308161157.fjx0zzow-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org tree: https://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev.2023.08.14a head: a90c4cbc91475bd5df35f712a954972fbfff40a1 commit: 37730a9ba11627b63d8108dd8b3061ea2ee04df9 [49/51] rcutorture: Add test of RCU CPU stall notifiers config: x86_64-randconfig-x004-20230816 (https://download.01.org/0day-ci/archive/20230816/202308161157.fjx0zzow-lkp@intel.com/config) compiler: clang version 16.0.4 (https://github.com/llvm/llvm-project.git ae42196bc493ffe877a7e3dff8be32035dea4d07) reproduce: (https://download.01.org/0day-ci/archive/20230816/202308161157.fjx0zzow-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/202308161157.fjx0zzow-lkp@intel.com/ All errors (new ones prefixed by >>): >> kernel/rcu/rcutorture.c:24:10: fatal error: 'linux/rcu_notifier.h' file not found #include ^~~~~~~~~~~~~~~~~~~~~~ 1 error generated. vim +24 kernel/rcu/rcutorture.c 14 15 #include 16 #include 17 #include 18 #include 19 #include 20 #include 21 #include 22 #include 23 #include > 24 #include 25 #include 26 #include 27 #include 28 #include 29 #include 30 #include 31 #include 32 #include 33 #include 34 #include 35 #include 36 #include 37 #include 38 #include 39 #include 40 #include 41 #include 42 #include 43 #include 44 #include 45 #include 46 #include 47 #include 48 #include 49 #include 50 #include 51 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki