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=-3.9 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS 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 3A3AEC2D0A3 for ; Fri, 6 Nov 2020 17:52:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D5775206F4 for ; Fri, 6 Nov 2020 17:52:56 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="QVj+oUZv" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727718AbgKFRw4 (ORCPT ); Fri, 6 Nov 2020 12:52:56 -0500 Received: from us-smtp-delivery-124.mimecast.com ([216.205.24.124]:41964 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725868AbgKFRwz (ORCPT ); Fri, 6 Nov 2020 12:52:55 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1604685174; 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=gXUD4PEw11l15dp1gG3X4hb7MCsDOoZml5dxfjumYcA=; b=QVj+oUZvAzp58jjqBYd1cdgTh+SEhJkFke34GnFr8ZPr5AAAieZBugkHQHBDUlh85oXEnk OHPQHEmLliljUFZdAY2XKc7ixnSObS+/aCJ//fL5cD5UVwVZxBt34+kQVTxgJAFfiD68bC 33l3p7qGMuxTKDNpzAxEmRfzzqs8wDo= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-575-zFZeb4IgPLe8zQAoK78mDQ-1; Fri, 06 Nov 2020 12:52:50 -0500 X-MC-Unique: zFZeb4IgPLe8zQAoK78mDQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 1907F803637; Fri, 6 Nov 2020 17:52:49 +0000 (UTC) Received: from treble (ovpn-116-174.rdu2.redhat.com [10.10.116.174]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 90AF75576E; Fri, 6 Nov 2020 17:52:37 +0000 (UTC) Date: Fri, 6 Nov 2020 11:52:31 -0600 From: Josh Poimboeuf To: Masami Hiramatsu Cc: Vasily Gorbik , kernel test robot , kbuild-all@lists.01.org, clang-built-linux@googlegroups.com, Borislav Petkov , Peter Zijlstra , linux-kernel@vger.kernel.org, linux-tip-commits@vger.kernel.org, x86 Subject: Re: [PATCH 1/1] x86/tools: Use tools headers for instruction decoder selftests Message-ID: <20201106175231.f64g7c6f47gq2mty@treble> References: <202011041702.EIrDb4hS-lkp@intel.com> <20201106112413.80248e44fef68d9acf932dec@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20201106112413.80248e44fef68d9acf932dec@kernel.org> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 06, 2020 at 11:24:13AM +0900, Masami Hiramatsu wrote: > > Right, this is expected. The patch is based on jpoimboe/objtool/core, > > which has extra commits. > > Has that series already submitted to LKML? I need to look at the series too. > Or, Josh, can you review it and if it is OK, please pick it to your series > and send it. I believe those patches were dropped from -tip because of a build issue. Vasily, can you repost fixed versions of those patches, based on tip/objtool/core, along with this new patch? -- Josh From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============3048582244342817108==" MIME-Version: 1.0 From: Josh Poimboeuf To: kbuild-all@lists.01.org Subject: Re: [PATCH 1/1] x86/tools: Use tools headers for instruction decoder selftests Date: Fri, 06 Nov 2020 11:52:31 -0600 Message-ID: <20201106175231.f64g7c6f47gq2mty@treble> In-Reply-To: <20201106112413.80248e44fef68d9acf932dec@kernel.org> List-Id: --===============3048582244342817108== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable On Fri, Nov 06, 2020 at 11:24:13AM +0900, Masami Hiramatsu wrote: > > Right, this is expected. The patch is based on jpoimboe/objtool/core, > > which has extra commits. > = > Has that series already submitted to LKML? I need to look at the series t= oo. > Or, Josh, can you review it and if it is OK, please pick it to your series > and send it. I believe those patches were dropped from -tip because of a build issue. Vasily, can you repost fixed versions of those patches, based on tip/objtool/core, along with this new patch? -- = Josh --===============3048582244342817108==--