Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S942509AbcJ0P2D (ORCPT ); Thu, 27 Oct 2016 11:28:03 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:38765 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932768AbcJ0P2B (ORCPT ); Thu, 27 Oct 2016 11:28:01 -0400 Date: Thu, 27 Oct 2016 17:27:00 +0200 From: Peter Zijlstra To: David Herrmann Cc: linux-kernel@vger.kernel.org, Andy Lutomirski , Jiri Kosina , Greg KH , Hannes Reinecke , Steven Rostedt , Arnd Bergmann , Tom Gundersen , Josh Triplett , Linus Torvalds , Andrew Morton Subject: Re: [RFC v1 06/14] bus1: util - queue utility library Message-ID: <20161027152700.GH3175@twins.programming.kicks-ass.net> References: <20161026191810.12275-1-dh.herrmann@gmail.com> <20161026191810.12275-7-dh.herrmann@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20161026191810.12275-7-dh.herrmann@gmail.com> User-Agent: Mutt/1.5.23.1 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 658 Lines: 13 On Wed, Oct 26, 2016 at 09:18:02PM +0200, David Herrmann wrote: > Messages can be destined for multiple queues, hence, we need to be > careful that all queues get a consistent order of incoming messages. We > define the concept of `global order' to provide a basic set of > guarantees. This global order is a partial order on the set of all > messages. The order is defined as: Ah, ok. So it _is_ a partial order only. I got confused by earlier reports, and the term 'global order' in general, to think you did a total order. And then I wondered wth you needed total ordering for. Maybe best to scrub 'global order' from the entire text. It's not helpful.