Received: by 2002:a25:1985:0:0:0:0:0 with SMTP id 127csp2058673ybz; Thu, 30 Apr 2020 10:07:13 -0700 (PDT) X-Google-Smtp-Source: APiQypLUCT72ZLsOXAvMufDKxb+lKeI4uG4cEnrKIJnFzUKoft8HPDhyS82x2Es7tKDcQkeVbWOJ X-Received: by 2002:a17:906:af67:: with SMTP id os7mr3606774ejb.182.1588266433469; Thu, 30 Apr 2020 10:07:13 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1588266433; cv=none; d=google.com; s=arc-20160816; b=oQyUurmflhcHGBIGlHCMrrDVZwVaPpw2c3t814fwGGGsTKtBkDZ785qgv97Ldd3o28 bVP6bNgPSb6VQeuci3mdWR4FAW96OmAjACVp2AA4ZGPHNylI8dJ45i6pN3Xrfq7f5Znm TqsJh7HMbOtPIBp5j0aCI0eDPtfCDgc5T8Onk7HTE7LrjSaBo4MbhfUOqo9AaPSQqegq fR4QBBlLGL9LKnS0AujEcBkxrumHwHF7Bv1trt+4Noe6siMCbfKEaE4XYGKPHnwE6qre Ne9QM3dBOFd8t/hH/pZ4OpAtmhbxUIvEOrgvoLyozi05seG/ZRA7l0TXRJpjrQMxgtlL HY8g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=OatPNFNFiAFsEeNJ+klwOpL8nDhUiywrK0j2yR/lhO0=; b=H9GLnzEFyI/333RD8KsWRiKpQfapWGhtuz17jo60DuVn6Njr8OttaWQWtm/9TvYMdC E91cICY208sqank+dBVnX59A+s7dfVkpiH1Wf2DRae2QVN9HpHBaV1IIUwBSPUb7XTmG fPMOzn/Qi4uBLW+8bv8JoB9/OXa488HT8ujlcnvNnSiw9DKB8Xltl/eH2cq8S/dZvQ56 0JVf4GrWY7W+rQr5zeaOy1BJUg5/K19J6SLKrfyrgno/MUKWWWpS3lW22evtcRyTwAG4 IYE4aCQGjlX9Ud1JD4mcD/Xu7nja5CdxYxH/flf7gCT+yGQzsopIVN7QaVBDgKW09Nlq gy3Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id dk23si96384edb.282.2020.04.30.10.06.20; Thu, 30 Apr 2020 10:07:13 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727804AbgD3RE1 (ORCPT + 99 others); Thu, 30 Apr 2020 13:04:27 -0400 Received: from foss.arm.com ([217.140.110.172]:59130 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726534AbgD3RE0 (ORCPT ); Thu, 30 Apr 2020 13:04:26 -0400 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 9FCC3106F; Thu, 30 Apr 2020 10:04:25 -0700 (PDT) Received: from melchizedek.cambridge.arm.com (melchizedek.cambridge.arm.com [10.1.196.50]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 510943F73D; Thu, 30 Apr 2020 10:04:24 -0700 (PDT) From: James Morse To: x86@kernel.org, linux-kernel@vger.kernel.org Cc: Fenghua Yu , Reinette Chatre , Thomas Gleixner , Ingo Molnar , Borislav Petkov , H Peter Anvin , Babu Moger , James Morse Subject: [PATCH v2 03/10] x86/resctrl: Fix stale comment Date: Thu, 30 Apr 2020 18:03:53 +0100 Message-Id: <20200430170400.21501-4-james.morse@arm.com> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20200430170400.21501-1-james.morse@arm.com> References: <20200430170400.21501-1-james.morse@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The comment in rdtgroup_init() refers to the non existent function rdt_mount(), which has now been renamed rdt_get_tree(). Fix the comment. Signed-off-by: James Morse Reviewed-by: Reinette Chatre --- arch/x86/kernel/cpu/resctrl/rdtgroup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kernel/cpu/resctrl/rdtgroup.c b/arch/x86/kernel/cpu/resctrl/rdtgroup.c index 5a359d9fcc05..9fe489904fc7 100644 --- a/arch/x86/kernel/cpu/resctrl/rdtgroup.c +++ b/arch/x86/kernel/cpu/resctrl/rdtgroup.c @@ -3195,7 +3195,7 @@ int __init rdtgroup_init(void) * It may also be ok since that would enable debugging of RDT before * resctrl is mounted. * The reason why the debugfs directory is created here and not in - * rdt_mount() is because rdt_mount() takes rdtgroup_mutex and + * rdt_get_tree() is because rdt_get_tree() takes rdtgroup_mutex and * during the debugfs directory creation also &sb->s_type->i_mutex_key * (the lockdep class of inode->i_rwsem). Other filesystem * interactions (eg. SyS_getdents) have the lock ordering: -- 2.26.1