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 AD77CA0C52; Wed, 24 Nov 2021 14:52:54 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9F3B742701; Wed, 24 Nov 2021 14:52:54 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 90E3542700 for ; Wed, 24 Nov 2021 14:52:53 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1637761973; 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=q1SbhIFwmWXyW/czSVAUE/t+/GOszDn7AZma6QxtiTY=; b=KYTAABWEUVqGYvLJkmSaLH0GenwdMMlFtmO+DMrrTybyVFeku+sb5hO+5Kidf4/Du/Kdki h+I4Lw9vbqqJmkCk1Tb+aPUYKocX0ZRSCAYL7qZPENJW1GDdj1K0ufkZFJ0kI0guue969W KYg5bvkZAwRHTYW3nerj9WNEf1qogcs= Received: from mail-lf1-f71.google.com (mail-lf1-f71.google.com [209.85.167.71]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-169-Y3po3AGcMZiFUdze3HZgWw-1; Wed, 24 Nov 2021 08:52:47 -0500 X-MC-Unique: Y3po3AGcMZiFUdze3HZgWw-1 Received: by mail-lf1-f71.google.com with SMTP id b23-20020a0565120b9700b00403a044bfcdso1428161lfv.13 for ; Wed, 24 Nov 2021 05:52:47 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=q1SbhIFwmWXyW/czSVAUE/t+/GOszDn7AZma6QxtiTY=; b=5HSaXTLryJFZlsGZ8gY5k7Bj8dsPGUH0ALqQOaeCj0WUiwKWKs5QOBHMjckbbGGsnP nVGwRbYFYHmBlUvvDSxGrGti/GWYJF8piWQVvDPjJezXs8UWsjxy0eiZG+dsa5h6LU8G SOUIZFSi1I5C443XOhLH/KdkkOvFB+7AyTZtGHyPmi9QC1oyh7kDluFiuBSmD6D2xLDn CpbGCm4sBEz9w9ZRskPCkIQ70MlttPxtSpug4yjL7OjOzTs5gvV6PPw96ASakM8tyRQx iLeYQ78f1o9eTzvH3Yh788H3C442dVx8zq2brwaJSHM/7KghmKWFzkmxXhZf4OlU4sFF /Cfg== X-Gm-Message-State: AOAM530j9Yzh96H2za4m1+KMsesGwcn7ev7STVvnL2v60yeH2ZgH1iu4 8hPQ3uewsqYJ01XwXW1SvQxyGpCXpc1sexOfdSMViLKmY6qnjVh0VwreE/9XU2uymmfMZiCp4Sv +1HSy2TbfzdHbeUdR9Ow= X-Received: by 2002:a2e:a410:: with SMTP id p16mr16060629ljn.81.1637761965812; Wed, 24 Nov 2021 05:52:45 -0800 (PST) X-Google-Smtp-Source: ABdhPJyVLLW9DAn3anQrFMmkih8+MDGvz5p+83U6N79Pqa4U1ot81+Eu46PFOLe13C4Rb1r8ZpI4p5n8Q44+7pA1UX4= X-Received: by 2002:a2e:a410:: with SMTP id p16mr16060600ljn.81.1637761965640; Wed, 24 Nov 2021 05:52:45 -0800 (PST) MIME-Version: 1.0 References: <20211117061853.20979-1-vanshika.shukla@nxp.com> <20211122073122.10052-1-vanshika.shukla@nxp.com> In-Reply-To: <20211122073122.10052-1-vanshika.shukla@nxp.com> From: David Marchand Date: Wed, 24 Nov 2021 14:52:34 +0100 Message-ID: Subject: Re: [PATCH v2] examples/ptpclient: fix delay request message To: Vanshika Shukla , Kirill Rybalchenko Cc: dev , Thomas Monjalon , Nipun Gupta , dpdk stable Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" 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 Mon, Nov 22, 2021 at 8:31 AM wrote: > The size of delay request message sent out by the DPDK > ptpclient application was observed to have extra length > than expected. Due to this, bad messages were observed > on the master side and delay response was not received. > This patch fixes this bug. > > Fixes: ab129e9065a5 ("examples/ptpclient: add minimal PTP client") > Cc: stable@dpdk.org > > Signed-off-by: Vanshika Shukla Please copy relevant maintainers in addition to your colleagues. You can use get-maintainer.sh script for this. This fix lgtm. Acked-by: Nipun Gupta Applied, thanks. -- David Marchand