From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Zijlstra Subject: Re: [PATCH 6/7] psi: pressure stall information for CPU, memory, and IO Date: Wed, 9 May 2018 11:59:38 +0200 Message-ID: <20180509095938.GJ12217@hirez.programming.kicks-ass.net> References: <20180507210135.1823-1-hannes@cmpxchg.org> <20180507210135.1823-7-hannes@cmpxchg.org> Mime-Version: 1.0 Return-path: DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=In-Reply-To:Content-Type:MIME-Version :References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=NVbh/LOsISNmbHBJlSondA21W2OEIYOM5hTTqlZZNTQ=; b=WMJ7Kh9j0lkGfYTUgxcERW5BX AtgFLC+nWK2eOgh7/T8QhRIbuM4sRIT1BvGEQzUvJ6qg1UQufNrWwe+jFMImtAfckOTkUveN5PRle 988LOj/otbzwFrfgFg9iP5uPNY4TU+nxngrXGF7bPaisz23QTlKbBPMRHT77dOEL3HvP8PXu9LxF/ w+8IXN96/8zm8BH/jpkoHPLcGGUANGNLQAR1hbriyeAoMpNOF38E6HGH51daXPMVC/HpRewKefVu9 794PD3JP9zBJBKf5U2XElunO2+ebY2+vn5bJWsdOASkmGRVzaEQ6SIuqKjffoP7n9rM6wff4SBKHo Content-Disposition: inline In-Reply-To: <20180507210135.1823-7-hannes@cmpxchg.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Johannes Weiner Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-block@vger.kernel.org, cgroups@vger.kernel.org, Ingo Molnar , Andrew Morton , Tejun Heo , Balbir Singh , Mike Galbraith , Oliver Yang , Shakeel Butt , xxx xxx , Taras Kondratiuk , Daniel Walker , Vinayak Menon , Ruslan Ruslichenko , kernel-team@fb.com On Mon, May 07, 2018 at 05:01:34PM -0400, Johannes Weiner wrote: > diff --git a/include/linux/psi_types.h b/include/linux/psi_types.h > new file mode 100644 > index 000000000000..b22b0ffc729d > --- /dev/null > +++ b/include/linux/psi_types.h > @@ -0,0 +1,84 @@ > +#ifndef _LINUX_PSI_TYPES_H > +#define _LINUX_PSI_TYPES_H > + > +#include > + > +#ifdef CONFIG_PSI > + > +/* Tracked task states */ > +enum psi_task_count { > + NR_RUNNING, > + NR_IOWAIT, > + NR_MEMSTALL, > + NR_PSI_TASK_COUNTS, > +}; > + > +/* Task state bitmasks */ > +#define TSK_RUNNING (1 << NR_RUNNING) > +#define TSK_IOWAIT (1 << NR_IOWAIT) > +#define TSK_MEMSTALL (1 << NR_MEMSTALL) > + > +/* Resources that workloads could be stalled on */ > +enum psi_res { > + PSI_CPU, > + PSI_MEM, > + PSI_IO, > + NR_PSI_RESOURCES, > +}; > + > +/* Pressure states for a group of tasks */ > +enum psi_state { > + PSI_NONE, /* No stalled tasks */ > + PSI_SOME, /* Stalled tasks & working tasks */ > + PSI_FULL, /* Stalled tasks & no working tasks */ > + NR_PSI_STATES, > +}; > + > +struct psi_resource { > + /* Current pressure state for this resource */ > + enum psi_state state; > + > + /* Start of current state (cpu_clock) */ > + u64 state_start; > + > + /* Time sampling buckets for pressure states (ns) */ > + u64 times[NR_PSI_STATES - 1]; Fails to explain why no FULL. > +}; > + > +struct psi_group_cpu { > + /* States of the tasks belonging to this group */ > + unsigned int tasks[NR_PSI_TASK_COUNTS]; > + AFAICT there's a hole here, that would fit the @nonidle member. Which also avoids the later hole generated by it. > + /* Per-resource pressure tracking in this group */ > + struct psi_resource res[NR_PSI_RESOURCES]; > + > + /* There are runnable or D-state tasks */ > + bool nonidle; Mandatory complaint about using _Bool in composites goes here. > + /* Start of current non-idle state (cpu_clock) */ > + u64 nonidle_start; > + > + /* Time sampling bucket for non-idle state (ns) */ > + u64 nonidle_time; > +}; > + > +struct psi_group { > + struct psi_group_cpu *cpus; > + > + struct delayed_work clock_work; > + unsigned long period_expires; > + > + u64 some[NR_PSI_RESOURCES]; > + u64 full[NR_PSI_RESOURCES]; > + > + unsigned long avg_some[NR_PSI_RESOURCES][3]; > + unsigned long avg_full[NR_PSI_RESOURCES][3]; > +};