Received: by 2002:a25:ca44:0:0:0:0:0 with SMTP id a65csp2523298ybg; Fri, 31 Jul 2020 02:14:56 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyqAoKsZqFRPjzL/dOxeSQYU4CnH5r1n8e8onbLOajdVYAnR2UP5NH5x9Eosj9nG6ogBu1L X-Received: by 2002:a17:906:7b48:: with SMTP id n8mr3054041ejo.110.1596186896381; Fri, 31 Jul 2020 02:14:56 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1596186896; cv=none; d=google.com; s=arc-20160816; b=xFeyVI3zxxXwHNd14ckbzY8M7klYd+ZGXYOfI12FQfoi4cSHdyAUEVJIzHofCYuUcu RVCp9kdIKOHUPJI062kiPVNa8/Z1Yu25Hj50nGEMfk+vdt4drhxXnmD/MzfLLj/4x/zj uPv6DEPu7vCqrznwbohdbE76CO1Msd9B6rV57ZaUzfjbfitjQMuMgwMgVZ4lBspbs/rM 9VE3UlPpeG4XdPeeqG4UZETgbapkKRfWyRBsqVzgyykpElJeUTuOUcR+AyxdYG0LokXx 49x8Dy2cQPfNBsqnM2N4u8U0nDNuKCR5dhf1rBf473ToEmNAroEMHj5WPZDkzwKa1ubb BtYw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :message-id:in-reply-to:subject:cc:to:from:date; bh=Hj2mXBESWKRzWgXt/BtNtvKjs3MSM24nC/1RFGbjgik=; b=OTRktmFu7RFddbhJ7I7mfyWu4fYkAmEpInxfaz7S0JQpUa/+DE4/BKz676wQA3DQ+4 N9ET90hvXhiKBHJ7Ukngtsem15p12wWlgF5k/EAW4c3G/UE1qIiznRGt1gQhHi+XGjo5 L5prt+uoTmR3fBXYBlu7mZDYSc9oXT7ezfKEgtEXIqcBIQ8uKp4u5aJP8yc6R0vHH9j4 2IKHzevCfYouBtUbdlDGOzD/8un9ULT61EdfDOK4djR0FeOYsXQpZcOq8B/feJ7Y21z6 eQpvwFCKVjsZVWewHp1dcAsaWiGrZNTUWX1nM7e45olRK2BZe2vPIIZ7Kk7iFKQnhmcy WpFg== 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 p26si4615278ejf.232.2020.07.31.02.14.33; Fri, 31 Jul 2020 02:14:56 -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 S1731981AbgGaJOY (ORCPT + 99 others); Fri, 31 Jul 2020 05:14:24 -0400 Received: from mx2.suse.de ([195.135.220.15]:60100 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728437AbgGaJOY (ORCPT ); Fri, 31 Jul 2020 05:14:24 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id C8158B622; Fri, 31 Jul 2020 09:14:35 +0000 (UTC) Date: Fri, 31 Jul 2020 11:14:21 +0200 (CEST) From: Miroslav Benes To: Julien Thierry cc: linux-kernel@vger.kernel.org, jpoimboe@redhat.com, peterz@infradead.org, raphael.gault@arm.com, benh@kernel.crashing.org Subject: Re: [PATCH v2 0/9] Make check implementation arch agnostic In-Reply-To: <20200730094652.28297-1-jthierry@redhat.com> Message-ID: References: <20200730094652.28297-1-jthierry@redhat.com> User-Agent: Alpine 2.21 (LSU 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > I've push both series base on top of tip/objtool/core at [3]. > > - The first two patches make it simpler for new arches to provide their > list of kernel headers, without worrying about modifications in the x86 > headers. > - Patch 3 Moves arch specific macros to more suitable location > - Patches 4 and 5 add abstraction to handle alternatives > - Patch 6 adds abstraction to handle jump table > - Patches 7-9 abstracts the use of unwind hints, so some definitions > can be shared across architectures while keeping arch specific > semantics > > Changes since v1 [4]: > - Rebased on recent tip/objtool/core > - Split the unwind hint rework into multiple patches as suggested by > Miroslav For remaining patches 7-9 Reviewed-by: Miroslav Benes M