From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vinayak Menon Subject: Re: [PATCH 6/7] psi: pressure stall information for CPU, memory, and IO Date: Wed, 23 May 2018 18:49:25 +0530 Message-ID: <47beeaa6-74aa-35d0-2808-e5c54be854a6@codeaurora.org> References: <20180507210135.1823-1-hannes@cmpxchg.org> <20180507210135.1823-7-hannes@cmpxchg.org> <87060553-2e09-2e2a-13a2-a91345d6df30@codeaurora.org> <20180523131747.GA4086@cmpxchg.org> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1527081574; bh=Y7gzwCVHHPtVifw+NFE5nMBx/GjYEo7NB+YkMBG8UZM=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=PA690RarXKFW6FuJQTXdc1Ot3GhbgGITq+c0L7Ihf4AKfY+ai07rEsaCFkyW2ruyF 2vT0F11NF3Knge4JeOqtE9/BdqolG4AttoUaa2+eIolzj+CTOS+Ms8Ys9YDmThKoVX lKQDgWg0VhumfVrBqf79jcFoUWGM04KxgiULjt6U= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1527081573; bh=Y7gzwCVHHPtVifw+NFE5nMBx/GjYEo7NB+YkMBG8UZM=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=pAy3+03ngotlVe4t5SkqJr1AgeBuflaAZkh+/jAhoiqZQUsC0R5IYnNEFR1CLXrm5 pdKQl+XSNjMM+zA81N8SEz+z2vPn6chhDKdEJ+HNecI/w4JwDu2oMuuCo6dsHcIMhg 8pcOLjp2x3XOIKfjZ+LetA3UjG6U/rJaoYOJauhE= In-Reply-To: <20180523131747.GA4086@cmpxchg.org> Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii" To: Johannes Weiner Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-block@vger.kernel.org, cgroups@vger.kernel.org, Ingo Molnar , Peter Zijlstra , Andrew Morton , Tejun Heo , Balbir Singh , Mike Galbraith , Oliver Yang , Shakeel Butt , xxx xxx , Taras Kondratiuk , Daniel Walker , Ruslan Ruslichenko , kernel-team@fb.com On 5/23/2018 6:47 PM, Johannes Weiner wrote: > On Wed, May 09, 2018 at 04:33:24PM +0530, Vinayak Menon wrote: >> On 5/8/2018 2:31 AM, Johannes Weiner wrote: >>> + /* Kick the stats aggregation worker if it's gone to sleep */ >>> + if (!delayed_work_pending(&group->clock_work)) >> This causes a crash when the work is scheduled before system_wq is up. In my case when the first >> schedule was called from kthreadd. And I had to do this to make it work. >> if (keventd_up() && !delayed_work_pending(&group->clock_work)) >> >>> + schedule_delayed_work(&group->clock_work, MY_LOAD_FREQ); > I was trying to figure out how this is possible, and it didn't make > sense because we do initialize the system_wq way before kthreadd. > > Did you by any chance backport this to a pre-4.10 kernel which does > not have 3347fa092821 ("workqueue: make workqueue available early > during boot") yet? Sorry I did not mention that. I was trying on 4.9 kernel. It's clear now. Thanks. >>> +void psi_task_change(struct task_struct *task, u64 now, int clear, int set) >>> +{ >>> + struct cgroup *cgroup, *parent; >> unused variables > They're used in the next patch, I'll fix that up. > > Thanks