Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp309785ybl; Tue, 10 Dec 2019 23:34:10 -0800 (PST) X-Google-Smtp-Source: APXvYqzq7jAB2nEq0AxwG5e03prm7KXDs5v0zBoP9ZAy+J58k7PF+zJxBLRXh47ru4vXYcRdSqKJ X-Received: by 2002:a9d:22a8:: with SMTP id y37mr1231863ota.359.1576049650331; Tue, 10 Dec 2019 23:34:10 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1576049650; cv=none; d=google.com; s=arc-20160816; b=YoZvaXz/HdeC1jMhbRbwgN+uPpe1xDcfVNR6D2GNNxbSny4sbzEV58z0KwaN3zusTv Nuop3iZzXh7nhlI7XNntz3aUECNpaUIRUOrh25ZFUywDYx9xLceeOOmviU/KnniziDIq 0qChSdVpDLbNMi3379wBMA68Wh3U8HL5Qcn8jmnhQGBNDUecbrp1aa2NcOat+ojpLE53 lm3YHc5w0srX+4nkEdKlFIGqnW6hlCLr4zOQ8lLdRbIa+R/oxxcEoskQIbmoKWko21JV J5SLGAg4q/iw5wKVBKjSLA+h+5Mu6rvj8Li1S/3od/lIqWsmUK0iFD4Ybrq0IyRkXvF9 IeZA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:date:subject:cc :to:from; bh=jAWgyvhxVy35bvbpgYKZOUu8TA4W4VRvJ2kfzflMYRc=; b=tsZiGWf6rD0RJ217WIAzY0kk6LsGTngz2h8R0Mbz/pCUcZi22dKBV6DvvJ2yoYNS8l v3uOqrvQMwXFMDI/+XIawiLsLmu/PKvgTS8WKDZaaWm2wV1n8GR5NihVonn7+5pR8atg +eAI4aUPZ91aXWzYh6bP/5HL6u0yLszyBqx/XlwEqsP18nCYf8pj+pDIprZf0hwxSpHe NdG3T3kw/rNQy1M0QdZtCDl1faRwl0Luf+KwGx+CrTe62SOPsXpQoEC7RNDOe3fr0s35 +Es1mX1RVK/fFmuSgfgtij42nlkNwi1N7AgRDq9edVqej87C/EPQCH3lNnZdsG6mkOTA RweA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id l5si695013otb.26.2019.12.10.23.33.58; Tue, 10 Dec 2019 23:34:10 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727848AbfLKHcn (ORCPT + 99 others); Wed, 11 Dec 2019 02:32:43 -0500 Received: from szxga04-in.huawei.com ([45.249.212.190]:7669 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725800AbfLKHcn (ORCPT ); Wed, 11 Dec 2019 02:32:43 -0500 Received: from DGGEMS403-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 107B07834A358239494C; Wed, 11 Dec 2019 15:32:40 +0800 (CST) Received: from linux-ibm.site (10.175.102.37) by DGGEMS403-HUB.china.huawei.com (10.3.19.203) with Microsoft SMTP Server id 14.3.439.0; Wed, 11 Dec 2019 15:32:32 +0800 From: Hanjun Guo To: Catalin Marinas , Will Deacon CC: Suzuki K Poulose , , , Hanjun Guo Subject: [PATCH] arm64: armv8_deprecated: update the comments of armv8_deprecated_init() Date: Wed, 11 Dec 2019 15:27:33 +0800 Message-ID: <1576049253-60950-1-git-send-email-guohanjun@huawei.com> X-Mailer: git-send-email 1.7.12.4 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.175.102.37] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org In commit c0d8832e78cb ("arm64: Ensure the instruction emulation is ready for userspace"), armv8_deprecated_init() was promoted to core_initcall() but the comments were left unchanged, update it now. Spotted by some random reading of the code. Signed-off-by: Hanjun Guo --- arch/arm64/kernel/armv8_deprecated.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm64/kernel/armv8_deprecated.c b/arch/arm64/kernel/armv8_deprecated.c index ca158be..3f6fcf2 100644 --- a/arch/arm64/kernel/armv8_deprecated.c +++ b/arch/arm64/kernel/armv8_deprecated.c @@ -618,7 +618,8 @@ static int t16_setend_handler(struct pt_regs *regs, u32 instr) }; /* - * Invoked as late_initcall, since not needed before init spawned. + * Invoked as core_initcall, which can guarantee that the instruction + * emulation is ready for userspace. */ static int __init armv8_deprecated_init(void) { -- 1.7.12.4