Received: by 2002:a05:6a10:5bc5:0:0:0:0 with SMTP id os5csp850326pxb; Tue, 19 Oct 2021 14:30:46 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxnz1pxjOm1leESlXf7BJhhMwbS8DofRYmFtSLWJD7tl3TnNP7umq2cqqHDOjdrVMwwjs3n X-Received: by 2002:a50:becf:: with SMTP id e15mr58222970edk.114.1634679046525; Tue, 19 Oct 2021 14:30:46 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1634679046; cv=none; d=google.com; s=arc-20160816; b=0FYbyPWvPwQE1hsmOa+4vKT7QD0QCxz1onoXRyastwBfkKgCfRO4o6XSBZX8uDo/uQ 9oeWVb4YZx9s9t4B/55AmQIEG3OZ1tUOkOTrMeGlUrgsceuPoVOmuibmIUgqs2yrYPn/ UKm8cNqzy4vjMqWLZfioEsuF0iAphB4bD1hZBcGf32O2vscb1CjCe9Syb7E6RoNuPFEH rId2GUPQXmYHCwWnOVFc+7pDzoPMaKop41TWR/ATcG/DYMSfUOIh7/RTFXejxEFyTqzA 42Lqu2f8dPcyiZ/TtMp+u/5tcDImNnka4SZ2c30OIYxY+BfTYSHzTyxW3JpbF2+dN1rA OmIg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:subject:cc:to:from:date; bh=sB9NGHy79IGXHVxHBSa+X4uz/l6qY0xu4nuNzYXTrFo=; b=yHuwv5SqPeCPn8tbaZyrtdTTcE/MhTVm1H1zGIFezD4JVdPv6uur9sQKaaFBbMGRQW MNs4wfxVXp6KZXAfvIj3sROG08+ZTje/6a4QPincBYo5Khow+ldzKmIPh/Pzn0ayzopk aPpq7XJhb14xLQeCbF3AMhnF+rxuBq+eWUZ+a/bCtU4ssOWhW4qHvGhvXAL8+LITrzy/ j65HQFj80PYVp1wLN0xUr9002LprllZF/jHfHwDlgbQlk3TBuLRk+gMyc/GBDQtmV98Y SF2akW/1tNzUSdpC6NeLxUK5SItVkE9YCeudXyrO7bOIRh4m0hoEdpaWM7bYKxAepWC8 Rp4Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id k17si221538edf.574.2021.10.19.14.30.21; Tue, 19 Oct 2021 14:30:46 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229864AbhJSV2R (ORCPT + 99 others); Tue, 19 Oct 2021 17:28:17 -0400 Received: from mail.kernel.org ([198.145.29.99]:37742 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229498AbhJSV2Q (ORCPT ); Tue, 19 Oct 2021 17:28:16 -0400 Received: from gandalf.local.home (cpe-66-24-58-225.stny.res.rr.com [66.24.58.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 0B45B6134F; Tue, 19 Oct 2021 21:26:01 +0000 (UTC) Date: Tue, 19 Oct 2021 17:26:00 -0400 From: Steven Rostedt To: Kalesh Singh Cc: Suren Baghdasaryan , Hridya Valsaraju , Namhyung Kim , Jonathan Corbet , Ingo Molnar , Shuah Khan , Tom Zanussi , Masami Hiramatsu , "open list:DOCUMENTATION" , LKML , "open list:KERNEL SELFTEST FRAMEWORK" Subject: Re: [PATCH 1/5] tracing: Add support for creating hist trigger variables from literal Message-ID: <20211019172600.0f211c98@gandalf.local.home> In-Reply-To: References: <20210915195306.612966-1-kaleshsingh@google.com> <20210915195306.612966-2-kaleshsingh@google.com> <20211019164834.465b2a53@gandalf.local.home> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 19 Oct 2021 14:21:04 -0700 Kalesh Singh wrote: > Addition and subtraction are already supported operations. The use > case given in Documentation/trace/histogram.rst is for calculating > latencies. I don't have a use case where the constants may be needed > in the addition/subtraction, but for simplicity and completeness we > support them for all operations. Perhaps we should state that it's mostly added for completeness then. Thanks, -- Steve