From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 38F598120F; Tue, 19 Mar 2024 14:17:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1710857871; cv=none; b=cF8FWpbyHBx/BHNysVddXFPqJV8MnNwbz4LQGRC/s7u0JgD6yb4AFqEV61FUvmbc5q3muMct41uH7Eb6e1/hGZeHFn1MIxBTJpv3TnQ6/l/BcFruuhTH2a9dHvtjs+O9GpCws09Gmsf5n3/ngohq+O4f/5EH7cMaGXXNqEP4+P8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1710857871; c=relaxed/simple; bh=Zeo3xa6Wim1i5dx56lNMKn/G39IRFtRUarZC1toA82Q=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=lE1oBYAQFI9jaxJRmIVAqMzIrO2ZQQsvtQ3/b5xj7+ZRHwf8kI1cu4JxltKgXGZ2xwb0pSYLygpnIFzvTMUI/i0rRodZ7IAEyHmcXNd9t+3RndNXBblERGXX7WMMnhpUPmRrgfEl22QtxkZ7fFryApM6+Y/fYRvAKZw+fWppYiU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=eIZVVBoQ; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="eIZVVBoQ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 47C50C433F1; Tue, 19 Mar 2024 14:17:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1710857870; bh=Zeo3xa6Wim1i5dx56lNMKn/G39IRFtRUarZC1toA82Q=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=eIZVVBoQjbOsNuSe0G0TNLGcHJm6Z3LqNpfGMO1P/y7lwEy6lGeSBWmY03jmX+7lm 0cy+AKCrU+5l/B0NJh36lcYaKDz4ojAJTXXTM/S3mPwe+k8Axc5a65Cc0qiniVygUO UlGBDZT3hWfuvuYOtlt2wcFsQnVU+SlTiMu9zjiZrnVxithqjAMgUFVoFIuf+YkNwB +d+4zV/+wCapNo0jVBF2kvNWlGiABNgxYrvbKAeAmB74anzvGBfimmnz5ndrD2rMtN nZ61uu716aoZEX/DGBpihDOOBV4aIV90RKobi0xqZIwJOPaebfxo0GQUwHPmyVltX2 IarcXfqEDtysg== Date: Tue, 19 Mar 2024 11:17:47 -0300 From: Arnaldo Carvalho de Melo To: Namhyung Kim Cc: Ian Rogers , Jiri Olsa , Adrian Hunter , Peter Zijlstra , Ingo Molnar , LKML , linux-perf-users@vger.kernel.org, Linus Torvalds , Stephane Eranian , Masami Hiramatsu , linux-toolchains@vger.kernel.org, linux-trace-devel@vger.kernel.org, Ben Woodard , Joe Mario , Kees Cook , David Blaikie , Xu Liu , Kan Liang , Ravi Bangoria , Mark Wielaard , Jason Merrill , "Jose E . Marchesi" , William Huang Subject: Re: [PATCHSET 00/23] Remaining bits of data type profiling (v7) Message-ID: References: <20240319055115.4063940-1-namhyung@kernel.org> Precedence: bulk X-Mailing-List: linux-trace-devel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240319055115.4063940-1-namhyung@kernel.org> On Mon, Mar 18, 2024 at 10:50:52PM -0700, Namhyung Kim wrote: > > Hello, > > This is the last part of the data type profiling series. > So far we added the basic pointer variable support, and direct access to > global/local variables. Now it's time to add instruction tracking. :) > > For the history and background, you can refer to the previous version > [1] and the LWN article [2]. Most of my comments are minor and can be addressed later, I've applied in my local repo, will go thru the usual build tests and then I'll do further usage tests. Thanks, - Arnaldo