From patchwork Mon Oct 7 12:39:14 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Rutland X-Patchwork-Id: 13824631 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 C864CCFB43F for ; Mon, 7 Oct 2024 12:50:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Transfer-Encoding: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-Type: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=qHLongSpQlz+LFVTIN1Opf4QiugBndWs7Uoqb9dtkEU=; b=Vniekwie7YT0vqbWRBKHpAMvNO 4L4iKJlL0de9MLY08hRrki95fqwfYUuLTfrOiclpHnqoEbwsFiPEWVX0xPHbWkd4LXsfLSqiLyjri H3PiHwtjC80zjBG/EhZFz7celjqyby6V3ji/1a1b7OoLxjRuOzQJHZqwW7ZNT/kYMCMHIi2n7T8dP PFXYA5DLMalZMleAIz73D1xSEojc7ac8nrQbMqBiCaEHzXoXVvAEDGtm3PMCDq4yunNxC8UTVFiiF 6fbhv3llmBs0oR7hhlf2Kg8eNW2LvKFLsPJw26lVQ2/czCWT2SVCnJOc2CKSgdE1WJPclB2RfPw3A Y57UnGdQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98 #2 (Red Hat Linux)) id 1sxnBl-00000002PWN-1juU; Mon, 07 Oct 2024 12:50:13 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.98 #2 (Red Hat Linux)) id 1sxn1L-00000002MSM-1hPx for linux-arm-kernel@lists.infradead.org; Mon, 07 Oct 2024 12:39:28 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 9BCF1FEC; Mon, 7 Oct 2024 05:39:56 -0700 (PDT) Received: from lakrids.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 488A23F640; Mon, 7 Oct 2024 05:39:26 -0700 (PDT) From: Mark Rutland To: linux-arm-kernel@lists.infradead.org Cc: catalin.marinas@arm.com, mark.rutland@arm.com, will@kernel.org Subject: [PATCH 0/7] arm64: asm-offsets: clenups Date: Mon, 7 Oct 2024 13:39:14 +0100 Message-Id: <20241007123921.549340-1-mark.rutland@arm.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20241007_053927_514441_A1A5E950 X-CRM114-Status: UNSURE ( 5.61 ) X-CRM114-Notice: Please train this message. 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: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org This series removes a number of unused asm-offsets entries. This is purely a cleanup. This is arragned as a series of patches rather than one big patch for easier bisection and/or backporting, and so that each removal can be explained independently. There should be no functional change as a result of this series. Mark. Mark Rutland (7): arm64: asm-offsets: remove TSK_ACTIVE_MM arm64: asm-offsets: remove VMA_VM_* arm64: asm-offsets: remove COMPAT_{RT_,SIGFRAME_REGS_OFFSET arm64: asm-offsets: remove MM_CONTEXT_ID arm64: asm-offsets: remove VM_EXEC and PAGE_SZ arm64: asm-offsets: remove DMA_{TO,FROM}_DEVICE arm64: asm-offsets: remove PREEMPT_DISABLE_OFFSET arch/arm64/include/asm/assembler.h | 7 ------- arch/arm64/kernel/asm-offsets.c | 24 ------------------------ 2 files changed, 31 deletions(-) Reviewed-by: Ryan Roberts