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=-11.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham 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 93775C433DB for ; Mon, 22 Mar 2021 08:54:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4F3B56191C for ; Mon, 22 Mar 2021 08:54:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229728AbhCVIyD (ORCPT ); Mon, 22 Mar 2021 04:54:03 -0400 Received: from us-smtp-delivery-124.mimecast.com ([216.205.24.124]:32314 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229482AbhCVIxr (ORCPT ); Mon, 22 Mar 2021 04:53:47 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1616403226; 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=pssS4RZUY845Ih5JssJgGRrZ/xA2JgSjfiNKphl/u0Y=; b=GST2x98bJFAdQSAVhrNzLg0x+77rk6PSmBHT/+TRU/jOXAqSpjNQIgi0Cmf3yn5fUbIs3w ocTdJfCM8144hv1evGe6hyBZSvy66jXYaTHISt8G/NlnEKf8PK8tP2mPR1ximClazF0nuw 01CKxYPozCrDOyTit2qkIau0AKx+Cac= 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-457-LnucKic3PvCeVhpyb6zPZg-1; Mon, 22 Mar 2021 04:53:42 -0400 X-MC-Unique: LnucKic3PvCeVhpyb6zPZg-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 44A35190A7A3; Mon, 22 Mar 2021 08:53:41 +0000 (UTC) Received: from kamzik.brq.redhat.com (unknown [10.40.194.23]) by smtp.corp.redhat.com (Postfix) with ESMTPS id A919E6A03C; Mon, 22 Mar 2021 08:53:39 +0000 (UTC) Date: Mon, 22 Mar 2021 09:53:36 +0100 From: Andrew Jones To: Nikos Nikoleris Cc: kvm@vger.kernel.org, pbonzini@redhat.com, alexandru.elisei@arm.com, andre.przywara@arm.com Subject: Re: [kvm-unit-tests PATCH v2 0/4] Fix the devicetree parser for stdout-path Message-ID: <20210322085336.2lxg457refhvntls@kamzik.brq.redhat.com> References: <20210318180727.116004-1-nikos.nikoleris@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210318180727.116004-1-nikos.nikoleris@arm.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org On Thu, Mar 18, 2021 at 06:07:23PM +0000, Nikos Nikoleris wrote: > This set of patches fixes the way we parse the stdout-path > property in the DT. The stdout-path property is used to set up > the console. Prior to this, the code ignored the fact that > stdout-path is made of the path to the uart node as well as > parameters. As a result, it would fail to find the relevant DT > node. In addition to minor fixes in the device tree code, this > series pulls a new version of libfdt from upstream. > > v1: https://lore.kernel.org/kvm/20210316152405.50363-1-nikos.nikoleris@arm.com/ > > Changes in v2: > - Added strtoul and minor fix in strrchr > - Fixes in libfdt_clean > - Minor fix in lib/libfdt/README > > Thanks, > > Nikos > Applied to arm/queue https://gitlab.com/rhdrjones/kvm-unit-tests/-/commits/arm/queue Thanks, drew