* [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
@ 2025-08-28 15:42 Thomas Hellström
2025-08-28 15:59 ` Matthew Auld
2025-08-29 7:42 ` Maarten Lankhorst
0 siblings, 2 replies; 8+ messages in thread
From: Thomas Hellström @ 2025-08-28 15:42 UTC (permalink / raw)
To: intel-xe; +Cc: Thomas Hellström, Matthew Brost, Matthew Auld, stable
VRAM+TT bos that are evicted from VRAM to TT may remain in
TT also after a revalidation following eviction or suspend.
This manifests itself as applications becoming sluggish
after buffer objects get evicted or after a resume from
suspend or hibernation.
If the bo supports placement in both VRAM and TT, and
we are on DGFX, mark the TT placement as fallback. This means
that it is tried only after VRAM + eviction.
This flaw has probably been present since the xe module was
upstreamed but use a Fixes: commit below where backporting is
likely to be simple. For earlier versions we need to open-
code the fallback algorithm in the driver.
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags v6")
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: <stable@vger.kernel.org> # v6.9+
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
drivers/gpu/drm/xe/xe_bo.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 4faf15d5fa6d..64dea4e478bd 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -188,6 +188,8 @@ static void try_add_system(struct xe_device *xe, struct xe_bo *bo,
bo->placements[*c] = (struct ttm_place) {
.mem_type = XE_PL_TT,
+ .flags = (IS_DGFX(xe) && (bo_flags & XE_BO_FLAG_VRAM_MASK)) ?
+ TTM_PL_FLAG_FALLBACK : 0,
};
*c += 1;
}
--
2.50.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 15:42 [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction Thomas Hellström
@ 2025-08-28 15:59 ` Matthew Auld
2025-08-28 16:06 ` Thomas Hellström
2025-08-29 7:42 ` Maarten Lankhorst
1 sibling, 1 reply; 8+ messages in thread
From: Matthew Auld @ 2025-08-28 15:59 UTC (permalink / raw)
To: Thomas Hellström, intel-xe; +Cc: Matthew Brost, stable
On 28/08/2025 16:42, Thomas Hellström wrote:
> VRAM+TT bos that are evicted from VRAM to TT may remain in
> TT also after a revalidation following eviction or suspend.
>
> This manifests itself as applications becoming sluggish
> after buffer objects get evicted or after a resume from
> suspend or hibernation.
>
> If the bo supports placement in both VRAM and TT, and
> we are on DGFX, mark the TT placement as fallback. This means
> that it is tried only after VRAM + eviction.
>
> This flaw has probably been present since the xe module was
> upstreamed but use a Fixes: commit below where backporting is
> likely to be simple. For earlier versions we need to open-
> code the fallback algorithm in the driver.
>
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
> Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags v6")
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: <stable@vger.kernel.org> # v6.9+
> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
> drivers/gpu/drm/xe/xe_bo.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
> index 4faf15d5fa6d..64dea4e478bd 100644
> --- a/drivers/gpu/drm/xe/xe_bo.c
> +++ b/drivers/gpu/drm/xe/xe_bo.c
> @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device *xe, struct xe_bo *bo,
>
> bo->placements[*c] = (struct ttm_place) {
> .mem_type = XE_PL_TT,
> + .flags = (IS_DGFX(xe) && (bo_flags & XE_BO_FLAG_VRAM_MASK)) ?
I suppose we could drop the dgfx check here?
Either way,
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> + TTM_PL_FLAG_FALLBACK : 0,
> };
> *c += 1;
> }
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 15:59 ` Matthew Auld
@ 2025-08-28 16:06 ` Thomas Hellström
2025-08-28 16:27 ` Matthew Auld
0 siblings, 1 reply; 8+ messages in thread
From: Thomas Hellström @ 2025-08-28 16:06 UTC (permalink / raw)
To: Matthew Auld, intel-xe; +Cc: Matthew Brost, stable
Hi,
On Thu, 2025-08-28 at 16:59 +0100, Matthew Auld wrote:
> On 28/08/2025 16:42, Thomas Hellström wrote:
> > VRAM+TT bos that are evicted from VRAM to TT may remain in
> > TT also after a revalidation following eviction or suspend.
> >
> > This manifests itself as applications becoming sluggish
> > after buffer objects get evicted or after a resume from
> > suspend or hibernation.
> >
> > If the bo supports placement in both VRAM and TT, and
> > we are on DGFX, mark the TT placement as fallback. This means
> > that it is tried only after VRAM + eviction.
> >
> > This flaw has probably been present since the xe module was
> > upstreamed but use a Fixes: commit below where backporting is
> > likely to be simple. For earlier versions we need to open-
> > code the fallback algorithm in the driver.
> >
> > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
> > Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags
> > v6")
> > Cc: Matthew Brost <matthew.brost@intel.com>
> > Cc: Matthew Auld <matthew.auld@intel.com>
> > Cc: <stable@vger.kernel.org> # v6.9+
> > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_bo.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_bo.c
> > b/drivers/gpu/drm/xe/xe_bo.c
> > index 4faf15d5fa6d..64dea4e478bd 100644
> > --- a/drivers/gpu/drm/xe/xe_bo.c
> > +++ b/drivers/gpu/drm/xe/xe_bo.c
> > @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device
> > *xe, struct xe_bo *bo,
> >
> > bo->placements[*c] = (struct ttm_place) {
> > .mem_type = XE_PL_TT,
> > + .flags = (IS_DGFX(xe) && (bo_flags &
> > XE_BO_FLAG_VRAM_MASK)) ?
>
> I suppose we could drop the dgfx check here?
Thanks for reviewing. From a quick look it looks like the VRAM_MASK
bits can be set also on IGFX? And if so, then it's not ideal to mark
the primary placement as FALLBACK. But I might have missed a rejection
somewhere.
/Thomas
>
> Either way,
> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
>
> > + TTM_PL_FLAG_FALLBACK : 0,
> > };
> > *c += 1;
> > }
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 16:06 ` Thomas Hellström
@ 2025-08-28 16:27 ` Matthew Auld
2025-08-28 18:06 ` Thomas Hellström
0 siblings, 1 reply; 8+ messages in thread
From: Matthew Auld @ 2025-08-28 16:27 UTC (permalink / raw)
To: Thomas Hellström, intel-xe; +Cc: Matthew Brost, stable
On 28/08/2025 17:06, Thomas Hellström wrote:
> Hi,
>
> On Thu, 2025-08-28 at 16:59 +0100, Matthew Auld wrote:
>> On 28/08/2025 16:42, Thomas Hellström wrote:
>>> VRAM+TT bos that are evicted from VRAM to TT may remain in
>>> TT also after a revalidation following eviction or suspend.
>>>
>>> This manifests itself as applications becoming sluggish
>>> after buffer objects get evicted or after a resume from
>>> suspend or hibernation.
>>>
>>> If the bo supports placement in both VRAM and TT, and
>>> we are on DGFX, mark the TT placement as fallback. This means
>>> that it is tried only after VRAM + eviction.
>>>
>>> This flaw has probably been present since the xe module was
>>> upstreamed but use a Fixes: commit below where backporting is
>>> likely to be simple. For earlier versions we need to open-
>>> code the fallback algorithm in the driver.
>>>
>>> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
>>> Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags
>>> v6")
>>> Cc: Matthew Brost <matthew.brost@intel.com>
>>> Cc: Matthew Auld <matthew.auld@intel.com>
>>> Cc: <stable@vger.kernel.org> # v6.9+
>>> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>>> ---
>>> drivers/gpu/drm/xe/xe_bo.c | 2 ++
>>> 1 file changed, 2 insertions(+)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_bo.c
>>> b/drivers/gpu/drm/xe/xe_bo.c
>>> index 4faf15d5fa6d..64dea4e478bd 100644
>>> --- a/drivers/gpu/drm/xe/xe_bo.c
>>> +++ b/drivers/gpu/drm/xe/xe_bo.c
>>> @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device
>>> *xe, struct xe_bo *bo,
>>>
>>> bo->placements[*c] = (struct ttm_place) {
>>> .mem_type = XE_PL_TT,
>>> + .flags = (IS_DGFX(xe) && (bo_flags &
>>> XE_BO_FLAG_VRAM_MASK)) ?
>>
>> I suppose we could drop the dgfx check here?
>
> Thanks for reviewing. From a quick look it looks like the VRAM_MASK
> bits can be set also on IGFX? And if so, then it's not ideal to mark
> the primary placement as FALLBACK. But I might have missed a rejection
> somewhere.
I was sweating bullets for a second there, but it looks like it gets
rejected in the ioctl with:
if (XE_IOCTL_DBG(xe, (args->placement & ~xe->info.mem_region_mask)
return -EINVAL;
The flags get converted from the args->placement, and VRAM should never
appear in the mem_region_mask on igpu. If we allowed it I think it would
crash in add_vram() since the vram manager does not exist so
ttm_manager_type() would be NULL, AFAICT.
>
> /Thomas
>
>
>>
>> Either way,
>> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
>>
>>> + TTM_PL_FLAG_FALLBACK : 0,
>>> };
>>> *c += 1;
>>> }
>>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 16:27 ` Matthew Auld
@ 2025-08-28 18:06 ` Thomas Hellström
0 siblings, 0 replies; 8+ messages in thread
From: Thomas Hellström @ 2025-08-28 18:06 UTC (permalink / raw)
To: Matthew Auld, intel-xe; +Cc: Matthew Brost, stable
On Thu, 2025-08-28 at 17:27 +0100, Matthew Auld wrote:
> On 28/08/2025 17:06, Thomas Hellström wrote:
> > Hi,
> >
> > On Thu, 2025-08-28 at 16:59 +0100, Matthew Auld wrote:
> > > On 28/08/2025 16:42, Thomas Hellström wrote:
> > > > VRAM+TT bos that are evicted from VRAM to TT may remain in
> > > > TT also after a revalidation following eviction or suspend.
> > > >
> > > > This manifests itself as applications becoming sluggish
> > > > after buffer objects get evicted or after a resume from
> > > > suspend or hibernation.
> > > >
> > > > If the bo supports placement in both VRAM and TT, and
> > > > we are on DGFX, mark the TT placement as fallback. This means
> > > > that it is tried only after VRAM + eviction.
> > > >
> > > > This flaw has probably been present since the xe module was
> > > > upstreamed but use a Fixes: commit below where backporting is
> > > > likely to be simple. For earlier versions we need to open-
> > > > code the fallback algorithm in the driver.
> > > >
> > > > Closes:
> > > > https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
> > > > Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with
> > > > flags
> > > > v6")
> > > > Cc: Matthew Brost <matthew.brost@intel.com>
> > > > Cc: Matthew Auld <matthew.auld@intel.com>
> > > > Cc: <stable@vger.kernel.org> # v6.9+
> > > > Signed-off-by: Thomas Hellström
> > > > <thomas.hellstrom@linux.intel.com>
> > > > ---
> > > > drivers/gpu/drm/xe/xe_bo.c | 2 ++
> > > > 1 file changed, 2 insertions(+)
> > > >
> > > > diff --git a/drivers/gpu/drm/xe/xe_bo.c
> > > > b/drivers/gpu/drm/xe/xe_bo.c
> > > > index 4faf15d5fa6d..64dea4e478bd 100644
> > > > --- a/drivers/gpu/drm/xe/xe_bo.c
> > > > +++ b/drivers/gpu/drm/xe/xe_bo.c
> > > > @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device
> > > > *xe, struct xe_bo *bo,
> > > >
> > > > bo->placements[*c] = (struct ttm_place) {
> > > > .mem_type = XE_PL_TT,
> > > > + .flags = (IS_DGFX(xe) && (bo_flags &
> > > > XE_BO_FLAG_VRAM_MASK)) ?
> > >
> > > I suppose we could drop the dgfx check here?
> >
> > Thanks for reviewing. From a quick look it looks like the VRAM_MASK
> > bits can be set also on IGFX? And if so, then it's not ideal to
> > mark
> > the primary placement as FALLBACK. But I might have missed a
> > rejection
> > somewhere.
>
> I was sweating bullets for a second there, but it looks like it gets
> rejected in the ioctl with:
>
> if (XE_IOCTL_DBG(xe, (args->placement & ~xe->info.mem_region_mask)
> return -EINVAL;
>
> The flags get converted from the args->placement, and VRAM should
> never
> appear in the mem_region_mask on igpu. If we allowed it I think it
> would
> crash in add_vram() since the vram manager does not exist so
> ttm_manager_type() would be NULL, AFAICT.
Thanks. Right, I'll spin a v2 and drop the IS_DGFX() test.
/Thomas
>
> >
> > /Thomas
> >
> >
> > >
> > > Either way,
> > > Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> > >
> > > > + TTM_PL_FLAG_FALLBACK : 0,
> > > > };
> > > > *c += 1;
> > > > }
> > >
> >
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 15:42 [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction Thomas Hellström
2025-08-28 15:59 ` Matthew Auld
@ 2025-08-29 7:42 ` Maarten Lankhorst
2025-08-29 10:55 ` Thomas Hellström
1 sibling, 1 reply; 8+ messages in thread
From: Maarten Lankhorst @ 2025-08-29 7:42 UTC (permalink / raw)
To: Thomas Hellström, intel-xe; +Cc: Matthew Brost, Matthew Auld, stable
Hey,
Den 2025-08-28 kl. 17:42, skrev Thomas Hellström:
> VRAM+TT bos that are evicted from VRAM to TT may remain in
> TT also after a revalidation following eviction or suspend.
>
> This manifests itself as applications becoming sluggish
> after buffer objects get evicted or after a resume from
> suspend or hibernation.
>
> If the bo supports placement in both VRAM and TT, and
> we are on DGFX, mark the TT placement as fallback. This means
> that it is tried only after VRAM + eviction.
>
> This flaw has probably been present since the xe module was
> upstreamed but use a Fixes: commit below where backporting is
> likely to be simple. For earlier versions we need to open-
> code the fallback algorithm in the driver.
>
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
> Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags v6")
I'd say it this closes a bug in the original driver, although effectively v6.8 is no longer supported anyway.
Should DESIRED also be set on the add_vram flags?
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: <stable@vger.kernel.org> # v6.9+
> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
> drivers/gpu/drm/xe/xe_bo.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
> index 4faf15d5fa6d..64dea4e478bd 100644
> --- a/drivers/gpu/drm/xe/xe_bo.c
> +++ b/drivers/gpu/drm/xe/xe_bo.c
> @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device *xe, struct xe_bo *bo,
>
> bo->placements[*c] = (struct ttm_place) {
> .mem_type = XE_PL_TT,
> + .flags = (IS_DGFX(xe) && (bo_flags & XE_BO_FLAG_VRAM_MASK)) ?
> + TTM_PL_FLAG_FALLBACK : 0,
> };
> *c += 1;
> }
Kind regards,
~Maarten Lankhorst
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-29 7:42 ` Maarten Lankhorst
@ 2025-08-29 10:55 ` Thomas Hellström
2025-08-29 11:21 ` Maarten Lankhorst
0 siblings, 1 reply; 8+ messages in thread
From: Thomas Hellström @ 2025-08-29 10:55 UTC (permalink / raw)
To: Maarten Lankhorst, intel-xe; +Cc: Matthew Brost, Matthew Auld, stable
On Fri, 2025-08-29 at 09:42 +0200, Maarten Lankhorst wrote:
> Hey,
>
> Den 2025-08-28 kl. 17:42, skrev Thomas Hellström:
> > VRAM+TT bos that are evicted from VRAM to TT may remain in
> > TT also after a revalidation following eviction or suspend.
> >
> > This manifests itself as applications becoming sluggish
> > after buffer objects get evicted or after a resume from
> > suspend or hibernation.
> >
> > If the bo supports placement in both VRAM and TT, and
> > we are on DGFX, mark the TT placement as fallback. This means
> > that it is tried only after VRAM + eviction.
> >
> > This flaw has probably been present since the xe module was
> > upstreamed but use a Fixes: commit below where backporting is
> > likely to be simple. For earlier versions we need to open-
> > code the fallback algorithm in the driver.
> >
> > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
> > Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags
> > v6")
> I'd say it this closes a bug in the original driver, although
> effectively v6.8 is no longer supported anyway.
>
> Should DESIRED also be set on the add_vram flags?
It looks for me from the TTM code that TTM then *skips* the placement
when doing a second pass with evictions.
So that's not really what we want IMO.
/Thomas
>
> > Cc: Matthew Brost <matthew.brost@intel.com>
> > Cc: Matthew Auld <matthew.auld@intel.com>
> > Cc: <stable@vger.kernel.org> # v6.9+
> > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_bo.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_bo.c
> > b/drivers/gpu/drm/xe/xe_bo.c
> > index 4faf15d5fa6d..64dea4e478bd 100644
> > --- a/drivers/gpu/drm/xe/xe_bo.c
> > +++ b/drivers/gpu/drm/xe/xe_bo.c
> > @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device
> > *xe, struct xe_bo *bo,
> >
> > bo->placements[*c] = (struct ttm_place) {
> > .mem_type = XE_PL_TT,
> > + .flags = (IS_DGFX(xe) && (bo_flags &
> > XE_BO_FLAG_VRAM_MASK)) ?
> > + TTM_PL_FLAG_FALLBACK : 0,
> > };
> > *c += 1;
> > }
>
> Kind regards,
> ~Maarten Lankhorst
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-29 10:55 ` Thomas Hellström
@ 2025-08-29 11:21 ` Maarten Lankhorst
0 siblings, 0 replies; 8+ messages in thread
From: Maarten Lankhorst @ 2025-08-29 11:21 UTC (permalink / raw)
To: Thomas Hellström, intel-xe; +Cc: Matthew Brost, Matthew Auld, stable
Hey,
Den 2025-08-29 kl. 12:55, skrev Thomas Hellström:
> On Fri, 2025-08-29 at 09:42 +0200, Maarten Lankhorst wrote:
>> Hey,
>>
>> Den 2025-08-28 kl. 17:42, skrev Thomas Hellström:
>>> VRAM+TT bos that are evicted from VRAM to TT may remain in
>>> TT also after a revalidation following eviction or suspend.
>>>
>>> This manifests itself as applications becoming sluggish
>>> after buffer objects get evicted or after a resume from
>>> suspend or hibernation.
>>>
>>> If the bo supports placement in both VRAM and TT, and
>>> we are on DGFX, mark the TT placement as fallback. This means
>>> that it is tried only after VRAM + eviction.
>>>
>>> This flaw has probably been present since the xe module was
>>> upstreamed but use a Fixes: commit below where backporting is
>>> likely to be simple. For earlier versions we need to open-
>>> code the fallback algorithm in the driver.
>>>
>>> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
>>> Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags
>>> v6")
>> I'd say it this closes a bug in the original driver, although
>> effectively v6.8 is no longer supported anyway.
>>
>> Should DESIRED also be set on the add_vram flags?
>
> It looks for me from the TTM code that TTM then *skips* the placement
> when doing a second pass with evictions.
>
> So that's not really what we want IMO.
> Yeah, seems the flag name is a bit misleading, it's more of an opportunistic placement
when space is available.
Kind regards,
~Maarten Lankhorst
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-08-29 11:21 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-28 15:42 [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction Thomas Hellström
2025-08-28 15:59 ` Matthew Auld
2025-08-28 16:06 ` Thomas Hellström
2025-08-28 16:27 ` Matthew Auld
2025-08-28 18:06 ` Thomas Hellström
2025-08-29 7:42 ` Maarten Lankhorst
2025-08-29 10:55 ` Thomas Hellström
2025-08-29 11:21 ` Maarten Lankhorst
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).