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 X-Spam-Level: X-Spam-Status: No, score=-19.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B3B0BC43460 for ; Mon, 5 Apr 2021 16:04:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8D0C1613C6 for ; Mon, 5 Apr 2021 16:04:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242057AbhDEQE2 (ORCPT ); Mon, 5 Apr 2021 12:04:28 -0400 Received: from mail.kernel.org ([198.145.29.99]:55742 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S242047AbhDEQE1 (ORCPT ); Mon, 5 Apr 2021 12:04:27 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id CC16A613B9; Mon, 5 Apr 2021 16:04:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1617638661; bh=eNRxCHjDEZm7ZMVSCK8sEwsiZEqUyXr6H0sI5kRJgcc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=iEjUj2eINKYSDyxeJ/pAuRfJwmv0hpRTw486TYbkHv8oj/RmOLYAVCsMiraTkYKth 4Xs35IDelJjQs4fYLA83fhxTgWDjat40jY0hCDwz3wINzpk4OtaojmBPCW6bg7BcBM qOxr6/NEV+1LXszdilFss2uGBuHDw6gchSGC3oID5E0UF3BvWWm8C/am4FyaLs+gox 9XAyq8D5Y5P+2i6u48w5ZN32Lul7NE099Ra9lDjnIHoB+fLL65wD5FMe4JpMD7fhog D9nPTC/bzSLY3L1mDOBJURlVlcFaeNlBLY3tMxsh6mYKdtZS8i96m70vmkFwH29k/E 4jYfnGxCD8T2g== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: "Matthew Wilcox (Oracle)" , Sasha Levin , linux-fsdevel@vger.kernel.org Subject: [PATCH AUTOSEL 5.11 13/22] radix tree test suite: Fix compilation Date: Mon, 5 Apr 2021 12:03:56 -0400 Message-Id: <20210405160406.268132-13-sashal@kernel.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210405160406.268132-1-sashal@kernel.org> References: <20210405160406.268132-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org From: "Matthew Wilcox (Oracle)" [ Upstream commit 7487de534dcbe143e6f41da751dd3ffcf93b00ee ] Commit 4bba4c4bb09a added tools/include/linux/compiler_types.h which includes linux/compiler-gcc.h. Unfortunately, we had our own (empty) compiler_types.h which overrode the one added by that commit, and so we lost the definition of __must_be_array(). Removing our empty compiler_types.h fixes the problem and reduces our divergence from the rest of the tools. Signed-off-by: Matthew Wilcox (Oracle) Signed-off-by: Sasha Levin --- tools/testing/radix-tree/linux/compiler_types.h | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 tools/testing/radix-tree/linux/compiler_types.h diff --git a/tools/testing/radix-tree/linux/compiler_types.h b/tools/testing/radix-tree/linux/compiler_types.h deleted file mode 100644 index e69de29bb2d1..000000000000 -- 2.30.2