this post was submitted on 09 Feb 2025
33 points (86.7% liked)

Linux

5972 readers
382 users here now

A community for everything relating to the GNU/Linux operating system

Also check out:

Original icon base courtesy of [email protected] and The GIMP

founded 2 years ago
MODERATORS
 

Every week or so there seems to be drama about some old dude shouting about how rust in the Linux kernel is bad. Given all the open hostility, is there easier way for R4L to continue their work?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 6 points 5 days ago (1 children)

I was only alluding to the fact that its a low level language like C, but with a more modern design and safety features, not anything specific, sorry!

[–] [email protected] 2 points 5 days ago (1 children)

I once heard that a major problem is that you have to disable or work around Rusts safety features once you write hardware interfacing code like a os kernel

[–] [email protected] 5 points 4 days ago

Not really. While working at the OS-level can typically require 'unsafe' operations a core tenet of writing Rust is making safe abstractions around unsafe operations. Rust's 'unsafe' mode doesn't disable all safety checks either - there are still many invariants that the Rust compiler enforces that a C compiler won't, even in an 'unsafe' block.

And even ignoring all of that, if 10% of the code needs to be written in Rust's 'unsafe' mode that means the other 90% is automatically error-checked for you, compared with 0% if you're writing C.