From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756584Ab2JZGv7 (ORCPT ); Fri, 26 Oct 2012 02:51:59 -0400 Received: from www84.your-server.de ([213.133.104.84]:38833 "EHLO www84.your-server.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756501Ab2JZGv6 (ORCPT ); Fri, 26 Oct 2012 02:51:58 -0400 Message-ID: <1351234266.12511.23.camel@wall-e> Subject: Re: [PATCH] kfifo: remove unnecessary type check From: Stefani Seibold To: Yuanhan Liu Cc: Yuanhan Liu , linux-kernel@vger.kernel.org, Andrew Morton , Wei Yang , Fengguang Wu , Stephen Rothwell Date: Fri, 26 Oct 2012 08:51:06 +0200 In-Reply-To: <20121026061145.GA2778@yliu-dev.sh.intel.com> References: <1351215971-11639-1-git-send-email-yliu.null@gmail.com> <1351229911.12511.1.camel@wall-e> <20121026061145.GA2778@yliu-dev.sh.intel.com> Content-Type: text/plain; charset="ISO-8859-15" X-Mailer: Evolution 3.4.4 Mime-Version: 1.0 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 Freitag, den 26.10.2012, 14:11 +0800 schrieb Yuanhan Liu: > On Fri, Oct 26, 2012 at 07:38:31AM +0200, Stefani Seibold wrote: > > Am Freitag, den 26.10.2012, 09:46 +0800 schrieb Yuanhan Liu: > > > From: Yuanhan Liu > > > > > > Firstly, this kind of type check doesn't work. It does something similay > > > like following: > > > void * __dummy = NULL; > > > __buf = __dummy; > > > > > > __dummy is defined as void *. Thus it will not trigger warnings as > > > expected. > > > > > > Second, we don't need that kind of check. Since the prototype > > > of __kfifo_out is: > > > unsigned int __kfifo_out(struct __kfifo *fifo, void *buf, unsigned int len) > > > > > > buf is defined as void *, so we don't need do the type check. Remove it. > > > > > > LINK: https://lkml.org/lkml/2012/10/25/386 > > > LINK: https://lkml.org/lkml/2012/10/25/584 > > > > > > Cc: Andrew Morton > > > Cc: Wei Yang > > > Cc: Stefani Seibold > > > Cc: Fengguang Wu > > > Cc: Stephen Rothwell > > > Signed-off-by: Yuanhan Liu > > > --- > > > > Did you tried to compile the whole kernel including all the drivers with > > your patch? > > Hi Stefani, > > I did a build test, it did't introduce any new compile errors and > warnings. While, I haven't tried make allmodconfig then. Does this patch > seems wrong to you? > > Thanks, > Yuanhan Liu Hi Liu, no the patch seems not wrong to me. But as you see with the previous patch it is not easy to predict the side effects. An allmodconfig together with C=2 is necessary to check if there is no side effects which current users of the kfifo API. That is exactly what i did again and again as i developed the kfifo API. Also you have to build the kfifo samples, since this example code use all features of the kfifo API. And again: The kfifo is designed to do the many things at compile time, not at runtime. If you modify the code, you have to check the compiler assembler output for no degradation, especially in kfifo_put, kfifo_get, kfifo_in, kfifo_out, __kfifo_in and __kfifo_out. Prevent runtime checks if you can do it at compile time. This is the basic reasons to do it in macros. Greetings, Stefani