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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 15481EB64D9 for ; Fri, 30 Jun 2023 00:06:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231953AbjF3AGv (ORCPT ); Thu, 29 Jun 2023 20:06:51 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46568 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230079AbjF3AGs (ORCPT ); Thu, 29 Jun 2023 20:06:48 -0400 Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5D067102 for ; Thu, 29 Jun 2023 17:06:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1688083607; x=1719619607; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=v89akaza7HsjyKIZYAwuft+VjZZ85WZYxFaVCTk+znk=; b=j4y/UtVO3CvIQfjRa72CXxiV832qiEEv8xL57mq0UA/M8/EbtqDBidTJ Y1RkwfHBi0QOSYMC4v3RCcsKadUvCf6WbV5nM695r+S9r8hmDtIa72IGC thNnVBtpuf2kMpSzVPuI+L7nqrXGi0igEchrmEY1NOUCpOq/gTPkZ2YY5 ZDZr8/h1bLdQoLaGM8n1bEpq3mk5VFdb9OV0G0e2cmIkw9XqbuPv8XJQR 2pprsWHBAfQDj8bzyJojs/cFbLBJnp9m+Yv9uxQnrfbUH8/b1ZcKzpKuG K/DfqCSNOmCPoh95drExfN1uwK+QpSWvGALCntRrJdFN2WJkq8pSYscx2 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10756"; a="341850771" X-IronPort-AV: E=Sophos;i="6.01,169,1684825200"; d="scan'208";a="341850771" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Jun 2023 17:06:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10756"; a="1048016939" X-IronPort-AV: E=Sophos;i="6.01,169,1684825200"; d="scan'208";a="1048016939" Received: from agluck-desk3.sc.intel.com (HELO agluck-desk3) ([172.25.222.74]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Jun 2023 17:06:46 -0700 Date: Thu, 29 Jun 2023 17:06:45 -0700 From: Tony Luck To: Drew Fustini Cc: James Morse , "Yu, Fenghua" , "Chatre, Reinette" , Babu Moger , Peter Newman , Thomas Gleixner , Ingo Molnar , Borislav Petkov , H Peter Anvin , "shameerali.kolothum.thodi@huawei.com" , D Scott Phillips OS , "carl@os.amperecomputing.com" , "lcherian@marvell.com" , "bobo.shaobowang@huawei.com" , "tan.shaopeng@fujitsu.com" , "xingxin.hx@openanolis.org" , "baolin.wang@linux.alibaba.com" , Jamie Iles , Xin Hao , "Pitre, Nicolas" , Kevin Hilman , "aricciardi@baylibre.com" , "x86@kernel.org" , "linux-kernel@vger.kernel.org" , "patches@lists.linux.dev" Subject: Re: [RFC PATCH 0/2] Resctrl - rewrite (WIP) Message-ID: References: <20230620033702.33344-1-tony.luck@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jun 27, 2023 at 04:33:52PM +0000, Luck, Tony wrote: > I've made some significant changes since I posted those patches. I pushed > the latest version to: > > git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git resctrl2_v64 I just pushed one big commit with all the bits I've updated so far this week. Fixes some serious issues as well as general cleanup. HEAD is now: afb7cdd4d640 resctrl2: Many cleanups, fixes, and new functionality If you've started writing your own architecture specific modules there are some small interface changes. Most should be found by the compiler barfing, but the new ".reset()" resource function called during unmount of /sys/fs/resctrl might be less obvious. -Tony