Received: by 2002:a25:ad19:0:0:0:0:0 with SMTP id y25csp4499992ybi; Mon, 15 Jul 2019 09:51:56 -0700 (PDT) X-Google-Smtp-Source: APXvYqxnZbXsNotaIk7QTCFPoS6AadHmP0l1oqiCoWQw5MTKhHAF64a3Qc39A16qfVyFMvGENfl0 X-Received: by 2002:a17:902:9f8e:: with SMTP id g14mr29438138plq.67.1563209516107; Mon, 15 Jul 2019 09:51:56 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1563209516; cv=none; d=google.com; s=arc-20160816; b=avsppdueH6ekWUCCtpRouKZyUKgVoMvJoSC0OO+oeUBNP2YZ+TkQA8JwBQL0rSBf9M 1pDdkFhTOtk0IDffsYROxceUX23eQSPlNHkzsGGfPKX3p1DVVxNo7irncgnWM4YFyYkk 2md5/uQ4M0PkOwzKjuxGFBSZpxSYgeUBrqQ4yYqr4CHs/3a13BmlgjyXh+44yDRTlLEi QYqGS8JxD9r32Qmo3p28ouXAYWJ0zsCCYEvfQgQxglZxMCvyZ900D0khsV+vaItTdEQi SZRcSpUVuGoHIzKOOZS33ZlhyQvualFc7LqkmaviR+2qWxJnJb+iIeSyEqcFSpSgEir+ fDCQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=PBDZEx0by2m1z4ydOccp3ixzfC33RSjKpioY9epxIFg=; b=tjW4+hRK3Fz7jwHkz5yhTlu8BefLp7s8LKDx3Ak/yqN+1W4GXAQ9Lt9N5slYR2AKRC d3Pgu0IzVLxgdngGiEzshUb/3pi+cFgYBOnz3rM3aqL/KSgidp5D6FtzxwNhE1Vq397B KA8HP0Jqg338bFbExa3FlsqLsP8hxwN1rtJN6BRMwipFN0JDWMLnatxPeD650kPn5Fds jR+vPb8DVBh3WtOXuRPMTdtXdmDEACZOAYQYeziC3o+rDbt2gHE8KW7/y6SvotJfMQdm F3SOEcetp1K9IQ5uJerp431jjvG6tE/WAKm6ZnS5SD9xQqUAHVQCTxDjIZIrbX5l3FzE bVZA== 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 g32si16678979pje.38.2019.07.15.09.51.39; Mon, 15 Jul 2019 09:51:56 -0700 (PDT) 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 S1731013AbfGOQvT (ORCPT + 99 others); Mon, 15 Jul 2019 12:51:19 -0400 Received: from mx2.suse.de ([195.135.220.15]:45466 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1729533AbfGOQvT (ORCPT ); Mon, 15 Jul 2019 12:51:19 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 45AD1AFBE; Mon, 15 Jul 2019 16:51:18 +0000 (UTC) Date: Mon, 15 Jul 2019 18:51:16 +0200 From: Michal =?iso-8859-1?Q?Koutn=FD?= To: Patrick Bellasi Cc: linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, Ingo Molnar , Peter Zijlstra , Tejun Heo , "Rafael J . Wysocki" , Vincent Guittot , Viresh Kumar , Paul Turner , Quentin Perret , Dietmar Eggemann , Morten Rasmussen , Juri Lelli , Todd Kjos , Joel Fernandes , Steve Muckle , Suren Baghdasaryan , Alessio Balsini Subject: Re: [PATCH v11 0/5] Add utilization clamping support (CGroups API) Message-ID: <20190715165116.GB21982@blackbody.suse.cz> References: <20190708084357.12944-1-patrick.bellasi@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190708084357.12944-1-patrick.bellasi@arm.com> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello Patrick. I took a look at your series and I've posted some notes to your patches. One applies more to the series overall -- I see there is enum uclamp_id defined but at many places (local variables, function args) int or unsigned int is used. Besides the inconsistency, I think it'd be nice to use the enum at these places. (Also, I may suggest CCing ML cgroups@vger.kernel.org where more eyes may be available to the cgroup part of your series.) Michal