From: Tony Nguyen <anthony.l.nguyen@intel.com>
To: Miroslav Lichvar <mlichvar@redhat.com>,
<intel-wired-lan@lists.osuosl.org>
Cc: Matt Corallo <ntp-lists@mattcorallo.com>
Subject: Re: [Intel-wired-lan] [PATCH net-next] igb: Fix PPS input and output using 3rd and 4th SDP
Date: Thu, 2 Feb 2023 09:10:57 -0800 [thread overview]
Message-ID: <7654b674-1589-8e1f-338e-4556dc716f48@intel.com> (raw)
In-Reply-To: <20230201143643.2624559-1-mlichvar@redhat.com>
On 2/1/2023 6:36 AM, Miroslav Lichvar wrote:
> Fix handling of the tsync interrupt to compare the pin number with
> IGB_N_SDP instead of IGB_N_EXTTS/IGB_N_PEROUT and fix the indexing to
> the perout array.
>
> Fixes: cf99c1dd7b77 ("igb: move PEROUT and EXTTS isr logic to separate functions")
> Reported-by: Matt Corallo <ntp-lists@mattcorallo.com>
This is marked for net-next but with the fixes and reported-by, should
this be net?
Thanks,
Tony
> Cc: Jacob Keller <jacob.e.keller@intel.com>
> Signed-off-by: Miroslav Lichvar <mlichvar@redhat.com>
> ---
> The fix of PPS output was not tested.
>
> drivers/net/ethernet/intel/igb/igb_main.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
> index c56b991fa610..04f06b396e92 100644
> --- a/drivers/net/ethernet/intel/igb/igb_main.c
> +++ b/drivers/net/ethernet/intel/igb/igb_main.c
> @@ -6789,7 +6789,7 @@ static void igb_perout(struct igb_adapter *adapter, int tsintr_tt)
> struct timespec64 ts;
> u32 tsauxc;
>
> - if (pin < 0 || pin >= IGB_N_PEROUT)
> + if (pin < 0 || pin >= IGB_N_SDP)
> return;
>
> spin_lock(&adapter->tmreg_lock);
> @@ -6797,7 +6797,7 @@ static void igb_perout(struct igb_adapter *adapter, int tsintr_tt)
> if (hw->mac.type == e1000_82580 ||
> hw->mac.type == e1000_i354 ||
> hw->mac.type == e1000_i350) {
> - s64 ns = timespec64_to_ns(&adapter->perout[pin].period);
> + s64 ns = timespec64_to_ns(&adapter->perout[tsintr_tt].period);
> u32 systiml, systimh, level_mask, level, rem;
> u64 systim, now;
>
> @@ -6845,8 +6845,8 @@ static void igb_perout(struct igb_adapter *adapter, int tsintr_tt)
> ts.tv_nsec = (u32)systim;
> ts.tv_sec = ((u32)(systim >> 32)) & 0xFF;
> } else {
> - ts = timespec64_add(adapter->perout[pin].start,
> - adapter->perout[pin].period);
> + ts = timespec64_add(adapter->perout[tsintr_tt].start,
> + adapter->perout[tsintr_tt].period);
> }
>
> /* u32 conversion of tv_sec is safe until y2106 */
> @@ -6855,7 +6855,7 @@ static void igb_perout(struct igb_adapter *adapter, int tsintr_tt)
> tsauxc = rd32(E1000_TSAUXC);
> tsauxc |= TSAUXC_EN_TT0;
> wr32(E1000_TSAUXC, tsauxc);
> - adapter->perout[pin].start = ts;
> + adapter->perout[tsintr_tt].start = ts;
>
> spin_unlock(&adapter->tmreg_lock);
> }
> @@ -6869,7 +6869,7 @@ static void igb_extts(struct igb_adapter *adapter, int tsintr_tt)
> struct ptp_clock_event event;
> struct timespec64 ts;
>
> - if (pin < 0 || pin >= IGB_N_EXTTS)
> + if (pin < 0 || pin >= IGB_N_SDP)
> return;
>
> if (hw->mac.type == e1000_82580 ||
_______________________________________________
Intel-wired-lan mailing list
Intel-wired-lan@osuosl.org
https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
next prev parent reply other threads:[~2023-02-02 17:14 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-01 14:36 [Intel-wired-lan] [PATCH net-next] igb: Fix PPS input and output using 3rd and 4th SDP Miroslav Lichvar
2023-02-02 0:25 ` Jacob Keller
2023-02-02 17:10 ` Tony Nguyen [this message]
2023-02-02 17:34 ` Matt Corallo
2023-02-02 17:34 ` Miroslav Lichvar
2023-02-13 4:03 ` G, GurucharanX
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7654b674-1589-8e1f-338e-4556dc716f48@intel.com \
--to=anthony.l.nguyen@intel.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=mlichvar@redhat.com \
--cc=ntp-lists@mattcorallo.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox