From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754669AbbAJCOF (ORCPT ); Fri, 9 Jan 2015 21:14:05 -0500 Received: from smtp2.provo.novell.com ([137.65.250.81]:40618 "EHLO smtp2.provo.novell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754429AbbAJCOD (ORCPT ); Fri, 9 Jan 2015 21:14:03 -0500 Message-ID: <1420856033.28767.1.camel@stgolabs.net> Subject: Re: Preemptionirqsoff latency issue From: Davidlohr Bueso To: Vaibhav Shinde Cc: Peter Zijlstra , linux-kernel@vger.kernel.org, Andrew Morton , tj@kernel.org, Steven Rostedt Date: Fri, 09 Jan 2015 18:13:53 -0800 In-Reply-To: References: <20150109095603.GB22386@worktop.programming.kicks-ass.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.12.7 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 On Fri, 2015-01-09 at 20:19 +0530, Vaibhav Shinde wrote: > My app runs on cpu0, while other cpus looks idle; as per my > understanding from your comment owner of the mutex is on the cpu other > than cpu0, and which is causing wait spin on cpu0. The thing is, cpu0 is rescheduling too often, so you're falling out of the spinning step. Thanks, Davidlohr