From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751692AbcBNQvh (ORCPT ); Sun, 14 Feb 2016 11:51:37 -0500 Received: from mail-qk0-f195.google.com ([209.85.220.195]:35120 "EHLO mail-qk0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751595AbcBNQvf (ORCPT ); Sun, 14 Feb 2016 11:51:35 -0500 Date: Sun, 14 Feb 2016 11:51:33 -0500 From: Tejun Heo To: Konstantin Khlebnikov Cc: linux-arch@vger.kernel.org, Christoph Lameter , linux-kernel@vger.kernel.org, linux-mm@kvack.org, Andrew Morton Subject: Re: [PATCH RFC] Introduce atomic and per-cpu add-max and sub-min operations Message-ID: <20160214165133.GB3965@htj.duckdns.org> References: <145544094056.28219.12239469516497703482.stgit@zurg> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <145544094056.28219.12239469516497703482.stgit@zurg> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, Konstantin. On Sun, Feb 14, 2016 at 12:09:00PM +0300, Konstantin Khlebnikov wrote: > bool atomic_add_max(atomic_t *var, int add, int max); > bool atomic_sub_min(atomic_t *var, int sub, int min); > > bool this_cpu_add_max(var, add, max); > bool this_cpu_sub_min(var, sub, min); > > They add/subtract only if result will be not bigger than max/lower that min. > Returns true if operation was done and false otherwise. If I'm reading the code right, all the above functions do is wrapping the corresponding cmpxchg implementations. Given that most use cases would build further abstractions on top, I'm not sure how useful providing another layer of abstraction is. For the most part, we introduce new per-cpu operations to take advantage of capabilities of underlying hardware which can't be utilized in a different way (like the x86 128bit atomic ops). Thanks. -- tejun