Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757973AbaGWQ24 (ORCPT ); Wed, 23 Jul 2014 12:28:56 -0400 Received: from mail-wi0-f176.google.com ([209.85.212.176]:56388 "EHLO mail-wi0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756244AbaGWQ2z (ORCPT ); Wed, 23 Jul 2014 12:28:55 -0400 Date: Wed, 23 Jul 2014 18:28:48 +0200 From: Frederic Weisbecker To: "Paul E. McKenney" Cc: Petr =?iso-8859-1?Q?Ml=E1dek?= , Steven Rostedt , Ingo Molnar , Jiri Kosina , linux-kernel@vger.kernel.org Subject: Re: [PATCH v3] ring-buffer: Race when writing and swapping cpu buffer in parallel Message-ID: <20140723162845.GF23175@localhost.localdomain> References: <1405501084-16135-1-git-send-email-pmladek@suse.cz> <20140716124356.398e21f4@gandalf.local.home> <20140718153443.GC6774@pathway.suse.cz> <20140721144324.GG20751@pathway.suse.cz> <20140721154317.GS8690@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20140721154317.GS8690@linux.vnet.ibm.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jul 21, 2014 at 08:43:17AM -0700, Paul E. McKenney wrote: > On Mon, Jul 21, 2014 at 04:43:24PM +0200, Petr Ml?dek wrote: > > 2. Go back, do the swap on any CPU, and do memory barriers via IPI. > > > > I wonder if the needed memory barrier in rb_reserve_next_event() > > could be avoided by calling IPI from ring_buffer_swap_cpu(). > > > > I mean that rb_reserve_next_event() will include the current check > > for swapped ring buffer without barriers. But > > ring_buffer_swap_cpu() will interrupt the affected CPU and > > basically do the barrier there only when needed. > > > > But I am not sure how this is different from calling > > smp_call_function_single() from ring_buffer_swap_cpu(). > > And I am back on the question why it is dangerous with disabled > > interrupts. I can't find any clue in git history. And I miss this > > part of the picture :-( > > IIRC, deadlock in the case where two CPUs attempt to invoke > smp_call_function_single() at each other, but both have > interrupts disabled. It might be possible to avoid this by telling > smp_call_function_single() not to wait for a response, but this often > just re-introduces the deadlock at a higher level. FWIW, this is what smp_call_function_single_async() does. But then the call must synchronized such that no concurrent call happen until the IPI completion. Otherwise you also have irq_work_queue_on() (not yet upstream but in tip/timers/nohz and tip/sched/core). -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/