From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Desnoyers Subject: Re: [RFC PATCH lttng-modules] LTTng logger ABI Date: Mon, 17 Feb 2014 16:21:47 +0000 (UTC) Message-ID: <1098265448.26099.1392654107038.JavaMail.zimbra__12935.9684222893$1392654168$gmane$org@efficios.com> References: <1392502096-1900-1-git-send-email-mathieu.desnoyers@efficios.com> <53022631.90209@opersys.com> <1718413437.26031.1392653324422.JavaMail.zimbra@efficios.com> <53023536.9050007@opersys.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail.efficios.com ([78.47.125.74]) by ltt.polymtl.ca with esmtp (Exim 4.72) (envelope-from ) id 1WFQx3-0003PX-2w for lttng-dev@lists.lttng.org; Mon, 17 Feb 2014 11:21:55 -0500 In-Reply-To: <53023536.9050007@opersys.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: lttng-dev-bounces@lists.lttng.org To: Karim Yaghmour Cc: lttng-dev@lists.lttng.org List-Id: lttng-dev@lists.lttng.org ----- Original Message ----- > From: "Karim Yaghmour" > To: "Mathieu Desnoyers" > Cc: lttng-dev@lists.lttng.org > Sent: Monday, February 17, 2014 11:13:42 AM > Subject: Re: [RFC PATCH lttng-modules] LTTng logger ABI > > > On 14-02-17 11:08 AM, Mathieu Desnoyers wrote: > > I'd be tempted to ask: is that the behavior of ftrace when receiving an > > event larger than a page through trace_marker ? > > I've never bothered looking it up to be quite honest. I'm seeing here that the event in trace_marker is limited to 1 page (it can cross a page boundary, so ftrace deals with 2 pages at most). It makes sense, since Ftrace's buffers are split into pages. Its truncation happens here: if (cnt > TRACE_BUF_SIZE) cnt = TRACE_BUF_SIZE; > > > We could indeed truncate the event, but it would increase complexity > > compared to the current patch. So I'm tempted to wait a bit before doing > > so. > > What's the maximum length of events lttng-logger will take? We just > truncate in the Android user-space library that writes the atrace events. The minimum size of sub-buffers (trace packets) LTTng can allocate is a page. However, the available space for event records is slightly less, since we have a packet header at the beginning of the packet. Since the packet header can be extended between LTTng versions, it's hard to say. The space can be slightly less if event contexts are enabled (this can be done dynamically at runtime, per-buffer). Thoughts ? Thanks, Mathieu > > -- > Karim Yaghmour > CEO - Opersys inc. / www.opersys.com > http://twitter.com/karimyaghmour > > -- Mathieu Desnoyers EfficiOS Inc. http://www.efficios.com