From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f70.google.com (mail-wr1-f70.google.com [209.85.221.70]) by kanga.kvack.org (Postfix) with ESMTP id 9820A6B0003 for ; Thu, 19 Jul 2018 05:26:30 -0400 (EDT) Received: by mail-wr1-f70.google.com with SMTP id 40-v6so3272007wrb.23 for ; Thu, 19 Jul 2018 02:26:30 -0700 (PDT) Received: from merlin.infradead.org (merlin.infradead.org. [2001:8b0:10b:1231::1]) by mx.google.com with ESMTPS id l1-v6si4592083wrp.228.2018.07.19.02.26.29 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 19 Jul 2018 02:26:29 -0700 (PDT) Date: Thu, 19 Jul 2018 11:26:14 +0200 From: Peter Zijlstra Subject: Re: [PATCH 08/10] psi: pressure stall information for CPU, memory, and IO Message-ID: <20180719092614.GY2512@hirez.programming.kicks-ass.net> References: <20180712172942.10094-1-hannes@cmpxchg.org> <20180712172942.10094-9-hannes@cmpxchg.org> <20180718120318.GC2476@hirez.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180718120318.GC2476@hirez.programming.kicks-ass.net> Sender: owner-linux-mm@kvack.org List-ID: To: Johannes Weiner Cc: Ingo Molnar , Andrew Morton , Linus Torvalds , Tejun Heo , Suren Baghdasaryan , Vinayak Menon , Christopher Lameter , Mike Galbraith , Shakeel Butt , linux-mm@kvack.org, cgroups@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-team@fb.com On Wed, Jul 18, 2018 at 02:03:18PM +0200, Peter Zijlstra wrote: > Leaving us just 5 bytes short of needing a single cacheline :/ > > struct ponies { > unsigned int tasks[3]; /* 0 12 */ > unsigned int cpu_state:2; /* 12:30 4 */ > unsigned int io_state:2; /* 12:28 4 */ > unsigned int mem_state:2; /* 12:26 4 */ > > /* XXX 26 bits hole, try to pack */ > > /* typedef u64 */ long long unsigned int last_time; /* 16 8 */ > /* typedef u64 */ long long unsigned int some_time[3]; /* 24 24 */ > /* typedef u64 */ long long unsigned int full_time[2]; /* 48 16 */ > /* --- cacheline 1 boundary (64 bytes) --- */ > /* typedef u64 */ long long unsigned int nonidle_time; /* 64 8 */ > > /* size: 72, cachelines: 2, members: 8 */ > /* bit holes: 1, sum bit holes: 26 bits */ > /* last cacheline: 8 bytes */ > }; > > ARGGH! It _might_ be possible to use curr->se.exec_start for last_time if you very carefully audit and place the hooks. I've not gone through it in detail, but it might just work.