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 F41AD1448EF; Thu, 11 Apr 2024 11:04:59 +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=1712833500; cv=none; b=CJJyJ+78MBbMwLM5MkPOgwNtzfhVSUIoeZe8H+7sVRLTC5m+C7cB/AK1H/12oPBULXGzhu2H3cms0/fyhtSuAk3N5rKIgn4lHKeW7QqviWHrxiYzfSRh6v1bQYsBwkA+xRPvXTydfyWnK3hJmlpUZZ8miMmoGLcjemHvWiJvmmI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712833500; c=relaxed/simple; bh=++UYlsK6YPiWRvXsuUgKSwshDBZosFmb7aPsHR3zRDU=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=QSjIp/hMGiCvlHJFCewcFZVWLi8Zu52TML9osKipMXHkTHayD0fPf8KqbGDuUVXfV4e85Z4YeQIZnBovpC/hIu1/IzQMTmt/LFG96K69ZQhH7lUf3QwiLeZbSrFxHbOGVB0DiSku3juA9i15eiqpdi1Q/y/7SC90bY34iI1noq0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=EZxhiMJ+; 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="EZxhiMJ+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 14247C433F1; Thu, 11 Apr 2024 11:04:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1712833499; bh=++UYlsK6YPiWRvXsuUgKSwshDBZosFmb7aPsHR3zRDU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=EZxhiMJ+eLMVTcFDC68n4ifgZZ4PnuVocSFbYFl0BqyFErcqStEkXyY1rMvmuKv3o bFfaVilritrINt9Cx6hbI0PlZHYKarZGAHoNZPyjWBr2petu4SQ7na4jcuoTWyAawn FH1SW7NtQOkfH1J/cMIQJnqHajcuRLMpVFVf9BoHmuKhTZuton9enz15ydSps2eka0 yTeUM8LZF+CRa13cULssbZGj2xH1H6knWQDFzyiLNiVrwgWQAcsq3RRowR8jDMqy9t fHUZGfV6BUmUBcbPCYFuGuScyOX79TiDgdFEd8lGFmnJqJeZW+x24g9t8GfY8G1L9b dwlc4bsJf/Uqw== Date: Thu, 11 Apr 2024 08:04:56 -0300 From: Arnaldo Carvalho de Melo To: Ian Rogers Cc: Namhyung Kim , Konstantin Kharlamov , Kan Liang , Jiri Olsa , Adrian Hunter , Peter Zijlstra , Ingo Molnar , LKML , linux-perf-users@vger.kernel.org Subject: Re: [PATCH] perf annotate: Skip DSOs not found Message-ID: References: <20240410185117.1987239-1-namhyung@kernel.org> 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=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: On Wed, Apr 10, 2024 at 12:14:37PM -0700, Ian Rogers wrote: > On Wed, Apr 10, 2024 at 11:51 AM Namhyung Kim wrote: > > > > In some data file, I see the following messages repeated. It seems it > > doesn't have DSOs in the system and the dso->binary_type is set to > > DSO_BINARY_TYPE__NOT_FOUND. Let's skip them to avoid the followings. > > > > No output from objdump --start-address=0x0000000000000000 --stop-address=0x00000000000000d4 -d --no-show-raw-insn -C "$1" > > Error running objdump --start-address=0x0000000000000000 --stop-address=0x0000000000000631 -d --no-show-raw-insn -C "$1" > > ... > > > > Signed-off-by: Namhyung Kim > > Perhaps: Closes: > https://lore.kernel.org/linux-perf-users/15e1a2847b8cebab4de57fc68e033086aa6980ce.camel@yandex.ru/ I added: Closes: https://lore.kernel.org/linux-perf-users/15e1a2847b8cebab4de57fc68e033086aa6980ce.camel@yandex.ru/ Reported-by: Konstantin Kharlamov Reviewed-by: Ian Rogers Signed-off-by: Namhyung Kim Tested-by: Konstantin Kharlamov > Reviewed-by: Ian Rogers Thanks, - Arnaldo