From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.0 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AC94CC433E0 for ; Wed, 6 Jan 2021 20:43:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 890782311B for ; Wed, 6 Jan 2021 20:43:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727849AbhAFUnI (ORCPT ); Wed, 6 Jan 2021 15:43:08 -0500 Received: from mail.kernel.org ([198.145.29.99]:55894 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727475AbhAFUnE (ORCPT ); Wed, 6 Jan 2021 15:43:04 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id B71A62311B; Wed, 6 Jan 2021 20:42:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1609965744; bh=B+PNb+h2TeheRTPPGBzTfoOQ6M+qd4Q24FS81ZUfhlI=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=KV/Ds+kDNkjHOEmMFYGyLDU52yYBs5Yt7qulmBQChv/DsKJiOzNZqULO+dOgLL4Gp 9AoDKCTZ8oaf0ZBZBVlYT9e2jSeghaJxiU5WVA71n+/ATEWZ/VKScY59UDSlYSL8JU mg50ew8+7+NrXBFW0dPQqwf4Y9sR/j6jnA7OZGJ4= Date: Wed, 6 Jan 2021 12:42:23 -0800 From: Andrew Morton To: Hugh Dickins Cc: Andrea Arcangeli , Alex Shi , Minchan Kim , Michal Hocko , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mm/mmap: replace if (cond) BUG() with BUG_ON() Message-Id: <20210106124223.587b93e5fdfd6a1a5f799c16@linux-foundation.org> In-Reply-To: References: <1607743586-80303-1-git-send-email-alex.shi@linux.alibaba.com> <1607743586-80303-2-git-send-email-alex.shi@linux.alibaba.com> <20210106114620.5c221690f3a9cad7afcc3077@linux-foundation.org> X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 6 Jan 2021 12:18:36 -0800 (PST) Hugh Dickins wrote: > On Wed, 6 Jan 2021, Andrea Arcangeli wrote: > > > > I'd be surprised if the kernel can boot with BUG_ON() defined as "do > > {}while(0)" so I guess it doesn't make any difference. > > I had been afraid of that too, when CONFIG_BUG is not set: > but I think it's actually "if (cond) do {} while (0)". Yes, that is so. The thinking being that in most cases the compiler will be smart enough to avoid generating any code for `cond' anyway.