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=-8.9 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=ham 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 A055CC43461 for ; Mon, 14 Sep 2020 21:30:56 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5F1DB20715 for ; Mon, 14 Sep 2020 21:30:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600119056; bh=pVKDwQxdNSincEJgZyefEWab4J3nDh6n1sPTCpDw89Y=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=k6lA1Euj0mtWtbUiUP3fDrhEjy8y7utkh2qC52aT9R/Qw0zwpgaJyAtXo0/wyrhvD UIOCc5EEv2ZkyAXZ9GoLrIh9j02WTosoyYLwnaJ7g+RHNsB8oVvSZBwkJF5BvwFrwB MPOc+u0TfNMKlFSeGeOOP4sip7HdSHnlVShk99Jo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726055AbgINVay (ORCPT ); Mon, 14 Sep 2020 17:30:54 -0400 Received: from mail.kernel.org ([198.145.29.99]:55694 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725961AbgINVaw (ORCPT ); Mon, 14 Sep 2020 17:30:52 -0400 Received: from quaco.ghostprotocols.net (unknown [179.97.37.151]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id DABDD206A5; Mon, 14 Sep 2020 21:30:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600119052; bh=pVKDwQxdNSincEJgZyefEWab4J3nDh6n1sPTCpDw89Y=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=FhKKH1J+qXTu8LJNvtlJIS+Mxvh0k5OInj6KEn25nD5Wpgjq4NvaDHZWuVtYoi3nu 4LpM7PgXg7Xiji9cwv67Wzo1iaREkrvzIqVsKe7AY95p5ulMEYhy0Y1zJ6AAHWjyWf u1C2YoBDcKIX18FQLH5PAFuOLIgwuTMxURqERhA0= Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 172C640D3D; Mon, 14 Sep 2020 18:30:50 -0300 (-03) Date: Mon, 14 Sep 2020 18:30:50 -0300 From: Arnaldo Carvalho de Melo To: Jiri Olsa Cc: Ian Rogers , Peter Zijlstra , Ingo Molnar , Mark Rutland , Alexander Shishkin , Namhyung Kim , linux-kernel@vger.kernel.org, Stephane Eranian Subject: Re: [PATCH] perf bench: Fix 2 memory sanitizer warnings Message-ID: <20200914213050.GD166601@kernel.org> References: <20200912053725.1405857-1-irogers@google.com> <20200912205124.GF1714160@krava> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200912205124.GF1714160@krava> X-Url: http://acmel.wordpress.com Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Sat, Sep 12, 2020 at 10:51:24PM +0200, Jiri Olsa escreveu: > On Fri, Sep 11, 2020 at 10:37:25PM -0700, Ian Rogers wrote: > > Memory sanitizer warns if a write is performed where the memory > > being read for the write is uninitialized. Avoid this warning by > > initializing the memory. > > > > Signed-off-by: Ian Rogers > > Acked-by: Jiri Olsa Thanks, applied. - Arnaldo