From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755319AbbI1CRG (ORCPT ); Sun, 27 Sep 2015 22:17:06 -0400 Received: from mail-wi0-f171.google.com ([209.85.212.171]:36397 "EHLO mail-wi0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753553AbbI1CRE (ORCPT ); Sun, 27 Sep 2015 22:17:04 -0400 Message-ID: <1443406620.3293.26.camel@gmail.com> Subject: [v4.2+ regression] fd7a4bed sched, rt: Convert switched_{from, to}_rt() / prio_changed_rt() to balance callbacks From: Mike Galbraith To: Peter Zijlstra Cc: Ingo Molnar , LKML Date: Mon, 28 Sep 2015 04:17:00 +0200 Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.12.11 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Peter, I bumped into an odd futextest regression, and finally bisected it to $subject. I haven't poked at it yet, chasing down and confirming the little bugger munched the day. #!/bin/sh cd /home/git/futextest/functional trap "killall -KILL -q cpuhog;exit;" INT for i in `seq 0 7`; do taskset -c $i cpuhog& done sleep 1 for i in `seq 1000` do echo iteration $i ./futex_requeue_pi -c -b -o -t 500000 done killall cpuhog Without the cpuhogs, it won't hang. -Mike