From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0C78544180; Fri, 7 Jun 2024 15:11:11 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 42453427E0; Fri, 7 Jun 2024 15:11:09 +0200 (CEST) Received: from mail-pj1-f47.google.com (mail-pj1-f47.google.com [209.85.216.47]) by mails.dpdk.org (Postfix) with ESMTP id EB379402B4 for ; Fri, 7 Jun 2024 15:11:07 +0200 (CEST) Received: by mail-pj1-f47.google.com with SMTP id 98e67ed59e1d1-2c1b9152848so1689824a91.1 for ; Fri, 07 Jun 2024 06:11:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1717765867; x=1718370667; darn=dpdk.org; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:from:to:cc:subject:date :message-id:reply-to; bh=DpnjkiwZaB0J9IlE/Qg2aNyW5r+B1vmhQGsvOcGuIyY=; b=VwqeQIRLOe8tqcCcUXwOnF5sju5OVcBVgmoNF7tHCer9h4HQBCN5HKNvAqdXl0PQTn XN/eRZV2r2fA8Q0rhUFlcBo4tRy8JhJ+gDbINZqjyftFUsC5xSxS7hD9s0lJyatgGzal 4bK7aibXymgFAFC0yhDqVOUggspIPi9wW+W/c= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1717765867; x=1718370667; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=DpnjkiwZaB0J9IlE/Qg2aNyW5r+B1vmhQGsvOcGuIyY=; b=gCYARl3WbCtm8Ny3gt19pcQt4O4wPwU1Juqbd/IgcHrC7ObGqMNr4HtJtRhQDoNeXW ABhTOPqGtb/pKMlBXEWq2C7qbxFPLXLpLC+m+t+CcoMPcFy7Q4dZ+WEPEl43iKlnVOL/ Unv24nHLXZe0JzAErLsZtlmpu3eRU2iVZtv63mycpSZDyQLZoR3/RFJFAPcKayXbgDv/ Nkd9IQTNeasoGoR+Wh/l+9DHJySeYtqUe3k2SM31B6lLxS8vgetvrtvX9cexpt8pOi1G ZRvQR6OuS/Nd+HXoILd45IyfU9yqZNnpc/DR7Df1FAgo7uPfgg6rUAlCoy4LH0UBaMxy dxqA== X-Gm-Message-State: AOJu0YxD/hcPCSK7dr+If6mqwZ2qFj3Fb5dgSxLBH6JZhKDswx6M4UgO HI3gG/kTZTYRXB49N2hQm5BVFHof9agk7dFgS274KLYNlTqfVhq/nhjyqiPZr/s3xwjerhygqmg zsGecVwxCE60k/padvYZsUPo2aEKnZuXQvszz1Q== X-Google-Smtp-Source: AGHT+IELrqv6od6Y1UMuOFRW11e4By82rCyfuhkEsifDklmSEfyOhQgzUKiwMcxNelFkaYYPvRQwUpcpKrd6bVQ1xZU= X-Received: by 2002:a17:90a:5410:b0:2bd:dbfe:817d with SMTP id 98e67ed59e1d1-2c2bcc11a1cmr2595866a91.21.1717765867129; Fri, 07 Jun 2024 06:11:07 -0700 (PDT) MIME-Version: 1.0 References: <20240412111136.3470304-1-luca.vizzarro@arm.com> <20240606213420.254260-1-luca.vizzarro@arm.com> <20240606213420.254260-3-luca.vizzarro@arm.com> In-Reply-To: <20240606213420.254260-3-luca.vizzarro@arm.com> From: Jeremy Spewock Date: Fri, 7 Jun 2024 09:10:56 -0400 Message-ID: Subject: Re: [PATCH v5 2/5] dts: skip first line of send command output To: Luca Vizzarro Cc: dev@dpdk.org, =?UTF-8?Q?Juraj_Linke=C5=A1?= , Paul Szczepanek Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Thu, Jun 6, 2024 at 5:34=E2=80=AFPM Luca Vizzarro wrote: > > The first line of the InteractiveShell send_command method is generally > the command input field. This sometimes is unwanted, therefore this > commit enables the possibility of omitting the first line from the > returned output. > > Signed-off-by: Luca Vizzarro > Reviewed-by: Paul Szczepanek Reviewed-by: Jeremy Spewock