From mboxrd@z Thu Jan 1 00:00:00 1970 From: yuankuiz@codeaurora.org Subject: Re: [PATCH]cgroup: __cpuset_node_allowed return bool Date: Mon, 26 Mar 2018 22:41:59 +0800 Message-ID: References: <0fee75e4a1b12f5fca30e04306a95788@codeaurora.org> <20180326141212.GI2149215@devbig577.frc2.facebook.com> <3540bc7869927f54c409b697c743938a@codeaurora.org> <20180326142527.GJ2149215@devbig577.frc2.facebook.com> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1522075319; bh=+9XNC5De/SWRnqSMAYAMmQQ9VDCEETYmwib/vXHw+HU=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=fWezvepxuzvHiTLVfDH56POfOlNMJ1890fBs0QwgKLr17UZALV4+LfxyKKMeEZ8Mv jf7V+BEKO3aEBXTBe1XK5nXq0se4DxfXXt4JX1czdMxfe/P80x6AE2emKjAEYsgDTs AXK7NwUHPSyM++ZgsjgUp9JGnT/tX2XJBXwhN7qA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1522075319; bh=+9XNC5De/SWRnqSMAYAMmQQ9VDCEETYmwib/vXHw+HU=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=fWezvepxuzvHiTLVfDH56POfOlNMJ1890fBs0QwgKLr17UZALV4+LfxyKKMeEZ8Mv jf7V+BEKO3aEBXTBe1XK5nXq0se4DxfXXt4JX1czdMxfe/P80x6AE2emKjAEYsgDTs AXK7NwUHPSyM++ZgsjgUp9JGnT/tX2XJBXwhN7qA= In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii"; format="flowed" To: Tejun Heo Cc: cgroups@vger.kernel.org, lizefan@huawei.com, hannes@cmpxchg.org, linux-kernel@vger.kernel.org, pkondeti@codeaurora.org, cgroups-owner@vger.kernel.org Hi Tejun, Additionally, On 2018-03-26 10:37 PM, yuankuiz@codeaurora.org wrote: > Hi Tejun, > > inline. > > On 2018-03-26 10:25 PM, Tejun Heo wrote: >> On Mon, Mar 26, 2018 at 10:20:43PM +0800, yuankuiz@codeaurora.org >> wrote: >>> 1) return int type variable in bool function: >>> bool enabled() >>> { >>> int ret = 1; >>> return ret; >>> } >> ... >>> 2) >>> bool enabled() >>> { >>> bool ret = 1; >>> return ret; >>> } >> ... >>> so the #1) style function can generate significant instructions >>> than the #2). >> >> That is a problem for the compiler, not the code. [ZJ] Actually, it should be bool but not int. Without any optimization by compiler, it is the best if it is the same as returned. >> >>> While, this is happened only when "-On" is not used with *-gcc >>> together. Though, it is oftern there, it is best to provide this >>> with decoupling of which option is used for optimization. >> >> We don't want to dictate minute coding styles to avoid things which >> are trivially optimized by compilers. > [ZJ] Optimized by compiler is observed only. Such as it is not so big > difference in x86-arch. > >> >> Thanks. > -- > To unsubscribe from this list: send the line "unsubscribe cgroups" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html Thanks, BR//Zhao