67523 Commits

Author SHA1 Message Date
Jérôme Duval
12b22e8e48 strace: mapping type handler for _kern_map_file()
Change-Id: I1f315c285668221fb9ff15165c81dfcd753d7df8
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8977
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
2025-02-14 12:59:38 +00:00
Autocomitter
083e763302 Update translations from Pootle hrev58640 2025-02-14 07:15:20 +00:00
Augustin Cavalier
19f1423287 libroot/os: Re-enable "was not actually locked!" assertion.
It was disabled because hoard2 triggered it far too often.
But now that we're using OpenBSD malloc with different glue,
this isn't an issue anymore.

Closes #18451.

Change-Id: I9a3b1190edbbe0ae3cedfe4df2993441d1f2d629
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8975
Haiku-Format: Haiku-format Bot <no-reply+haikuformatbot@haiku-os.org>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
hrev58639
2025-02-13 22:43:57 +00:00
Augustin Cavalier
9cd1e917ef libroot/posix: Enable OpenBSD malloc by default.
jam HaikuDepot with nothing to do, best of many runs:

hoard2
real    0m3.519s
user    0m3.348s
sys     0m0.159s

openbsd
real    0m3.481s
user    0m3.327s
sys     0m0.147s

time printf "continue\nsave-report\nquit\nk\n" | Debugger -c Debugger -s 1000

hoard2
real    0m2.295s
user    0m2.505s
sys     0m0.128s

openbsd
real    0m2.896s
user    0m2.809s
sys     0m0.579s

The performance difference in Debugger is due to OpenBSD malloc
actually decommitting memory. If we disable decommit, then
OpenBSD malloc is faster than hoard2 in this case also.

In some particular cases this is a huge speedup. For example, the link
of the "lto-dump" program in GCC seems to hit a pathological case in
hoard2 and our glue code for it; with hoard2 it takes around 23 seconds,
but with this allocator it takes only 2 seconds (!). Overall the
performance difference is much more modest, though.

Overall, system memory usage seems to be up about ~5% (318 MB -> 334 MB
just after boot), and that seems to mostly be due to the allocator
filling its initial caches faster when allocations occur, rather than
lazily allocating.

Change-Id: I071d8f76fbbfa11547bd6da6bf649d111414e780
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8974
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Haiku-Format: Haiku-format Bot <no-reply+haikuformatbot@haiku-os.org>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
2025-02-13 22:43:57 +00:00
Augustin Cavalier
69cb8e25ff libroot/posix: Add glue code, global caching logic, and integrate OpenBSD malloc.
* PagesAllocator: A process-global caching strategy for the allocator.
   It deals with allocating virtual addresses and memory, and gives us
   back some of the performance that's lost by having an actual
   decommitment strategy (which the hoard2 glue code doesn't.)

   It uses two SplayTrees to manage free lists, and resizes areas
   on allocate if they aren't next to a free chunk (which saves a lot of
   time for large reallocations.)

   There's still room for improvement here, see inline TODOs. But overall
   we get pretty good performance with it.

 * Add a TLS slot for the allocator glue to use. Right now it just puts
   integers in there (since thread IDs are not evenly distributed),
   but we could put a data structure pointer in there as well, potentially.

Change-Id: I56ddb0b022a468dc04275075ed7e174b339c8ca4
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8335
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
2025-02-13 22:43:57 +00:00
Augustin Cavalier
b4508f498f libroot/posix: Import OpenBSD malloc source.
Exactly as-is. Modifications and integration will come in
the next commit.

Change-Id: I685483992d7f593fc46154ddea85a91798044faa
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8973
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
2025-02-13 22:43:57 +00:00
John Scipione
759dfd5ae3 Tracker: invert inactive select color so it is how it was
Change-Id: I5d79fc733496746bceb7003cb7d8a70555d87732
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8972
Haiku-Format: Haiku-format Bot <no-reply+haikuformatbot@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
hrev58638
2025-02-13 02:02:59 +00:00
Augustin Cavalier
bf13ecf7cf registrar: Avoid cloning buffers when delivering messages in most cases.
If we succeed in sending the message on the first try, then we don't
need to allocate anything at all.

This two allocations and a memcpy in the fast path (which is
hit the vast majority of the time, it appears.)
hrev58637
2025-02-12 16:42:00 -05:00
Augustin Cavalier
ff808e1b64 registrar: Use BStackOrHeapArray in MessageDeliverer for flattened messages.
Saves unnecessary allocations (and reallocations).
2025-02-12 16:36:33 -05:00
Augustin Cavalier
0f4bfb43ed registrar: Style cleanup to MessageDeliverer.
No functional change.
2025-02-12 16:27:44 -05:00
Augustin Cavalier
0d23e179a6 BMessage: Allocate more temporary data on the stack if possible.
Some methods already did, but used a very large size of 16KB.
Reduce that to 4KB, do it in more places, and use BStackOrHeapArray
where possible.

Change-Id: Ia2d64582e76da6c1850e502107c07cb10bcd8226
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8969
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
hrev58636
2025-02-12 20:46:50 +00:00
Augustin Cavalier
dfdffe1ac6 BList: Allocate lazily.
Rather than allocating a block in the constructor, just wait to
do it until we actually need to add items to the list. This saves
over 200,000 allocations when running "pkgman search" alone.

Change-Id: Ia6a21b963efded2bb4973edc2ba22ff026e01737
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8630
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
2025-02-12 20:46:50 +00:00
Augustin Cavalier
31343db0d3 tests/kernel/vm: Add checks for the end of the reservation to resize_area_tests. hrev58635 2025-02-11 18:57:36 -05:00
Augustin Cavalier
7ff241033f kernel/vm: Implement more cases of resizing with reservations.
* Handle resizing areas past a reservation, fixing a longstanding TODO.
   (The kernel address space implemenation still has the same TODO however.)

 * Handle resizing areas past or inside more than one reservation at once.

 * When an area shrinks, and it's touching/inside a reservation, expand
   the reservation downwards at least to its original size.

Add tests for all these behaviors (they're passing.)
hrev58634
2025-02-11 16:08:17 -05:00
Augustin Cavalier
8ff99b6ed7 kernel/vm: Drop check for RESERVED_AREA_ID in area_for.
These are actually not returned from VMAddressSpace, it seems.
2025-02-11 16:00:55 -05:00
Augustin Cavalier
7c2bd6bfcd docs/develop: Delete "How to Merge Patches from NetBSD Trunk".
This is now obsolete as the preferred merge strategy is just to
copy the whole directories and then reinstate the __HAIKU__
directives, same as for the FreeBSD network drivers and other
such code.
hrev58633
2025-02-11 00:30:49 -05:00
John Scipione
c78383f720 Tracker: Populate Tracker add-ons into main menu bar
This is used by some Tracker add-ons including TrackRunner and TrackGit.

Fixes #19386

Change-Id: I329eb9f1f8b2abf2872593d8f4417fa82de0b521
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8911
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Haiku-Format: Haiku-format Bot <no-reply+haikuformatbot@haiku-os.org>
hrev58632
2025-02-11 03:59:26 +00:00
Jérôme Duval
74e01ea162 BMenuField: SetLabel(): do nothing if current and new label are NULL
Change-Id: Ia4bb6f99d3b633a23a43624208e16cb7e4ae0399
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8940
Reviewed-by: X512 X512 <danger_mail@list.ru>
Reviewed-by: Axel Dörfler <axeld@pinc-software.de>
Reviewed-by: John Scipione <jscipione@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Haiku-Format: Haiku-format Bot <no-reply+haikuformatbot@haiku-os.org>
hrev58631
2025-02-10 21:53:08 +00:00
Augustin Cavalier
218230135f XHCI: Adjust SMI disabling and only do it if the LEGSUP capability was found.
Otherwise we'll try to write to some random register at or past the end.

Adjust the bitmasks: rename XHCI_LEGCTLSTS_DISABLE_SMI to RESERVED_BITS
and define it in hex. Also add the "read-only" bits as a separate
declaration, and don't touch those either; then remove the setting
of the "events SMI" bits.
hrev58630
2025-02-10 15:30:04 -05:00
Augustin Cavalier
53fc5edad8 XHCI: Bail if we get all-1s from an EEC read.
It probably means it's invalid. OpenBSD does the same.
May help with #19407.
2025-02-10 15:30:04 -05:00
Augustin Cavalier
72a67f8d8a ACPI: Always use the loader-reported root pointer.
We always did under EFI but not under BIOS. Now, the BIOS loader
reports the root pointer as well, so we don't need to find it again.

Change-Id: Ie83adb53f098d44f2688a1a327c084f94afa2673
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8941
Reviewed-by: Fredrik Holmqvist <fredrik.holmqvist@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
hrev58629
2025-02-10 20:18:51 +00:00
Jérôme Duval
46dd344bdd strace: Add tracing for rlimit syscalls.
Change-Id: I1e99622027f04fb93d00ebd94b45e05f7142fbec
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8965
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
hrev58628
2025-02-10 20:17:28 +00:00
John Scipione
3953c0e7cd Tracker: Fix list icon click regression, Fixes #19414
Change-Id: I96d8995087bf8621ff580ad3b4ed54ae59786e32
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8964
Haiku-Format: Haiku-format Bot <no-reply+haikuformatbot@haiku-os.org>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
hrev58627
2025-02-10 20:16:08 +00:00
Augustin Cavalier
7c77e55210 runtime_loader: Invoke call_atexit_hooks_for_range for all regions.
This is necessary when the TEXT section is split.

At this point it may make more sense for libroot to register such
atexit hooks with runtime_loader rather than allocating them itself,
in line with the above comment's suggestion, but that can be investigated
some other time.
hrev58626
2025-02-10 12:27:40 -05:00
Augustin Cavalier
cd98a7e751 runtime_loader: Use find_loaded_image_by_address in another case. 2025-02-10 12:26:29 -05:00
Pascal Abresch
e911918d38 HaikuControlLook: Fix ArrowShape color for Scrollbar buttons
Previously this would simply tint the passed in background color.
After hrev58595 this was changed to pass the proper Foreground color instead.

The codepath to disable/enable the color was missed in an oversight,
this puts back the original tint color for the foreground aswell.

Fixes: #19406

Change-Id: I6f75d24316e8ca3ecdb78f11fc8dede88f082780
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8958
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Haiku-Format: Haiku-format Bot <no-reply+haikuformatbot@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
hrev58625
2025-02-10 16:51:27 +00:00
Pascal Abresch
b6987eac0c kits/tracker: TFilePanel:SwitchDirectory abort if file does not exist
Change-Id: Ie8c66f50b025d788c23e2c0f8837da66244fc4e4
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8960
Reviewed-by: John Scipione <jscipione@gmail.com>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Haiku-Format: Haiku-format Bot <no-reply+haikuformatbot@haiku-os.org>
hrev58624
2025-02-10 16:51:05 +00:00
Jérôme Duval
146617c29b runtime_loader: dlsym(RTLD_NEXT) searches all regions for the caller address
clang/lld can put code in multiple regions.

Change-Id: I495e3f12105ef2e894809da7e4a91bac08a12fd6
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8961
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Haiku-Format: Haiku-format Bot <no-reply+haikuformatbot@haiku-os.org>
hrev58623
2025-02-10 07:37:47 +00:00
John Scipione
7d6ff0554b Tracker: Fix one more artifact drawing issue
... related to Pose and TextWidget not exactly matching.

Change-Id: Ic9c3f2ecc9a9dc4af4c200bc5a16b9f46d72f9b1
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8954
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
hrev58622
2025-02-09 03:02:07 +00:00
John Scipione
c368793cd4 Tracker: Fixup drop context move to enabled status
regression from hrev58560.

Change-Id: Ic62292c2eb38e486cf18f0e4e9535ff6154b0c87
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8953
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
2025-02-09 03:02:07 +00:00
John Scipione
2cf974a04e Tracker: Do not create symbolic link on same folder
Fixes #19403

Change-Id: Ib590822308b819d60715139c536d60e4e14c510f
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8950
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
hrev58621
2025-02-08 22:37:07 +00:00
John Scipione
475412d382 Tracker: Fix minor underline issue from hrev58610
Change-Id: I80098f8bb10ab5eb1b8c39b5acb698ea0163bd85
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8949
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
2025-02-08 22:37:07 +00:00
John Scipione
0464dc83d9 BMenuItem: Fix Alt+1 to switch to icon mode in Tracker
... by setting the incoming shortcut instead of the old one
in BMenuItem::SetShortcut().

Fixes #19405 a regression hrev58611.

Change-Id: Iecf19a323f6b6ead288e3f1ef1169376b11cddb3
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8948
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
2025-02-08 22:37:07 +00:00
John Scipione
e4ef7b6075 Tracker: Redirect B_DELETE to BTextView if focused on one
Fixes #19404 a regression from hrev58560.

Change-Id: Iea6df69e04f5dccb8f91be506b5b7f85686c5eb1
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8947
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: Axel Dörfler <axeld@pinc-software.de>
hrev58620
2025-02-08 22:02:29 +00:00
John Scipione
a502215d78 BPopUpMenu: Adds Alt back to pop up windows
... by calling Install() on Go() in BPopUpMenu.

Install() prepares item shortcuts and set missing targets to the
target window. Combined with hrev58611 for regular menus this
passes most of the shortcut prep work on to BWindow.

Fixes pop up portion of #19395 a regression from hrev58589.

Change-Id: I8a1615502e0d6e0b75f9cd3ca2a45d08b53d11ce
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8946
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: John Scipione <jscipione@gmail.com>
hrev58619
2025-02-08 17:59:44 +00:00
John Scipione
f28ee3ec24 BPopUpMenu: style updates, update copyright year to 2025
... and style fixes. Add myself as author.

Change-Id: I213ba5e1dabf1cf15db86c307fb3484231947332
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8945
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: Axel Dörfler <axeld@pinc-software.de>
hrev58618
2025-02-08 16:08:30 +00:00
Autocomitter
220fa7be4f Update translations from Pootle hrev58617 2025-02-08 08:08:54 +00:00
William Johnson
03d5061185 Installer: Do not copy SSH host keys into target.
Fixes #19113.

Change-Id: I8e837ba236de44fb76a6668e297bb1a554e62b24
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8944
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
hrev58616
2025-02-07 20:07:44 +00:00
Augustin Cavalier
a3d331623c kernel/vm: Use CObjectDeleter in vm_copy_area rather than a custom class.
No functional change intended.
hrev58615
2025-02-07 13:50:40 -05:00
Augustin Cavalier
738615d678 kernel/file_cache: Use CObjectDeleter to unreserve pages.
There are error paths out of this method that may not have
properly unreserved pages, so use a CObjectDeleter so that
all possible cases are covered.
2025-02-07 13:50:19 -05:00
Augustin Cavalier
4f8eaff87f kernel/file_cache: Re-check the cache size after acquiring the lock.
If it changed, then don't try to do I/O past the end.
It would presumably just fail anyway, and since the
addition of extra asserts to VMCache page insertion,
will cause assertion failures due to inserting pages
past the end of the cache.

This case is particularly easy to trigger by holding
the down arrow in the keymaps list (i.e. changing keymaps
very rapidly.)
2025-02-07 13:46:50 -05:00
Augustin Cavalier
7a0fdd19a0 kernel/sem: Properly handle create_sem being called with a negative count.
It doesn't make much sense to do this, and the Be Book specifies that
doing so will return an error. A user on the mailing list tested
against BeOS and confirmed that it does reject this, so we should too.
hrev58614
2025-02-07 13:06:43 -05:00
Augustin Cavalier
1e56d889ee kernel/sem: Move variable declarations in create_sem_etc closer to use.
No functional change intended.
2025-02-07 12:48:56 -05:00
Augustin Cavalier
855d7cef68 Tracker: Add comment in empty_trash about RemoveItemAt(0).
From review by Axel on the mailing lists.
hrev58613
2025-02-07 12:43:36 -05:00
Augustin Cavalier
43741b0b91 Tracker: Fix sorting of filtered pose lists.
Fixes #19399.
hrev58612
2025-02-07 12:19:22 -05:00
John Scipione
5ee786c31f Interface Kit: Fix missing Alt key in menu shortcuts
The shortcut detection was working, just not the display of the
modifiers in the menu. I've added back the necessary code to fix
this in BMenuItem.

BWindow does the heavy lifting of preparing the keys and
modifiers. I have changes _FindShortcut() used by BMenuItem to
send the prepared modifiers back to BMenuItem.

Set the parameters raw in the constructor, they will get fixed
up in Install().

I also make sure to use the prepped version of the key and mods
in BWindow::AddShortcut() to remove the old one. This is a minor
update that eliminates an edge failure case of malformed input.

Fixes #19395 a regression from hrev58589.

Change-Id: I4333f89149ff843f92dbffbd53d58ffc2def6760
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8943
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: John Scipione <jscipione@gmail.com>
hrev58611
2025-02-07 17:00:56 +00:00
John Scipione
2c7072f33c Tracker: Fix label redraw issues in mini-icon mode
... and center label vertically.

Fixes #18826

Change-Id: If96ce2089cbf8345d147d39b091317168bcf5c1a
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8886
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Reviewed-by: John Scipione <jscipione@gmail.com>
hrev58610
2025-02-06 22:08:11 +00:00
John Scipione
3527a0ee23 Tracker: Fix garbled text when dragging cut poses
* Determine whether we're currently dragging by looking at the
  current window message what, dragging replaces direct in a few
  places especially crucial to drawing semi-transparent dragged
  items correctly.
* Export kMsgMouseDragged and kMsgMouseLongDown to the BPoseView
  header to check for dragging (but still in BPrivate).
* Turn on outline label drawing for dragged items and remove TODO.

Fixes #6461

Change-Id: I45cd401299dec408b76cb4b9ce1e9350ed59ef5b
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8842
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
2025-02-06 22:08:11 +00:00
John Scipione
44d74ab075 Tracker: Refactor BPoseView and BPose drawing
* Create a DrawTextWidget() method in BPose to share drawing
  between list and icon modes.
* Remove direct param from BPose::DrawIcon() and remove the state
  changes from that method.
* Remove direct parameter from TextWidget::Draw(), we can calc it.
* Refactor BPose::Draw() to set the LowColor() only. This is now
  considerably more simple to read and understand.
* Refactor ColumnRedraw() to reset colors and drawing mode.
* Many explanatory comments added.

* Remove BackColor() and TextColor(), use LowColor() and HighColor().
* Use AdoptSystemColors() and HasSystemColors() to set colors.
  These are virtual in BPoseView and the colros are overridden by
  DesktopPoseView, OpenWithPoseView and QueryPoseView.
* Add ReadOnlyTint() version to Utilities that takes a color_which.
* Rename InvertedBackColor() to InvertColorSmart().
* Force Edit name select box background color to be black/or white
  depending on the inverse of your background color on Desktop
  instead of using document colors.
* Determine if volume is read-only by pose instead of its parent,
  this fixes a bug where read-only volumes mounted on a read-write
  directory like the Desktop had an editable name even though they
  were not supposed to. It wouldn't let you change the name though.

* Remove fIsDesktop param from BPoseView, use only IsDesktopView()
  now except in FilePanelPoseView when navigating to the Desktop.
* Update BContainerWindow, DesktopPoseView and FilePanelPoseView
  to adjust to this change. IsDesktopView() is always true for
  DesktopPoseView, never true otherwise.
* DesktopPoseView disambiguated further from BPoseView. Add a few
  virtual override methods.
* Custom Brightness() value on DesktopPoseView based on the default
  Desktop color.
* Respond to B_WORKSPACE_ACTIVATED and B_RESTORE_BACKGROUND_IMAGE
  messages to update the Desktop text color.

Change-Id: I122dbeab668244772012656a59cbba3050245f44
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8885
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
2025-02-06 22:08:11 +00:00
John Scipione
0ed8ac17f2 Tracker: Do not start editing file name while dragging
Change-Id: Ibf215fb2dd1ed2cac56c0db47fab788f8b99646f
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8867
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
2025-02-06 22:08:11 +00:00