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 44FAF6A03F; Tue, 23 Apr 2024 14:29:37 +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=1713882578; cv=none; b=ktmY2wNPeoDziwtbGNhfbL+/hMPPoXMJdP1KudQqiPRLWe8wkw+U+OlDBMOJHtkuvLXOCC2KR3Rbv1tF7V2R90q9r/WY2og7vZF0gawvgEU9upKrU1ZpG0h9e8jLNSs4vHehNXwIzi/HIHtPDQKLhK01EopVG212wVQbcqZZqM8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1713882578; c=relaxed/simple; bh=xQ5On1MfHWhx96e4Z1Z5UDJQiU3euinVrl+3ijimgTY=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=mOHMnFinoSFzCOIgjez6gttE9XDH2wbzLsZVxVvWgb8Go1rwqt17G18v9Z6Ljzcee6mR1d5/hkALNQXZaYEkUFr2pFmkKdAL/lQSCpXnMWN5ktHW+9TThCxtvOb3okH0h8VO5kW+ixVM8mREOfP6AJRRIl9QW5a4aCBMEXek4R8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=j8hwkZzp; 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="j8hwkZzp" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 52509C116B1; Tue, 23 Apr 2024 14:29:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1713882577; bh=xQ5On1MfHWhx96e4Z1Z5UDJQiU3euinVrl+3ijimgTY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=j8hwkZzpzrXYUObGZB1ZEw8s8h7AP3O4N67s5E9Vj2HVW/BhOeLMpW4ttasmWvxDX XOTOsUciHHmdjhfDTIAED5BNajGZcgxVQVko5LaylcYjmZcneIfYZLBkyjINWfe+Lv ZkB3K6kjgQeyREGcLvoYSpT4g4zwR77TM9keCJP70To9Qmn04bttpfJrQorItndolH bHnIgZq42UyctCDj+9//7FD+RfmN+YQwTpRmgZM7Ks1fuBCwcCe0rEWQHuErs3lnpz GtZtdhMlm7icfilbcm/l3diqH7Mupuy/LEJfxydGx5BS8b9bjJeZ5M7WWwDHb2J9v2 dLK0vCOVzSKMQ== Date: Tue, 23 Apr 2024 11:29:34 -0300 From: Arnaldo Carvalho de Melo To: Ian Rogers Cc: Peter Zijlstra , Ingo Molnar , Namhyung Kim , Mark Rutland , Alexander Shishkin , Jiri Olsa , Adrian Hunter , Kan Liang , James Clark , Athira Rajeev , Colin Ian King , nabijaczleweli@nabijaczleweli.xyz, Leo Yan , Song Liu , Ilkka Koskinen , Ben Gainey , K Prateek Nayak , Yanteng Si , Sun Haiyong , Changbin Du , Andi Kleen , Thomas Richter , Masami Hiramatsu , Dima Kogan , zhaimingbing , Paran Lee , Li Dong , Tiezhu Yang , Chengen Du , linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 0/7] dso/dsos memory savings and clean up Message-ID: References: <20240423042601.2009469-1-irogers@google.com> Precedence: bulk X-Mailing-List: linux-perf-users@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: <20240423042601.2009469-1-irogers@google.com> On Mon, Apr 22, 2024 at 09:25:54PM -0700, Ian Rogers wrote: > v4. Rebases, dealing with merge conflicts, on tmp.perf-tools-next > dropping the merged: > perf dsos: Attempt to better abstract dsos internals > perf dsos: Tidy reference counting and locking > perf dsos: Add dsos__for_each_dso > perf dso: Move dso functions out of dsos > perf dsos: Switch more loops to dsos__for_each_dso I think Namyung acked the previous series, right? I'll check later. For now all is in tmp.perf-tools-next and going thru build tests. Thanks, - Arnaldo > v3. Rebases and drops merged "perf dso: Reorder variables to save > space in struct dso" > > v2. Rebases on top of tmp.perf-tools-next resolving merge conflicts.