this post was submitted on 02 Sep 2024
139 points (95.4% liked)

linuxmemes

20751 readers
327 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 8 points 2 weeks ago (1 children)

In a different article, he said he had issues with the ext4 maintainer who was acting high and mighty about C despite being responsible for a number of huge CVEs from code that he wrote.

That being said, I don't really see the benefit of rewriting modules in Rust.

Technically, it's still not a 1:1 replacement because Rust will many times not generate the exact same machine code as C, which does result in a small loss of speed (and in some small cases, vice versa).

It's acceptable for anything new, but unless there's a notoriously painful part of the kernel, there's no pont in redoing existing parts and even core userspace binaries.

C quite literally makes you manipulate memory like a caveman holding a machine gun, but that's important because it's exactly what the machine is doing, which is required when you need to maximize efficiency. In Rust, you'd have to abstract some of that to the compiler to handle your logic which doesn't match what a machine is doing. There is no such thing as "borrowing" and "ownership" in machine code.

[โ€“] [email protected] 6 points 2 weeks ago* (last edited 2 weeks ago)

(As if spoken by the King to Simba:)

Rust: Everything from the bottom of this cliff to the acacia tree there is ours. Make sure you ask permission before you take something, take nothing you are not permitted to take. We don't go beyond that tree; and if you even think about the elephant graveyard beyond it; I'll kill you myself.

C: Everything the sun touches is yours. I caution you to not venture into the shadows; but I will not stop you, for you are a king, and nothing a king can do is unnecessary if it is for his people.