From mboxrd@z Thu Jan 1 00:00:00 1970 From: Giuseppe CAVALLARO Subject: Re: [PATCH (net.git) 2/3] stmmac: fix PTP support for GMAC4 Date: Thu, 27 Oct 2016 12:32:46 +0200 Message-ID: <743ffe4a-2c8f-e5f7-f93c-6be16a8a0350@st.com> References: <1477464964-5960-1-git-send-email-peppe.cavallaro@st.com> <1477464964-5960-3-git-send-email-peppe.cavallaro@st.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Cc: netdev , , Richard Cochran , , To: Rayagond Kokatanur Return-path: Received: from mx08-00178001.pphosted.com ([91.207.212.93]:55136 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S941951AbcJ0OnI (ORCPT ); Thu, 27 Oct 2016 10:43:08 -0400 In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: Hello Rayagond ! On 10/27/2016 12:25 PM, Rayagond Kokatanur wrote: >> +static int dwmac4_wrback_get_rx_timestamp_status(void *desc, u32 ats) >> > { >> > struct dma_desc *p = (struct dma_desc *)desc; >> > + int ret = -EINVAL; >> > + >> > + /* Get the status from normal w/b descriptor */ >> > + if (likely(p->des3 & TDES3_RS1V)) { >> > + if (likely(p->des1 & RDES1_TIMESTAMP_AVAILABLE)) { >> > + int i = 0; >> > + >> > + /* Check if timestamp is OK from context descriptor */ >> > + do { >> > + ret = dwmac4_rx_check_timestamp(desc); > Here, "desc" is not pointing to next descriptor (ie context > descriptor). Driver should check the context descriptor. you are right and this is done by the caller: stmmac_get_rx_hwtstamp Cheers peppe