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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (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 73596D637A4 for ; Wed, 13 Nov 2024 18:29:53 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 33A7410E264; Wed, 13 Nov 2024 18:29:53 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="SF91YXhY"; dkim-atps=neutral Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by gabe.freedesktop.org (Postfix) with ESMTPS id 51D1310E264; Wed, 13 Nov 2024 18:29:52 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 32C205C4C11; Wed, 13 Nov 2024 18:29:07 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0D7AAC4CEC3; Wed, 13 Nov 2024 18:29:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1731522591; bh=PVDbYbNqRERQaA9TjMSh0em+KssXtcnQxggmRi2efsA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=SF91YXhY1ySElLg5xEuFdftyqMktNaZoSUkruyuHZoowwUycaGNLPUqGWb09MNvrR mnZGqEYkGbbTvW5+eoUub02HkOItVXZrB7yk7vCmLpH2VbNoqxmkW0JfncyFqoKhOt 7j22irKZUJktZwKD4+E4jbBXrOJGI6XEi0OASSdNXiK1z1B6q/fJsUcfRZBQZDS+1j LQGtr8NTpkv4vdBJj8pY/bUWrlWE3K0WJxcqfbzdxqmySHRuqfIp00NxXjDbtURheQ 9ovB/IYK3C8btkjtlNL4E5pYKroQZapAQTpn9vHO6bO5ClaT8LecQlNyQYn1HyNmUf lkugInU8/bm6g== Date: Wed, 13 Nov 2024 08:29:50 -1000 From: Tejun Heo To: Maarten Lankhorst Cc: Maxime Ripard , Johannes Weiner , intel-xe@lists.freedesktop.org, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, Zefan Li , Andrew Morton , Friedrich Vock , cgroups@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH 0/7] kernel/cgroups: Add "dev" memory accounting cgroup. Message-ID: References: <20241023075302.27194-1-maarten.lankhorst@linux.intel.com> <20241024-beautiful-spaniel-of-youth-f75b61@houat> <20241028-meaty-mega-nuthatch-3d74b1@houat> <20241029203834.GA636494@cmpxchg.org> <20241106-vivacious-eagle-of-gaiety-44a419@houat> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-BeenThere: intel-xe@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel Xe graphics driver List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-xe-bounces@lists.freedesktop.org Sender: "Intel-xe" Hello, On Wed, Nov 13, 2024 at 03:58:25PM +0100, Maarten Lankhorst wrote: ... > Thanks for all feedback and discussion. I checked mostly on patchwork so I > missed the discussion here. Fortunately it's only been about naming. :) > > I'm thinking of adding a 'high' knob as well, that will work similarly to > high in normal mem controller. (so not proportionally calculated like 'max', > but (usage + allocated) < max = ok. > > Recursively of course. I'd be cautious about adding knobs. These being published API, it's easy to paint oneself into a corner. I suggest starting with what's essential. Thanks. -- tejun