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 A3A5A44177; Thu, 6 Jun 2024 20:52:45 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2386541141; Thu, 6 Jun 2024 20:52:45 +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 50C234027F for ; Thu, 6 Jun 2024 20:52:43 +0200 (CEST) Received: by mail-pj1-f47.google.com with SMTP id 98e67ed59e1d1-2c2999f969aso1217068a91.0 for ; Thu, 06 Jun 2024 11:52:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1717699962; x=1718304762; 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=m5lhdYMX3NbvPrzIANiKgrbRBPfeYAgWWlu777J1sXg=; b=EfLf9ZfkWt7O3qCSdXTWCyPCcRnk4ND6FAgPxtEs5Pwt4YVoMa0PtKwpQXCDKPO8P/ 0VJo51dt4Dwy/J7xYeCbnHXsjB6hm7gSERFyECqG7QY6s2bnEZO3qQEW8A4+9by9ysL/ IYKXGLeihbiIoDOWhkoLLTUlCJP/eebNZ8cPM= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1717699962; x=1718304762; 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=m5lhdYMX3NbvPrzIANiKgrbRBPfeYAgWWlu777J1sXg=; b=OkBA0y+4pYWeL0d8cRGlQxG4Fl80OuQ0o6APoVyy1DP7J8EdBE68Ee+TSW7USMqZH+ uDaVHrzbbmuf8I1H4T6Iz8RE96MMRLMYQyfo6aOk9c+AA4QiXMKMWQ8CcN/8k8++gc95 tiQOz8/+3jWFAR6uByvYpswrVrBU+gXTu+APD12BdAdSBq3T8jbmAdhEs9wTKS6qDlKx AuZyQw08x2Aol0IwNDXcK6LCU9kOQbJWI311Dd5eKsehREIiDynTmbugfZkyOTN2Gwxr XUJ5YwZ4SaWax1OI11zxWGk+IcCjsfEvORW19h01xU1FxVS2aaMaXVMM0apjesKIrc72 LhSw== X-Gm-Message-State: AOJu0YxELFWMiQYlFUuYYUU2zNZC9STHMmx8DJU2Bh69ait8yFgYBD0H LNEYcv+eO+HHRLa2xYKjTr+xMmJcMd1euNe7XZ0lJxOJbqfieZZnhHqtXwHDxukk4GZ8o45jyO8 Jisn+FmdWzRrbBJyzo7O1vG1SqQ6HB004Y86tUw== X-Google-Smtp-Source: AGHT+IFpbQt3+l9tQJrQMmxc5xlLLzujBSQStUFpE0L5pgmFGOHoVdP/g2QipRFce/O7Yea3YbzAW5urqiIW9RDVrVY= X-Received: by 2002:a17:90a:c2:b0:2c2:4106:86c9 with SMTP id 98e67ed59e1d1-2c2bcc86ca4mr368906a91.43.1717699962432; Thu, 06 Jun 2024 11:52:42 -0700 (PDT) MIME-Version: 1.0 References: <20240412111136.3470304-1-luca.vizzarro@arm.com> <20240606091718.151516-1-luca.vizzarro@arm.com> <20240606091718.151516-3-luca.vizzarro@arm.com> In-Reply-To: <20240606091718.151516-3-luca.vizzarro@arm.com> From: Jeremy Spewock Date: Thu, 6 Jun 2024 14:52:31 -0400 Message-ID: Subject: Re: [PATCH v4 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:17=E2=80=AFAM 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