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 0EBA4C6FD1D for ; Tue, 21 Mar 2023 15:07:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231277AbjCUPH3 (ORCPT ); Tue, 21 Mar 2023 11:07:29 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47132 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230250AbjCUPH2 (ORCPT ); Tue, 21 Mar 2023 11:07:28 -0400 Received: from out-29.mta0.migadu.com (out-29.mta0.migadu.com [IPv6:2001:41d0:1004:224b::1d]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6C58C4FAA9 for ; Tue, 21 Mar 2023 08:07:09 -0700 (PDT) Date: Tue, 21 Mar 2023 16:07:06 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1679411227; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=TCnOwZ5hK6OX/UZaD9F4u+bgFnj3TwRoGBE0/NR556w=; b=Ymo8+QYqFSqHQ+6WBTBV3WvX91V42Ky1ooU6lNKH4ddKTJvN5VmYQtVYqD05Xlq2nNKPly ddhvR8MIP+0Th/SFf2nYwbxevwr2PF9N8g4K6T/lQidnOvv9Rch0i1ad/jGAb8D5pHYA77 vnUUTWwzXY5jk5fI68MBKmOag0Blq90= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Andrew Jones To: Alex =?utf-8?Q?Benn=C3=A9e?= Cc: kvmarm@lists.cs.columbia.edu, kvm@vger.kernel.org, qemu-devel@nongnu.org, Thomas Huth , Paolo Bonzini , kvmarm@lists.linux.dev, qemu-arm@nongnu.org, Mark Rutland Subject: Re: [kvm-unit-tests PATCH v10 4/7] arm/tlbflush-code: TLB flush during code execution Message-ID: <20230321150706.6njowkadyp3vpb44@orel> References: <20230307112845.452053-1-alex.bennee@linaro.org> <20230307112845.452053-5-alex.bennee@linaro.org> <20230321150220.mfrvgxg3ebju5e6k@orel> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230321150220.mfrvgxg3ebju5e6k@orel> X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org On Tue, Mar 21, 2023 at 04:02:21PM +0100, Andrew Jones wrote: ... > > + > > +# TLB Torture Tests > > +[tlbflush-code::all_other] > > It's better to use '-', '_', '.', or ',' than '::' because otherwise the > standalone test will have a filename like tests/tlbflush-code::all_other > which will be awkward for shells. > > BTW, have you tried running these tests as standalone? Since they're > 'nodefault' it'd be good if they work that way. > > > +file = tlbflush-code.flat > > +smp = $(($MAX_SMP>4?4:$MAX_SMP)) > > +groups = nodefault mttcg > > + > > +[tlbflush-code::page_other] > > +file = tlbflush-code.flat > > +smp = $(($MAX_SMP>4?4:$MAX_SMP)) > > +extra_params = -append 'page' > > +groups = nodefault mttcg > > + > > +[tlbflush-code::all_self] > > +file = tlbflush-code.flat > > +smp = $(($MAX_SMP>4?4:$MAX_SMP)) > > +extra_params = -append 'self' > > +groups = nodefault mttcg > > + > > +[tlbflush-code::page_self] > > +file = tlbflush-code.flat > > +smp = $(($MAX_SMP>4?4:$MAX_SMP)) > > +extra_params = -append 'page self' > > +groups = nodefault mttcg Shouldn't these also be in something like a "tlb" group? Thanks, drew