From nobody Tue Dec 16 13:45:59 2025 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id C7A0F28C849 for ; Thu, 8 May 2025 17:21:04 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1746724866; cv=none; b=qOkxtMM9w433oaSWIc+QFLLErsLs8r+YCrKMdwjRnGFQv22IGxKYtI3YhnDCPRIQt1YH6oFsdHUy7y1cuGetRukBnoxITrB9nV1nFRxWYjvVZOQLSuH2pikyHSgq5Z0vm4WVYqEcbxjifMYgq5CDQhj9g9BlkUi7nzP5CpcnYKY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1746724866; c=relaxed/simple; bh=9AxsAFmEEOSoO+HCXppjK0tlr7VUTot7fuvK7TG4PgM=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=BXJgeKG1f9XpVv98mNLl2h/AN9G7xc+njWXiotNOzXXGF9MNN1frnUyycAmG/Ubt4cOmbGm9OnOWoXgFfulvRT/43Q3MSb+9CrDszbWUx7y3EFTionr6Ps6Ye4yqB7FB4l3pq6apdlzC3n87XdmvKAB7oY9g13A9HNOMcvPqoN4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com 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 D87D5263D; Thu, 8 May 2025 10:20:53 -0700 (PDT) Received: from merodach.members.linode.com (usa-sjc-mx-foss1.foss.arm.com [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 054D93F58B; Thu, 8 May 2025 10:21:00 -0700 (PDT) From: James Morse To: x86@kernel.org, linux-kernel@vger.kernel.org Cc: Reinette Chatre , Thomas Gleixner , Ingo Molnar , Borislav Petkov , H Peter Anvin , Babu Moger , James Morse , shameerali.kolothum.thodi@huawei.com, D Scott Phillips OS , carl@os.amperecomputing.com, lcherian@marvell.com, bobo.shaobowang@huawei.com, tan.shaopeng@fujitsu.com, baolin.wang@linux.alibaba.com, Jamie Iles , Xin Hao , peternewman@google.com, dfustini@baylibre.com, amitsinght@marvell.com, David Hildenbrand , Rex Nie , Dave Martin , Koba Ko , Shanker Donthineni , fenghuay@nvidia.com, Shaopeng Tan , Babu Moger Subject: [PATCH v10 28/30] fs/resctrl: Change internal.h's header guard macros Date: Thu, 8 May 2025 17:18:56 +0000 Message-Id: <20250508171858.9197-29-james.morse@arm.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20250508171858.9197-1-james.morse@arm.com> References: <20250508171858.9197-1-james.morse@arm.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The code in internal.h was moved by a script. The script didn't know to change the header guard macros. Do that. Signed-off-by: James Morse Tested-by: Peter Newman Tested-by: Shaopeng Tan Tested-by: Amit Singh Tomar # arm64 Tested-by: Shanker Donthineni # arm64 Tested-by: Babu Moger Reviewed-by: Reinette Chatre Reviewed-by: Fenghua Yu --- fs/resctrl/internal.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/resctrl/internal.h b/fs/resctrl/internal.h index ed7dfc071e6c..9a8cf6f11151 100644 --- a/fs/resctrl/internal.h +++ b/fs/resctrl/internal.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 */ -#ifndef _ASM_X86_RESCTRL_INTERNAL_H -#define _ASM_X86_RESCTRL_INTERNAL_H +#ifndef _FS_RESCTRL_INTERNAL_H +#define _FS_RESCTRL_INTERNAL_H =20 #include #include @@ -423,4 +423,4 @@ static inline int rdtgroup_pseudo_lock_create(struct rd= tgroup *rdtgrp) static inline void rdtgroup_pseudo_lock_remove(struct rdtgroup *rdtgrp) { } #endif /* CONFIG_RESCTRL_FS_PSEUDO_LOCK */ =20 -#endif /* _ASM_X86_RESCTRL_INTERNAL_H */ +#endif /* _FS_RESCTRL_INTERNAL_H */ --=20 2.39.5