Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Jun 2024 08:47:57 +0100
From:      Nuno Teixeira <eduardo@freebsd.org>
To:        Cy Schubert <Cy.Schubert@cschubert.com>
Cc:        Warner Losh <imp@freebsd.org>, src-committers@freebsd.org,  dev-commits-src-all@freebsd.org, dev-commits-src-main@freebsd.org
Subject:   Re: git: 108de784513d - main - Redefine CLOCK_BOOTTIME to alias CLOCK_MONOTONIC, not CLOCK_UPTIME
Message-ID:  <CAFDf7UKCwtabi7JYSXzv9=CvYYY%2B=b7V0mjuA2Vds-yNaLcE_Q@mail.gmail.com>
In-Reply-To: <20240601224055.6a6cac10@slippy>
References:  <202405311447.44VEl1G1078199@gitrepo.freebsd.org> <CAFDf7ULP1X_LgDOrKhMEFF7AgBQPPaJGhbRsaNcUpUOBo9JN9g@mail.gmail.com> <20240601224055.6a6cac10@slippy>

next in thread | previous in thread | raw e-mail | index | archive | help

[-- Attachment #1 --]
Hello!

Thank you for quick fix.

Cheers,

Cy Schubert <Cy.Schubert@cschubert.com> escreveu (domingo, 2/06/2024 à(s)
06:41):

> Hi eduardo@,
>
> Patches for mesa-dri, wpa-supplicant* and hostapd* have been pushed.
> These ports are no longer broken under the latest 15-CURRENT now.
>
> --
> Cheers,
> Cy Schubert <Cy.Schubert@cschubert.com>
> FreeBSD UNIX:  <cy@FreeBSD.org>   Web:  https://FreeBSD.org
> NTP:           <cy@nwtime.org>    Web:  https://nwtime.org
>
>                         e^(i*pi)+1=0
>
>
> On Sat, 1 Jun 2024 09:37:00 +0100
> Nuno Teixeira <eduardo@freebsd.org> wrote:
>
> > Hello,
> >
> > Having issues building graphics/mesa-dri:
> >
> > ../src/intel/common/xe/intel_gem.c:72:9: error: duplicate case value '4'
> >    72 |    case CLOCK_BOOTTIME:
> >       |         ^
> > /usr/include/sys/_clock_id.h:81:25: note: expanded from macro
> > 'CLOCK_BOOTTIME'
> >    81 | #define CLOCK_BOOTTIME          CLOCK_MONOTONIC
> >       |                                 ^
> > /usr/include/sys/_clock_id.h:56:26: note: expanded from macro
> > 'CLOCK_MONOTONIC'
> >    56 | #define CLOCK_MONOTONIC         4
> >       |                                 ^
> > ../src/intel/common/xe/intel_gem.c:66:9: note: previous case defined here
> >    66 |    case CLOCK_MONOTONIC:
> >       |         ^
> > /usr/include/sys/_clock_id.h:56:26: note: expanded from macro
> > 'CLOCK_MONOTONIC'
> >    56 | #define CLOCK_MONOTONIC         4
> >       |                                 ^
> > 1 error generated.
> >
> > Thanks
> >
> > Warner Losh <imp@freebsd.org> escreveu (sexta, 31/05/2024 à(s) 15:47):
> >
> > > The branch main has been updated by imp:
> > >
> > > URL:
> > >
> https://cgit.FreeBSD.org/src/commit/?id=108de784513d87bbe850e7b003a73e26b5b54caa
> > >
> > > commit 108de784513d87bbe850e7b003a73e26b5b54caa
> > > Author:     Val Packett <val@packett.cool>
> > > AuthorDate: 2024-05-31 14:45:02 +0000
> > > Commit:     Warner Losh <imp@FreeBSD.org>
> > > CommitDate: 2024-05-31 14:45:02 +0000
> > >
> > >     Redefine CLOCK_BOOTTIME to alias CLOCK_MONOTONIC, not CLOCK_UPTIME
> > >
> > >     The suspend-awareness situation with monotonic clocks across
> platforms
> > >     is kind of a mess, let's try not making it worse.
> > >
> > >     On Linux, CLOCK_MONOTONIC does NOT count suspended time, and
> > >     CLOCK_BOOTTIME was introduced to INCLUDE suspended time.
> > >
> > >     On OpenBSD, CLOCK_MONOTONIC DOES count suspended time, and
> CLOCK_UPTIME
> > >     was introduced to EXCLUDE suspended time.
> > >
> > >     On macOS, it's the same as OpenBSD, but with CLOCK_UPTIME_RAW.
> > >
> > >     Right now, we do not have a monotonic clock that counts suspended
> time.
> > >     We have CLOCK_UPTIME as a distinct ID alias, and CLOCK_BOOTTIME as
> a
> > >     preprocessor alias, both being effectively `CLOCK_MONOTONIC` for
> now.
> > >
> > >     When we introduce a suspend-aware clock in the future, it would
> make a
> > >     lot more sense to do it the OpenBSD/macOS way, i.e. to make
> > >     CLOCK_MONOTONIC include suspended time and make CLOCK_UPTIME
> exclude
> > > it,
> > >     because that's what the name CLOCK_UPTIME implies: a deviation
> from the
> > >     default intended for the uptime command to allow it to only show
> the
> > >     time the system was actually up and not suspended.
> > >
> > >     Let's change the define right now to make sure software using the
> > > define
> > >     would not end up using the ID of the wrong clock in the future,
> and fix
> > >     the IDs in the Linux compat code to match the expected changes too.
> > >
> > >     See https://bugzilla.mozilla.org/show_bug.cgi?id=1824084
> > >     for more discussion.
> > >
> > >     Fixes:          155f15118a77 ("clock_gettime: Add Linux aliases for
> > > CLOCK_*")
> > >     Fixes:          25ada637362d ("Map Linux CLOCK_BOOTTIME to native
> > > CLOCK_UPTIME.")
> > >     Sponsored by:   https://www.patreon.com/valpackett
> > >     Reviewed by:    kib, imp
> > >     Differential Revision:  https://reviews.freebsd.org/D39270
> > > ---
> > >  sys/compat/linux/linux_time.c | 6 +++---
> > >  sys/sys/_clock_id.h           | 2 +-
> > >  2 files changed, 4 insertions(+), 4 deletions(-)
> > >
> > > diff --git a/sys/compat/linux/linux_time.c
> b/sys/compat/linux/linux_time.c
> > > index e9e5cf075210..f4dd26dd3d2a 100644
> > > --- a/sys/compat/linux/linux_time.c
> > > +++ b/sys/compat/linux/linux_time.c
> > > @@ -287,7 +287,7 @@ linux_to_native_clockid(clockid_t *n, clockid_t l)
> > >                 *n = CLOCK_REALTIME;
> > >                 break;
> > >         case LINUX_CLOCK_MONOTONIC:
> > > -               *n = CLOCK_MONOTONIC;
> > > +               *n = CLOCK_UPTIME;
> > >                 break;
> > >         case LINUX_CLOCK_PROCESS_CPUTIME_ID:
> > >                 *n = CLOCK_PROCESS_CPUTIME_ID;
> > > @@ -300,10 +300,10 @@ linux_to_native_clockid(clockid_t *n, clockid_t
> l)
> > >                 break;
> > >         case LINUX_CLOCK_MONOTONIC_COARSE:
> > >         case LINUX_CLOCK_MONOTONIC_RAW:
> > > -               *n = CLOCK_MONOTONIC_FAST;
> > > +               *n = CLOCK_UPTIME_FAST;
> > >                 break;
> > >         case LINUX_CLOCK_BOOTTIME:
> > > -               *n = CLOCK_UPTIME;
> > > +               *n = CLOCK_MONOTONIC;
> > >                 break;
> > >         case LINUX_CLOCK_REALTIME_ALARM:
> > >         case LINUX_CLOCK_BOOTTIME_ALARM:
> > > diff --git a/sys/sys/_clock_id.h b/sys/sys/_clock_id.h
> > > index 47a551428dc3..728346a0f0ab 100644
> > > --- a/sys/sys/_clock_id.h
> > > +++ b/sys/sys/_clock_id.h
> > > @@ -78,7 +78,7 @@
> > >   * Linux compatible names.
> > >   */
> > >  #if __BSD_VISIBLE
> > > -#define        CLOCK_BOOTTIME          CLOCK_UPTIME
> > > +#define        CLOCK_BOOTTIME          CLOCK_MONOTONIC
> > >  #define        CLOCK_REALTIME_COARSE   CLOCK_REALTIME_FAST
> > >  #define        CLOCK_MONOTONIC_COARSE  CLOCK_MONOTONIC_FAST
> > >  #endif
> > >
> > >
> >
>
>

-- 
Nuno Teixeira
FreeBSD UNIX:  <eduardo@FreeBSD.org>   Web:  https://FreeBSD.org

[-- Attachment #2 --]
<div dir="ltr"><div>Hello!</div><div><br></div><div>Thank you for quick fix.</div><div><br></div><div>Cheers,<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Cy Schubert &lt;<a href="mailto:Cy.Schubert@cschubert.com">Cy.Schubert@cschubert.com</a>&gt; escreveu (domingo, 2/06/2024 à(s) 06:41):<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi eduardo@,<br>
<br>
Patches for mesa-dri, wpa-supplicant* and hostapd* have been pushed.<br>
These ports are no longer broken under the latest 15-CURRENT now.<br>
<br>
-- <br>
Cheers,<br>
Cy Schubert &lt;<a href="mailto:Cy.Schubert@cschubert.com" target="_blank">Cy.Schubert@cschubert.com</a>&gt;<br>
FreeBSD UNIX:  &lt;cy@FreeBSD.org&gt;   Web:  <a href="https://FreeBSD.org" rel="noreferrer" target="_blank">https://FreeBSD.org</a><br>;
NTP:           &lt;<a href="mailto:cy@nwtime.org" target="_blank">cy@nwtime.org</a>&gt;    Web:  <a href="https://nwtime.org" rel="noreferrer" target="_blank">https://nwtime.org</a><br>;
<br>
                        e^(i*pi)+1=0<br>
<br>
<br>
On Sat, 1 Jun 2024 09:37:00 +0100<br>
Nuno Teixeira &lt;<a href="mailto:eduardo@freebsd.org" target="_blank">eduardo@freebsd.org</a>&gt; wrote:<br>
<br>
&gt; Hello,<br>
&gt; <br>
&gt; Having issues building graphics/mesa-dri:<br>
&gt; <br>
&gt; ../src/intel/common/xe/intel_gem.c:72:9: error: duplicate case value &#39;4&#39;<br>
&gt;    72 |    case CLOCK_BOOTTIME:<br>
&gt;       |         ^<br>
&gt; /usr/include/sys/_clock_id.h:81:25: note: expanded from macro<br>
&gt; &#39;CLOCK_BOOTTIME&#39;<br>
&gt;    81 | #define CLOCK_BOOTTIME          CLOCK_MONOTONIC<br>
&gt;       |                                 ^<br>
&gt; /usr/include/sys/_clock_id.h:56:26: note: expanded from macro<br>
&gt; &#39;CLOCK_MONOTONIC&#39;<br>
&gt;    56 | #define CLOCK_MONOTONIC         4<br>
&gt;       |                                 ^<br>
&gt; ../src/intel/common/xe/intel_gem.c:66:9: note: previous case defined here<br>
&gt;    66 |    case CLOCK_MONOTONIC:<br>
&gt;       |         ^<br>
&gt; /usr/include/sys/_clock_id.h:56:26: note: expanded from macro<br>
&gt; &#39;CLOCK_MONOTONIC&#39;<br>
&gt;    56 | #define CLOCK_MONOTONIC         4<br>
&gt;       |                                 ^<br>
&gt; 1 error generated.<br>
&gt; <br>
&gt; Thanks<br>
&gt; <br>
&gt; Warner Losh &lt;<a href="mailto:imp@freebsd.org" target="_blank">imp@freebsd.org</a>&gt; escreveu (sexta, 31/05/2024 à(s) 15:47):<br>
&gt; <br>
&gt; &gt; The branch main has been updated by imp:<br>
&gt; &gt;<br>
&gt; &gt; URL:<br>
&gt; &gt; <a href="https://cgit.FreeBSD.org/src/commit/?id=108de784513d87bbe850e7b003a73e26b5b54caa" rel="noreferrer" target="_blank">https://cgit.FreeBSD.org/src/commit/?id=108de784513d87bbe850e7b003a73e26b5b54caa</a><br>;
&gt; &gt;<br>
&gt; &gt; commit 108de784513d87bbe850e7b003a73e26b5b54caa<br>
&gt; &gt; Author:     Val Packett &lt;val@packett.cool&gt;<br>
&gt; &gt; AuthorDate: 2024-05-31 14:45:02 +0000<br>
&gt; &gt; Commit:     Warner Losh &lt;imp@FreeBSD.org&gt;<br>
&gt; &gt; CommitDate: 2024-05-31 14:45:02 +0000<br>
&gt; &gt;<br>
&gt; &gt;     Redefine CLOCK_BOOTTIME to alias CLOCK_MONOTONIC, not CLOCK_UPTIME<br>
&gt; &gt;<br>
&gt; &gt;     The suspend-awareness situation with monotonic clocks across platforms<br>
&gt; &gt;     is kind of a mess, let&#39;s try not making it worse.<br>
&gt; &gt;<br>
&gt; &gt;     On Linux, CLOCK_MONOTONIC does NOT count suspended time, and<br>
&gt; &gt;     CLOCK_BOOTTIME was introduced to INCLUDE suspended time.<br>
&gt; &gt;<br>
&gt; &gt;     On OpenBSD, CLOCK_MONOTONIC DOES count suspended time, and CLOCK_UPTIME<br>
&gt; &gt;     was introduced to EXCLUDE suspended time.<br>
&gt; &gt;<br>
&gt; &gt;     On macOS, it&#39;s the same as OpenBSD, but with CLOCK_UPTIME_RAW.<br>
&gt; &gt;<br>
&gt; &gt;     Right now, we do not have a monotonic clock that counts suspended time.<br>
&gt; &gt;     We have CLOCK_UPTIME as a distinct ID alias, and CLOCK_BOOTTIME as a<br>
&gt; &gt;     preprocessor alias, both being effectively `CLOCK_MONOTONIC` for now.<br>
&gt; &gt;<br>
&gt; &gt;     When we introduce a suspend-aware clock in the future, it would make a<br>
&gt; &gt;     lot more sense to do it the OpenBSD/macOS way, i.e. to make<br>
&gt; &gt;     CLOCK_MONOTONIC include suspended time and make CLOCK_UPTIME exclude<br>
&gt; &gt; it,<br>
&gt; &gt;     because that&#39;s what the name CLOCK_UPTIME implies: a deviation from the<br>
&gt; &gt;     default intended for the uptime command to allow it to only show the<br>
&gt; &gt;     time the system was actually up and not suspended.<br>
&gt; &gt;<br>
&gt; &gt;     Let&#39;s change the define right now to make sure software using the<br>
&gt; &gt; define<br>
&gt; &gt;     would not end up using the ID of the wrong clock in the future, and fix<br>
&gt; &gt;     the IDs in the Linux compat code to match the expected changes too.<br>
&gt; &gt;<br>
&gt; &gt;     See <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1824084" rel="noreferrer" target="_blank">https://bugzilla.mozilla.org/show_bug.cgi?id=1824084</a><br>;
&gt; &gt;     for more discussion.<br>
&gt; &gt;<br>
&gt; &gt;     Fixes:          155f15118a77 (&quot;clock_gettime: Add Linux aliases for<br>
&gt; &gt; CLOCK_*&quot;)<br>
&gt; &gt;     Fixes:          25ada637362d (&quot;Map Linux CLOCK_BOOTTIME to native<br>
&gt; &gt; CLOCK_UPTIME.&quot;)<br>
&gt; &gt;     Sponsored by:   <a href="https://www.patreon.com/valpackett" rel="noreferrer" target="_blank">https://www.patreon.com/valpackett</a><br>;
&gt; &gt;     Reviewed by:    kib, imp<br>
&gt; &gt;     Differential Revision:  <a href="https://reviews.freebsd.org/D39270" rel="noreferrer" target="_blank">https://reviews.freebsd.org/D39270</a><br>;
&gt; &gt; ---<br>
&gt; &gt;  sys/compat/linux/linux_time.c | 6 +++---<br>
&gt; &gt;  sys/sys/_clock_id.h           | 2 +-<br>
&gt; &gt;  2 files changed, 4 insertions(+), 4 deletions(-)<br>
&gt; &gt;<br>
&gt; &gt; diff --git a/sys/compat/linux/linux_time.c b/sys/compat/linux/linux_time.c<br>
&gt; &gt; index e9e5cf075210..f4dd26dd3d2a 100644<br>
&gt; &gt; --- a/sys/compat/linux/linux_time.c<br>
&gt; &gt; +++ b/sys/compat/linux/linux_time.c<br>
&gt; &gt; @@ -287,7 +287,7 @@ linux_to_native_clockid(clockid_t *n, clockid_t l)<br>
&gt; &gt;                 *n = CLOCK_REALTIME;<br>
&gt; &gt;                 break;<br>
&gt; &gt;         case LINUX_CLOCK_MONOTONIC:<br>
&gt; &gt; -               *n = CLOCK_MONOTONIC;<br>
&gt; &gt; +               *n = CLOCK_UPTIME;<br>
&gt; &gt;                 break;<br>
&gt; &gt;         case LINUX_CLOCK_PROCESS_CPUTIME_ID:<br>
&gt; &gt;                 *n = CLOCK_PROCESS_CPUTIME_ID;<br>
&gt; &gt; @@ -300,10 +300,10 @@ linux_to_native_clockid(clockid_t *n, clockid_t l)<br>
&gt; &gt;                 break;<br>
&gt; &gt;         case LINUX_CLOCK_MONOTONIC_COARSE:<br>
&gt; &gt;         case LINUX_CLOCK_MONOTONIC_RAW:<br>
&gt; &gt; -               *n = CLOCK_MONOTONIC_FAST;<br>
&gt; &gt; +               *n = CLOCK_UPTIME_FAST;<br>
&gt; &gt;                 break;<br>
&gt; &gt;         case LINUX_CLOCK_BOOTTIME:<br>
&gt; &gt; -               *n = CLOCK_UPTIME;<br>
&gt; &gt; +               *n = CLOCK_MONOTONIC;<br>
&gt; &gt;                 break;<br>
&gt; &gt;         case LINUX_CLOCK_REALTIME_ALARM:<br>
&gt; &gt;         case LINUX_CLOCK_BOOTTIME_ALARM:<br>
&gt; &gt; diff --git a/sys/sys/_clock_id.h b/sys/sys/_clock_id.h<br>
&gt; &gt; index 47a551428dc3..728346a0f0ab 100644<br>
&gt; &gt; --- a/sys/sys/_clock_id.h<br>
&gt; &gt; +++ b/sys/sys/_clock_id.h<br>
&gt; &gt; @@ -78,7 +78,7 @@<br>
&gt; &gt;   * Linux compatible names.<br>
&gt; &gt;   */<br>
&gt; &gt;  #if __BSD_VISIBLE<br>
&gt; &gt; -#define        CLOCK_BOOTTIME          CLOCK_UPTIME<br>
&gt; &gt; +#define        CLOCK_BOOTTIME          CLOCK_MONOTONIC<br>
&gt; &gt;  #define        CLOCK_REALTIME_COARSE   CLOCK_REALTIME_FAST<br>
&gt; &gt;  #define        CLOCK_MONOTONIC_COARSE  CLOCK_MONOTONIC_FAST<br>
&gt; &gt;  #endif<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; <br>
<br>
</blockquote></div><br clear="all"><br><span class="gmail_signature_prefix">-- </span><br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><font color="#888888">Nuno Teixeira</font></div><div><div><font color="#888888">
FreeBSD UNIX:  &lt;eduardo@FreeBSD.org&gt;   Web:  <a href="https://FreeBSD.org" rel="noreferrer" target="_blank">https://FreeBSD.org</a><br></font></div></div></div></div>;

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAFDf7UKCwtabi7JYSXzv9=CvYYY%2B=b7V0mjuA2Vds-yNaLcE_Q>