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=-5.8 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 0A523C47089 for ; Wed, 26 May 2021 20:45:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D5288613E2 for ; Wed, 26 May 2021 20:45:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232975AbhEZUpK (ORCPT ); Wed, 26 May 2021 16:45:10 -0400 Received: from mail.kernel.org ([198.145.29.99]:53544 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231321AbhEZUpG (ORCPT ); Wed, 26 May 2021 16:45:06 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id DD4EA613C7; Wed, 26 May 2021 20:43:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1622061802; bh=Wc0VpiNTofyWs1k/w7vX8Lh3TnH80xRCPirGtLFyVPI=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=RyuWUuz9Wqha7WDVAel0HwsYR+YjnUkiTHQ+CA3lL0pH90SXDsGQYssU3bqAAmuPf GC199lyAGoWTlfwC4P3vddNREIR+y8QrjvVuIjzWkrxwW7YbtgkT8bxAPjON4pwXWI TB1H3Y0KdYu/CHYNaF+lt3nafVuovwyPpQLIotV0= Date: Wed, 26 May 2021 13:43:21 -0700 From: Andrew Morton To: Waiman Long Cc: Johannes Weiner , Michal Hocko , Vladimir Davydov , linux-kernel@vger.kernel.org, cgroups@vger.kernel.org, linux-mm@kvack.org, Muchun Song Subject: Re: [PATCH-next] mm/memcontrol.c: Fix potential uninitialized variable warning Message-Id: <20210526134321.42bbd4a9dcbcf53e855c5b1b@linux-foundation.org> In-Reply-To: <20210526193602.8742-1-longman@redhat.com> References: <20210526193602.8742-1-longman@redhat.com> X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 26 May 2021 15:36:02 -0400 Waiman Long wrote: > If the -Wno-maybe-uninitialized gcc option is not specified, compilation > of memcontrol.c may generate the following warnings: > > mm/memcontrol.c: In function ‘refill_obj_stock’: > ./arch/x86/include/asm/irqflags.h:127:17: warning: ‘flags’ may be used uninitialized in this function [-Wmaybe-uninitialized] > return !(flags & X86_EFLAGS_IF); > ~~~~~~~^~~~~~~~~~~~~~~~ > mm/memcontrol.c:3216:16: note: ‘flags’ was declared here > unsigned long flags; > ^~~~~ > In file included from mm/memcontrol.c:29: > mm/memcontrol.c: In function ‘uncharge_page’: > ./include/linux/memcontrol.h:797:2: warning: ‘objcg’ may be used uninitialized in this function [-Wmaybe-uninitialized] > percpu_ref_put(&objcg->refcnt); > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > Fix that by properly initializing *pflags in get_obj_stock() and > introducing a use_objcg bool variable in uncharge_page() to avoid > potentially accessing the struct page data twice. > Thanks. I'll queue this as a fix against your "mm/memcg: optimize user context object stock access".