Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753862Ab1DTJbg (ORCPT ); Wed, 20 Apr 2011 05:31:36 -0400 Received: from mail-ew0-f46.google.com ([209.85.215.46]:33925 "EHLO mail-ew0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753741Ab1DTJbb (ORCPT ); Wed, 20 Apr 2011 05:31:31 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type :date:message-id:mime-version:x-mailer:content-transfer-encoding; b=MqCMq6KgBExEJBGM+pIQxR1HVlQ8FOzF9vOLU0JpCz9Vp5gyOPUZLw5SijX/stemyK 4gE4pYopZfJVWJkiuB0YUOYt3732wuy2StUuv6eDkn4H3+zYMADQJQnqVt5frAZHnBJt zbuP2tNghVCFggDg6BsleKYZuKLRjlphLy84Y= Subject: Re: [PATCH 0/1] mm: make read-only accessors take const pointer parameters From: Artem Bityutskiy Reply-To: dedekind1@gmail.com To: Andrea Arcangeli Cc: Phil Carmody , akpm@linux-foundation.org, cl@linux-foundation.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org In-Reply-To: <20110415160957.GV15707@random.random> References: <1302861377-8048-1-git-send-email-ext-phil.2.carmody@nokia.com> <20110415145133.GO15707@random.random> <20110415155916.GD7112@esdhcp04044.research.nokia.com> <20110415160957.GV15707@random.random> Content-Type: text/plain; charset="UTF-8" Date: Wed, 20 Apr 2011 12:28:37 +0300 Message-ID: <1303291717.2700.20.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.32.2 (2.32.2-1.fc14) Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3172 Lines: 71 On Fri, 2011-04-15 at 18:09 +0200, Andrea Arcangeli wrote: > On Fri, Apr 15, 2011 at 06:59:16PM +0300, Phil Carmody wrote: > > of these functions to propagate constness up another layer. It was > > probably in FUSE, as that's the warning at the top of my screen > > currently. > > These function themselfs are inline too, so gcc already can see if > memory has been modified inside the inline function, so it shouldn't > provide an advantage. It would provide an advantage if page_count and > friends weren't inline. > > > I think gcc itself is smart enough to have already concluded what it > > can and it will not immediately benefit the build from just this change. > > Hmm not sure... but I would hope it is smart enough already with > inline (it should never be worse to inline than encoding the whole > thing by hand in the caller, so skipping the function call > alltogether which then wouldn't require any const). > > > I don't think the static analysis tools are as smart as gcc though, by > > any means. GCC actually inlines, so everything is visible to it. The > > static analysis tools only remember the subset of information that they > > think is useful, and apparently 'didn't change anything, even though it > > could' isn't considered so useful. > > > > I'm just glad this wasn't an insta-nack, as I am quite a fan of consts, > > and hopefully something can be worked out. > > I'm not against it if it's from code strict point of view, I was > mostly trying to understand if this could have any impact, in which > case it wouldn't be false positive. I think it's a false positive if > gcc is as smart as I hope it to be. If we want it from coding style > reasons to keep the code more strict that's fine with me of course. I think it is good when small core functions like this are strict and use 'const' whenever possible, even though 'const' is so imperfect in C. Let me give an example from my own experience. I was writing code which was using the kernel RB trees, and I was trying to be strict and use 'const' whenever possible. But because the core functions like 'rb_next' do not have 'const' modifier, I could not use const in many many places of my code, because gcc was yelling. And I was not very enthusiastic to touch the RB-tree code that time. So the outline is that when core functions are not strict, they force the upper layers to not use 'const' so making the linux less strict overall, and making gcc _potential_ to optimize less. The kernel is large and complex, if if today we do not see any apparent optimization out of this, to tomorrow when the code changes, new clients come to the picture - we might get it! Hence, Acked-by: Artem Bityutskiy And Thanks-by: Artem Bityutskiy P.S.: Phil, probably you've noticed my hint about the RB-trees? :-) -- Best Regards, Artem Bityutskiy (Артём Битюцкий) -- 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/