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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9923DC433FE for ; Tue, 22 Nov 2022 10:51:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231895AbiKVKvl (ORCPT ); Tue, 22 Nov 2022 05:51:41 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46616 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232672AbiKVKvc (ORCPT ); Tue, 22 Nov 2022 05:51:32 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id F381E55B4; Tue, 22 Nov 2022 02:51:26 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 90B2D61644; Tue, 22 Nov 2022 10:51:26 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 22F9AC433C1; Tue, 22 Nov 2022 10:51:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1669114286; bh=j8EkKONtu9VI51KdfaplORHs+ovLzoYv/jfWrltuok8=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=CjSs68FHPfvg9L1U5vgdwvlOfMJzvs8f3NyzCFsltW6huRNqDZOZ5E9LgI/WgUWYp khSy27N8gFJmlelW3FvhQmQ1sdvYoTCPrQEMwx96NhzxIfFihuZW/IgkbNGIiAzm8K g4MArKY08gBM4VMETb9KlX+ydv4NJwL0Ncy4W79XwaGuCQTLqIClTgq8fbcCT1j5iY FRjnQSL6kYpkZVFunhVmrzUAWloxnNZFg5TCPLi8OfolnXksNumOehnO5ehhXCsle2 BPJcq5ShsBE6wBcoSWpkYPKvLPYSPV2BsgVLA7Frxboqikm3hkfNxq/S2fyw4lfXM4 DG0LPWQ5NHuAQ== Message-ID: <6dbcd2a8-f6b7-8bb4-661d-ff878ffac172@kernel.org> Date: Tue, 22 Nov 2022 11:51:21 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.5.0 Subject: Re: [PATCH 1/4] tracing/osnoise: Fix duration type Content-Language: en-US To: "Masami Hiramatsu (Google)" , Steven Rostedt Cc: Jonathan Corbet , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org References: <20221122071805.49e316a39fb86859b5a3156d@kernel.org> From: Daniel Bristot de Oliveira In-Reply-To: <20221122071805.49e316a39fb86859b5a3156d@kernel.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 11/21/22 23:18, Masami Hiramatsu (Google) wrote: > On Thu, 17 Nov 2022 14:46:17 +0100 > Daniel Bristot de Oliveira wrote: > >> The duration type is a 64 long value, not an int. This was >> causing some long noise to report wrong values. >> >> Change the duration to a 64 bits value. > This looks good to me. > > Acked-by: Masami Hiramatsu (Google) Thanks, Masami! Btw, this patch can be applied independently of the other as a fix. It is only here because I noticed the problem while adding the features in the next patches. -- Daniel