From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755708AbdKNS3I (ORCPT ); Tue, 14 Nov 2017 13:29:08 -0500 Received: from mga07.intel.com ([134.134.136.100]:12169 "EHLO mga07.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755373AbdKNS27 (ORCPT ); Tue, 14 Nov 2017 13:28:59 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,395,1505804400"; d="scan'208";a="173495683" Subject: Re: [PATCH 18/30] x86, kaiser: map virtually-addressed performance monitoring buffers To: Peter Zijlstra References: <20171110193058.BECA7D88@viggo.jf.intel.com> <20171110193139.B039E97B@viggo.jf.intel.com> <20171114182009.jbhobwxlkfjb2t6i@hirez.programming.kicks-ass.net> Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, hughd@google.com, moritz.lipp@iaik.tugraz.at, daniel.gruss@iaik.tugraz.at, michael.schwarz@iaik.tugraz.at, richard.fellner@student.tugraz.at, luto@kernel.org, torvalds@linux-foundation.org, keescook@google.com, x86@kernel.org From: Dave Hansen Message-ID: <30655167-963f-09e3-f88f-600bb95407e8@linux.intel.com> Date: Tue, 14 Nov 2017 10:28:50 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <20171114182009.jbhobwxlkfjb2t6i@hirez.programming.kicks-ass.net> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 11/14/2017 10:20 AM, Peter Zijlstra wrote: > On Fri, Nov 10, 2017 at 11:31:39AM -0800, Dave Hansen wrote: >> static int alloc_ds_buffer(int cpu) >> { >> + struct debug_store *ds = per_cpu_ptr(&cpu_debug_store, cpu); >> >> + memset(ds, 0, sizeof(*ds)); > Still wondering about that memset... My guess is that it was done to mirror the zeroing done by the original kzalloc(). But, I think you're right that it's zero'd already by virtue of being static: static DEFINE_PER_CPU_SHARED_ALIGNED_USER_MAPPED(struct debug_store, cpu_debug_store); I'll queue a cleanup, or update it if I re-post the set.