Re: [PATCHv1 next] ptp: update gettimex64 to provide ts optionally in mono-raw base.

From: Mahesh Bandewar (महेश बंडेवार)
Date: Thu Apr 18 2024 - 00:25:51 EST


On Wed, Apr 17, 2024 at 6:24 PM Jakub Kicinski <kuba@xxxxxxxxxx> wrote:
>
> On Tue, 16 Apr 2024 14:59:42 -0700 Mahesh Bandewar wrote:
> > if (extoff->n_samples > PTP_MAX_SAMPLES
> > - || extoff->rsv[0] || extoff->rsv[1] || extoff->rsv[2]) {
> > + || extoff->rsv[0] || extoff->rsv[1]
> > + || (extoff->clockid != CLOCK_REALTIME
> > + && extoff->clockid != CLOCK_MONOTONIC_RAW)) {
>
> Since you're touching this condition it's probably a good opportunity
> to fox the coding style.
will do! I was just matching the existing style.