From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757383AbZHQIOw (ORCPT ); Mon, 17 Aug 2009 04:14:52 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757355AbZHQIOv (ORCPT ); Mon, 17 Aug 2009 04:14:51 -0400 Received: from www84.your-server.de ([213.133.104.84]:59016 "EHLO www84.your-server.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757343AbZHQIOu (ORCPT ); Mon, 17 Aug 2009 04:14:50 -0400 Subject: Re: [PATCH 2/7] kfifo: move out spinlock From: Stefani Seibold To: Alan Cox Cc: Andrew Morton , linux-kernel , Arnd Bergmann , Andi Kleen , Amerigo Wang , Joe Perches In-Reply-To: <20090817090829.689a604c@lxorguk.ukuu.org.uk> References: <1250455161.28540.4.camel@wall-e> <1250455590.28540.10.camel@wall-e> <20090816235843.0f7f11de@lxorguk.ukuu.org.uk> <20090816163422.a147a918.akpm@linux-foundation.org> <20090817074820.3585206b@lxorguk.ukuu.org.uk> <20090817003617.2abe0a95.akpm@linux-foundation.org> <20090817090829.689a604c@lxorguk.ukuu.org.uk> Content-Type: text/plain Date: Mon, 17 Aug 2009 10:14:44 +0200 Message-Id: <1250496884.20837.30.camel@wall-e> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 Content-Transfer-Encoding: 7bit X-Authenticated-Sender: stefani@seibold.net Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Am Montag, den 17.08.2009, 09:08 +0100 schrieb Alan Cox: > > > Those wrappers happen to be called kfifo_get and kfifo_put > > > > Those names are wrong. > > We've had them for years > > > They're wrong because they are the spinlock-specific variant. What are > > we going to call the mutex_lock-specific variant? > > There isn't one. > > > > > > > But the happens-to-use-spin_lock functions shouldn't be called > > > > kfifo_get(), because that steals namespace from the unlocked functions, > > > > and makes the naming for the happens-to-use-mutex_lock functions look > > > > weird. > > > > > > All over the kernel unlocked function versions have a leading _ name. > > > It's the kernel convention. > > > > tisn't. radix-tree, rbrtee, idr, list_head, prio_tree, flex_array - > > none of them use that convention. > > Some random "10 second grep" examples, and this is also used more > generally for the "without extra goo" variant of things > > __set_special_pids > __sysrq_put_key_op > __sysrq_get_key_op > __handle_sysrq > __audit_getname > __audit_inode > __audit_node_child > > and the without extra goo use includes such minor classics > __get_user > __put_user > > the kernel contains lots and lots of > > __foo() > > foo() > { > spin_lock(bar); > __foo() > spin_unlock(bar) > } > > > > The other thing I must say I dislike about these patches is the > > > gratuitious 'let's rename all the functions' approach it takes. The kfifo > > > API is documented, used and random API of the year type changes mess > > > stuff up and cause unneeded churn. > > > > It fixes naming mistakes. Long-term it is the correct thing to do. > > Best to do it now before we get more callers. > > Why don't we fix all the really dumb naming mistakes then - things like > the chrdev interfaces ? Massive churn, massive confusion. Patches are > always being rejected (and rightfully so) for causing such messes. > > And remember: its very hard to fix existing API documentation and books. > It's doubly dangerous (and IMHO a complete no-no) to change the API of an > interface if you don't change it such that old code will not reliably get > a compile time failure. > As mention: i have no book which describes this interface. To get reliably a compile time failure was the reason to change the function names. > Alan Stefani