From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_BLOCKED, URIBL_DBL_BLOCKED_OPENDNS autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1691560829; bh=sUxBe4xsaTQz/nmfO7jgxcLVY/2uKA2sfecxoAXqvE8=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=bbvfyZ4NPZF8OhTKkLJsaOwcnfyOz9YR5P8lCzBT+hFLvfG/U8p2hk2DRZVnf4A3i xohZvZTdyKXS9Pr6M74HjGeZ6H0UI64R7kI+yx7OLTkibJP4N8l40BEP0WJMzAVTNM 7g8MTj+tALRqDWEaxoafHrs5cmyEyNlHkHHA/CNOCkzZi3hPN+iD8rjN2c3xNpRAUp dT4deVyUqBUkmWrSittbI7yUjfc3JNaY1JXLrUdL5cciuI/YNvAGvxFBz9WFwDvOIs DtM76vCDwoog9umMG0W5YK9sKb9NqVWWpLG6qkVbSE/yPrmxxpvjZiq9a4fjiQ9iQo OcjLIuolJ3gzQ== Received: from biznet-home.integral.gnuweeb.org (unknown [182.253.126.208]) by gnuweeb.org (Postfix) with ESMTPSA id 5052824B120; Wed, 9 Aug 2023 13:00:27 +0700 (WIB) Date: Wed, 9 Aug 2023 13:00:23 +0700 From: Ammar Faizi To: kernel test robot Cc: GNU/Weeb Mailing List Subject: Re: [ammarfaizi2-block:testing/af/home] BUILD REGRESSION 8b2a24828c670d20cda3d69f5741e11e89f575f7 Message-ID: References: <202308091106.hdYrfayP-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202308091106.hdYrfayP-lkp@intel.com> X-Bpl: hUx9VaHkTWcLO7S8CQCslj6OzqBx2hfLChRz45nPESx5VSB/xuJQVOKOB1zSXE3yc9ntP27bV1M1 List-Id: On Wed, Aug 09, 2023 at 11:00:15AM +0800, kernel test robot wrote: > tree/branch: https://github.com/ammarfaizi2/linux-block testing/af/home > branch HEAD: 8b2a24828c670d20cda3d69f5741e11e89f575f7 btrfs: Add `BTRFS_DEFAULT_MAX_THREAD_POOL_SIZE` macro > > Error/Warning reports: > > https://lore.kernel.org/oe-kbuild-all/202308090043.lJ8zFk78-lkp@intel.com > https://lore.kernel.org/oe-kbuild-all/202308090137.21gS239M-lkp@intel.com > > Error/Warning: (recently discovered and may have been fixed) > > fs/btrfs/async-thread.c:411:34: error: no member named 'hipri_workers' in 'struct btrfs_fs_info'; did you mean 'fixup_workers'? > fs/btrfs/async-thread.c:411:41: error: 'struct btrfs_fs_info' has no member named 'hipri_workers'; did you mean 'fixup_workers'? Ah yeah, since commit: 8bfec2e426e4 ("btrfs: remove hipri_workers workqueue") the hipri_workers field no longer exists. Thanks, diff --git a/fs/btrfs/async-thread.c b/fs/btrfs/async-thread.c index a8fb6a38f043d32d..eb54fe5c2acea7d7 100644 --- a/fs/btrfs/async-thread.c +++ b/fs/btrfs/async-thread.c @@ -408,7 +408,6 @@ void btrfs_apply_workqueue_cpu_set(struct btrfs_fs_info *fs_info) return; btrfs_apply_wq_cpu_set(fs_info, workers); - btrfs_apply_wq_cpu_set(fs_info, hipri_workers); btrfs_apply_wq_cpu_set(fs_info, delalloc_workers); btrfs_apply_wq_cpu_set(fs_info, flush_workers); btrfs_apply_wq_cpu_set(fs_info, caching_workers); -- Ammar Faizi