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 X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5C291C433DF for ; Thu, 2 Jul 2020 12:34:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 38428207CD for ; Thu, 2 Jul 2020 12:34:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1593693243; bh=FR7gQI0JtDDU8HzfE1z90MM9ea8ghQIPgiGtlWFQUYE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=0hvjHgWdgkb5dKnosK9eH9F5VCCalQgVTkYVSBPPoyMX9gJi4x3Cwrmc5Lixs8PrX iePA/eQ6i1bgEh/yPuVgeZfGtE121u3yP4zILyTcUIE3iX92gf0MK0KAgYjfGztJWL 2FtEwIbNajupypKgwCRm4sHbEKrd2za5nGPdLWE8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728988AbgGBMeB (ORCPT ); Thu, 2 Jul 2020 08:34:01 -0400 Received: from mail.kernel.org ([198.145.29.99]:44606 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728830AbgGBMd7 (ORCPT ); Thu, 2 Jul 2020 08:33:59 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (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 34A6A20836; Thu, 2 Jul 2020 12:33:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1593693238; bh=FR7gQI0JtDDU8HzfE1z90MM9ea8ghQIPgiGtlWFQUYE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=y1J6G/OMYpCJV4JjWF9eu6XnlyheeAkFYIv+qy1KHruLldpkRV4ecXaWqZbsfB7sp /w4WsxmcLy3aOhtt+a89rrLfx5WUOkuIdW35iJEiSkOx5YDNmciQb5qi0W6YX+gex3 pR9oghru9fKNvYqS1PzHyrXD0SW2uEDAoKB4Oa9k= Date: Thu, 2 Jul 2020 14:34:02 +0200 From: Greg KH To: Steven Rostedt Cc: linux-kernel@vger.kernel.org, John Warthog9 Hawley Subject: Re: [for-next][PATCH 8/8] ktest.pl: Add MAIL_MAX_SIZE to limit the amount of log emailed Message-ID: <20200702123402.GA1773770@kroah.com> References: <20200701231717.757834010@goodmis.org> <20200701231756.790637968@goodmis.org> <20200702074103.GA1076415@kroah.com> <20200702081949.2bfd2417@oasis.local.home> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200702081949.2bfd2417@oasis.local.home> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jul 02, 2020 at 08:19:49AM -0400, Steven Rostedt wrote: > On Thu, 2 Jul 2020 09:41:03 +0200 > Greg KH wrote: > > > On Wed, Jul 01, 2020 at 07:17:25PM -0400, Steven Rostedt wrote: > > > From: "Steven Rostedt (VMware)" > > > > > > Add the ktest config option MAIL_MAX_SIZE that will limit the size of the > > > log file that is placed into the email on failure. > > > > > > Cc: Greg KH > > > Signed-off-by: Steven Rostedt (VMware) > > > --- > > > tools/testing/ktest/ktest.pl | 12 +++++++++++- > > > tools/testing/ktest/sample.conf | 13 +++++++++++++ > > > 2 files changed, 24 insertions(+), 1 deletion(-) > > > > Interesting, but I like full log files for my reports :) > > I can add an option to do that if you want. My full logs end up being a > few hundred megabytes. Perhaps I could add a compress option too. It's fine, the default should be good enough for me for now. If not, I'll just bump the value, or add compression. thanks, greg k-h-