LWN: Comments on "Rust in the 6.2 kernel"
https://lwn.net/Articles/914458/
This is a special feed containing comments posted
to the individual LWN article titled "Rust in the 6.2 kernel".
en-usThu, 03 Apr 2025 01:24:54 +0000Thu, 03 Apr 2025 01:24:54 +0000https://www.rssboard.org/rss-specification[email protected]Rust in the 6.2 kernel
https://lwn.net/Articles/919069/
https://lwn.net/Articles/919069/sammythesnake<div class="FormattedComment">
If it were me doing those videos, I would certainly have aimed for a clearer choice, as well as one that's less piercing. I doubt I could cope with that voice for 8 hours(!)<br>
<p>
It's worth noting that the (auto-generated) subtitles are usable, even if not perfect, so you could watch with the audio turned down, though that wouldn't work well with having it on in the background of some other task and dipping in when something piques interest.<br>
<p>
I wonder if there's an audio filter that approximates the inverse of whatever was used to mask the voice in the first place - that might provide a more natural sounding option that at least *my* ears would find kinder.<br>
<p>
For now, I'll stick to reading her excellent blog posts as and when they get lunk to here on LWN :-P<br>
</div>
Wed, 04 Jan 2023 18:07:10 +0000Illuminating background on Rust
https://lwn.net/Articles/918011/
https://lwn.net/Articles/918011/sdalley<blockquote>That's why people say that Rust is <a href="https://people.kernel.org/linusw/rust-in-perspective"> attempting to raise the abstraction</a> in the programming language: you genuinely can offload some of your knowledge into the machine and hope that it would verify that everything is done correctly.</blockquote>
<p>
Thanks khim for that very illuminating link on the functional-programming origins of Rust!
</p>
Fri, 16 Dec 2022 12:25:41 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/917751/
https://lwn.net/Articles/917751/farnz<p>Yes - apologies for being unclear. I think of reallocations as an optimized form of allocate, copy and deallocate, so it's implicit to me that reallocation can invalidate the original string.
<p>At heart, this is the same problem as iterator invalidation. You have a reference to some underlying data, and changes to that underlying data can result in your reference no longer being valid. C++ has no compiler checks for reference validity, and relies on the programmer not getting it wrong; this makes some sense, since any check for reference validity is going to be conservative and thus will need overriding from time to time, but the history of "rely on the programmer not getting it wrong" suggests it's not a great decision.
Tue, 13 Dec 2022 11:14:13 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/917708/
https://lwn.net/Articles/917708/oconnor663<div class="FormattedComment">
You (farnz) probably already know this but I think it's worth adding: Not only deallocated, but also reallocated. Calling .push_back() or .append() on the original string also potentially invalidates a string_view.<br>
<p>
It could be totally fair to describe these as niche issues that don't affect most callers of string_view. But I don't agree with calling someone a "liar" because you (ncm) think it's niche. Or if these issues are new to you, great! None of us is ever done learning.<br>
</div>
Mon, 12 Dec 2022 21:04:09 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/916731/
https://lwn.net/Articles/916731/nybble41<div class="FormattedComment">
`Either` is one of the two combinators needed to represent arbitrary arithmetic data types, together with the zero/void (`!`) and one/unit (`()`) atomic types. `Either` represents the capacity for sums (enums). Pairs / tuples are their dual, representing product types (structs). They're both very abstract, but sometimes that's exactly what you want.<br>
<p>
It's true that you could just create your own custom enum type instead (which would be isomorphic to some tree of nested `Either` types) but your custom type won't benefit from any functions the standard library might provide for working generically with values which might be "either" one type or another. For example, partitioning a list of `Either<A,B>` into a list of `A` and a list of `B`. I'm not as familiar with what Rust provides for working with `Either` values but in Haskell the `Either` type is a key component of the Arrow abstraction, a more powerful (albeit less popular) alternative to monads, where they are used to represent conditional processing (`ArrowChoice`). It also benefits from ready-made instances of `Bifunctor`, `Bifoldable`, and `Bitraversable`.<br>
</div>
Sat, 03 Dec 2022 00:58:40 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/916687/
https://lwn.net/Articles/916687/ejr<div class="FormattedComment">
And I very much thank you for the work. I'm trying to understand Rust's advantages and disadvantages, and this step-wise approach is hugely helpful to me.<br>
</div>
Fri, 02 Dec 2022 18:32:34 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/916265/
https://lwn.net/Articles/916265/mlindner<div class="FormattedComment">
I don't really understand the need of adding the `Either` type, it's just a very very thin wrapper around "enum" with functionality limited to only two types. I wonder why they added it.<br>
</div>
Wed, 30 Nov 2022 12:07:37 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/916006/
https://lwn.net/Articles/916006/gasche<div class="FormattedComment">
Another type that is "too vague" is the type of pair `(A, B)` -- and there are not that many standard-library functions defined on it. But we use it all the time! Honestly I think that the criticism against `Either` here comes from a lack of familiarity, rather than a deep reason. We programmers tend to be more familiar with product types than with sum types; for sums the most well-known is `Option<A>` that is the sum (A + 1), and we still need to time to collectively get used to using anonymous sum types when they make sense.<br>
</div>
Sat, 26 Nov 2022 14:21:52 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915854/
https://lwn.net/Articles/915854/atnot<div class="FormattedComment">
<span class="QuotedText">> the benefits in terms of reusing other people's code (auxiliary support functions etc.) are higher than the cost of the less-specific names.</span><br>
<p>
That is my problem with Either though. It's too vague to enable any reuse at all. I think a look at the associated functions of Option and Result in rust compared to the Either crate illustrate that quite clearly.<br>
<p>
Option and Result have dozens of combinators each that compose usefully. You can turn Results into Options, Options into Results, Options into Iterators, Results of Options into Results, Iterators of Options into Options, Iterators of Results into Results...<br>
<p>
Meanwhile on the Either side we get:<br>
(<a href="https://docs.rs/either/1.8.0/either/enum.Either.html">https://docs.rs/either/1.8.0/either/enum.Either.html</a>)<br>
- A few map variations, duplicated for left and right of course<br>
- Some forwarding of inner traits<br>
- A bunch of methods that turn it back into the more useful Option and Result types<br>
- Flip, that swaps the sides<br>
<p>
This is not a swipe against the authors. It just shows you just can't really do very much with types that are completely unconstrained and semantically meaningless.<br>
</div>
Thu, 24 Nov 2022 01:48:14 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915837/
https://lwn.net/Articles/915837/khim<font class="QuotedText">> - The argument that "defining your own variant with domain-specific names etc." also applies as a criticism of both Option and Result, and the fact that actually we use Option and Result a lot shows that this criticism only goes so far.</font>
<p>How? <code>Option</code> and <code>Result</code> <b>are</b> domain-specific.</p>
<p><code>Option</code> is the fix for <a href="https://www.youtube.com/watch?v=ybrQvs4x0Ps">the billion-dollar mistake</a>: it handles the case where object may or may not be present.</p>
<p><code>Result</code> is for the case where function may return “normal” result or “error result”. Open POSIX specifications (or practically any API specification) and you'll find many such functions.</p>
<font class="QuotedText">> - There are generic functions for which Result could be used, but the more symmetric Either is more natural and thus a better API.</font>
<p>It's not enough to have one such function. One function is always better server with ad-hock type. You need <b>series</b> of functions which may share a common type. It's easy to imagine such for <code>Options</code>: lot's of data structures have “leaf nodes”. It even easier to do that with <code>Result</code>: almost all functions which deal with files or network may suffer from the same errors (it doesn't matter whether you are creating file or removing it, if you don't have permission to do that error would be the exact same one).</p>
<p>Just what class of functions do you have in mind where you may have symmetrical two choices and these are the same across the whole range of functions?</p>
<p>Yes, <code>partition_map</code> example makes sense (and that's exactly where <code>itertools</code> are using <code>Either</code>), but Rust is imperative language with <code>for</code>. It's really not clear how often do you even need such thing in Rust.</p>
Wed, 23 Nov 2022 17:17:05 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915710/
https://lwn.net/Articles/915710/TheGopher<div class="FormattedComment">
Agree. Having worked with either in scala I can say that the overhead of a dedicated struct/union/variant is minimal - and the readability is much higher! This is the wrong place to be lazy.<br>
</div>
Tue, 22 Nov 2022 14:11:53 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915660/
https://lwn.net/Articles/915660/micka<div class="FormattedComment">
Looking at the Either crate api, it’s awful. At least Result gives you a meaningful name for each variant (ok, err).<br>
Either gives you a... left and a right. Which is which? If both have the same content type, how do you differentiate? <br>
By the way, some people (like me) can’t tell the right from the left. Or rather can’t give them a name (but never will for example drive on the wrong side of the road). I had to work on codd which used an Either type in another language and could never manage to understand any of it even after multiple years.<br>
I guess it’self OK as write-only code...<br>
</div>
Mon, 21 Nov 2022 21:16:20 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915642/
https://lwn.net/Articles/915642/steveklabnik<div class="FormattedComment">
A small amount of history here: Rust *did* include Either in its standard library long, long ago. <a href="https://doc.rust-lang.org/0.7/std/either.html">https://doc.rust-lang.org/0.7/std/either.html</a><br>
<p>
My recollection of its removal was a survey of usage, and Result was used instead by 99.9% of the existing code instead.<br>
<p>
That said, it is true that the crates.io has high usage; it is the dependent of two *extremely* popular packages, itertools and rayon. I'm not aware of any movement to move it back into the standard library, though.<br>
</div>
Mon, 21 Nov 2022 17:06:53 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915537/
https://lwn.net/Articles/915537/gasche<div class="FormattedComment">
We've had this argument within the OCaml community, and actually I'm the person who ended up proposing 'either' for the standard library. I agree with your point that, very often, defining your own enum / variant type is the better approach, and also with your point that Option and Result already cover a lot of cases. But:<br>
<p>
- The argument that "defining your own variant with domain-specific names etc." also applies as a criticism of both Option and Result, and the fact that actually we use Option and Result a lot shows that this criticism only goes so far. Sometimes there are common scenarios were having a enum of fixed shape with standard name is a good approach, and the benefits in terms of reusing other people's code (auxiliary support functions etc.) are higher than the cost of the less-specific names.<br>
<p>
- There are generic functions for which Result could be used, but the more symmetric Either is more natural and thus a better API. (Result and Either are isomorphic so you can clearly always use one instead of the user, the question is how much of a conceptual mismatch this creates.) My main example in OCaml is<br>
<p>
val partition_map : ('a -> ('b, 'c) either) -> 'a list -> 'b list * 'c list<br>
<p>
It expects a function that, for any value of type 'a, will compute either a 'b or a 'c from it. Then it takes a list of elements of type 'a, and partitions it (using the function) into a list of 'b and a list of 'c. (Interestingly, this is an instance of a sort of generic operation that would split the 'a into an arbitrary sum of possible types, and return as many lists; but that function cannot be expressed easily in the OCaml type system, while 'partition_map' above can.)<br>
</div>
Sun, 20 Nov 2022 20:42:01 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915479/
https://lwn.net/Articles/915479/atnot<div class="FormattedComment">
<span class="QuotedText">> `Either` sounds like a generic type that would have its place in any "standard library for building stuff"</span><br>
<p>
This is somewhat unrelated to the rest of your question, but I personally really don't agree. Rust core already has types for Option and Result, which are the common case for things that can be one of two types. But to me the Either type ends up simultaneously too broad and specific compared to just defining your own enum. The generic "left" and "right" names are cryptic and confusing, there is little commonality betwen users and it has worse type safety and error reporting. It also lacks extensibility by only offering two variants, making for a painful refactoring if you notice you do need three options after all. Lastly a lot of the time when a function can take multiple things, those things usually share some property which can perhaps be better represented by a trait.<br>
</div>
Sun, 20 Nov 2022 14:57:08 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915521/
https://lwn.net/Articles/915521/gasche<div class="FormattedComment">
<span class="QuotedText">> Rust type system *can* express logical proofs</span><br>
<p>
You are changing what you mean by "express logical proofs" quite a bit from what the original poster said with "implement logical proofs", quote:<br>
<p>
<span class="QuotedText">> With Calculus of Constructions, it is possible to implement logical proofs. This would imply, that Rust implementation needs to be within the logical proofs, for being robust.</span><br>
<p>
With the Calculus of Constructions (or other similar logics), you can define types that correspond to interesting mathematical propositions, and then you can "implement" a proof of this proposition as a program fragment at this type. This is the "Curry-Howard" view of proving things using a typed lambda-calculus, it is what the Calculus of Propositions was designed for, and this is *not* something that is done in Rust.<br>
(Of course, as any reasonably-powerful type system, it is possible through a lot of effort to encode something similar to this process for weaker notions of propositions, using for example singleton types and what not. This does not change the fact that claiming that Rust is related to the Calculus of Constructions is fundamentally nonsensical.)<br>
<p>
Now you are talking about a much weaker (but still important/relevant) meaning of "logical proofs", which is: proof of safety guarantees guaranteed by the type system. The idea is not that you can define types to express mathematical properties of interest, but that each type come with behavioral guarantees that gives a property that each program fragment at this type must verify. (Working out precisely how to define these guarantees is the essence of the RustBelt project and Ralf Jung's thesis.) This has, again, nothing to do with the Calculus of Constructions -- well, this work was formulated in Coq, which is maybe how the crackpots above thought to claim a connection.<br>
<p>
<span class="QuotedText">> and it's not possible to circumvent it (except for bugs in the compiler, of course)</span><br>
<p>
and except for, you know, *unsafe*.<br>
<p>
<span class="QuotedText">> Which basically means that it's enough to prove that there are no UBs in safe Rust, but not enough to prove much beyond that.</span><br>
<p>
To be fair (I'm not trying to be critical here, and your point at least are informed and make sense), you can get more than the absence of UB when you look at programs at higher type. (For example I would expect that polymorphism gives you representation-independence properties that let you reason on whether some values remain "hidden" inside a module, or what API usage patterns are prevented by the types. Some of this stuff is standard in ML/Haskell grade type systems, and there are new Rust-specific tricks that we can play with lifetimes and the static discipline.)<br>
<p>
<span class="QuotedText">> Who said it's “wrong?” Even Wikipedia's article on subject start with the exact difference between pure and impure functional programming is a matter of controversy sentence for crying out loud!</span><br>
<p>
There is disagreement on the finer details (and sometimes the word is used in a completely different context, "pure lambda calculus" means something else), but there is no disagreement on the fact that ML-family languages are *impure* functional programming languages; they allow for unrestricted non-termination but also mutable state, exceptions... Anyone in the field agrees that ML-family languages are *not* purely functional.<br>
<p>
</div>
Sun, 20 Nov 2022 06:28:51 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915502/
https://lwn.net/Articles/915502/khim<p>I think you are talking past each other.</p>
<font class="QuotedText">> Even if the Rust system *could* in theory express logical proofs (Coq or Agda can, for example), it would be entirely possible to write code that contains bugs in the language (at less precise types).</font>
<p>Rust type system <b>can</b> express logical proofs and it's <b>not</b> possible to circumvent it (except for bugs in the compiler, of course). That's precisely <a href="https://research.ralfj.de/thesis.html">what the Ralf's Phd thesis is about</a>.</p>
<p>Now, the weird part: Rust doesn't contain full-blown dependent types system which can be used pervasively, it's complicated system is centered on lifetimes and soundness.</p>
<p>Which basically means that it's enough to prove that there are no UBs in safe Rust, but not enough to prove much beyond that.</p>
<p>That's still significantly different property from what C/C++ have. And very practically useful.</p>
<p>As for how all that is related to functional programming… it's, basically, impossible to say.</p>
<font class="QuotedText">> it starts with a definition of "purely functional programming language" that is wrong?! (ML is not a purely functional programming language.)</font>
<p>Who said it's “wrong?” Even Wikipedia's <a href="https://en.wikipedia.org/wiki/Purely_functional_programming#Difference_between_pure_and_impure_functional_programming">article on subject</a> start with <i>the exact difference between pure and impure functional programming is a matter of controversy</i> sentence for crying out loud!</p>
<p>The big issue here is that reasonable people define “pureness” differently and then arrive at different conclusions.</p>
<p>Basically the best I can say about that link is… I couldn't say if he's even right or wrong because he talks about things which have not single “proper” definition.</p>
Sat, 19 Nov 2022 22:45:59 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915501/
https://lwn.net/Articles/915501/gasche<div class="FormattedComment">
<span class="QuotedText">> Your #rude filter seem to be off.</span><br>
<p>
Maybe? I find it rather perplexing to see important technical ideas of our field being cargo-culted around. Why would someone name-drop the Calculus of Constructions (a rather technical topic that is mostly of experts interest) if they clearly don't know what it is? (Otherwise they couldn't claim that Rust is closely related, which is grossly wrong.) It may be that some language communities or discussion spaces are used to this kind of pseudo-technical discourse, but I'm not, <br>
and it hurts.<br>
<p>
(I have tried to be short and factual in my post above, which I certainly did not intend to be insulting or deprecating.)<br>
<p>
<p>
The message I was replying can be decomposed as follows:<br>
<p>
<span class="QuotedText">> There is some information, that Rust language is near Calculus of Constructions,</span><br>
<p>
This information is wrong, the Rust language is nowhere near the Calculus of Constructions. Rust has a strong type system with polymorphism, sure, but that's about it (so do many other languages). The characteristic feature of the Calculus of Constructions is its very powerful pi-types / dependent abstractions, which are completely absent from Rust -- or most programming languages.<br>
<p>
<span class="QuotedText">> With Calculus of Constructions, it is possible to implement logical proofs.</span><br>
<p>
This is true.<br>
<p>
<span class="QuotedText">> This would imply, that Rust implementation needs to be within the logical proofs,</span><br>
for being robust.<br>
<p>
I don't know what this is supposed to mean, but my best guess is that there is a fundamental misunderstanding here. Even if the Rust system *could* in theory express logical proofs (Coq or Agda can, for example), it would be entirely possible to write code that contains bugs in the language (at less precise types).<br>
<p>
<p>
The blog post that is being cited in the message ( <a href="https://www.subarctic.org/is_rust_a_purely_functional_programming_language.html">https://www.subarctic.org/is_rust_a_purely_functional_pro...</a> ) is similarly fundamentally wrong. Out of the five subsections, exactly 2 are correct ("What is the Calculus of Constructions" is essentially correct, and "So is Rust purely functional" is arguably correct), the 3 other contain gross mistakes. I mean, this blog post is titled "Is Rust a Purely Functional Programming Language?", and it starts with a definition of "purely functional programming language" that is wrong?! (ML is not a purely functional programming language.)<br>
</div>
Sat, 19 Nov 2022 21:46:37 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915476/
https://lwn.net/Articles/915476/hummassa<div class="FormattedComment">
Your #rude filter seem to be off.<br>
The poster was making a good point (as does the linked page) that the dependent typing usage possible using Rust traits can be used to construct purely (or semi-purely) funcional Rust programs, that can be checked via automation. The correlation to the kernel is that the same tooling possible with Rust is not possible with C++ or C.<br>
</div>
Sat, 19 Nov 2022 15:58:10 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915471/
https://lwn.net/Articles/915471/amacater<div class="FormattedComment">
It is, of course, possible that this content is effectively generated as anime-style content and a synthetic voice to preserve someone's<br>
identity for some reason. There aren't many folk contributing to the kernel or other projects entirely pseudonymously but there are<br>
a few, usually to prevent an obvious conflict of interest - maybe to preserve the ability to work on something as their own rather than as their employers' work - or to prevent themselves being marginalised for some other reason.<br>
<p>
The synthetic-sounding voice *is* annoying but the content is useful. <br>
<p>
Disclaimer: I only watched a few short segments of the video but I could certainly see that the voice would grate after a while.<br>
</div>
Sat, 19 Nov 2022 15:07:09 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915466/
https://lwn.net/Articles/915466/Wol<div class="FormattedComment">
Or they don't do email interviews and it has to be a video ... if they're a vlogger they might insist ...<br>
<p>
Anyways, I consider it useful information to know that their videos are unwatchable ... there might be better ways to do it (I don't see how in this instance) but just telling the truth is not being nasty. Yes it can be told in a nasty way, but here it was just to inform ...<br>
<p>
Cheers,<br>
Wol<br>
</div>
Sat, 19 Nov 2022 13:37:54 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915465/
https://lwn.net/Articles/915465/khim<p>Rust doesn't have Either in it's <code>stdlib</code>. There are <a href="https://docs.rs/either/latest/either/">either crate</a> with <a href="https://docs.rs/either/latest/either/enum.Either.html">really featureful Either</a>, and it's <a href="https://lib.rs/crates/either/rev">widely used</a>, but from my understanding Linux kernel doesn't like to depend on external crates.</p>
Sat, 19 Nov 2022 11:19:26 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915464/
https://lwn.net/Articles/915464/gasche<div class="FormattedComment">
I can see many reasons why kernel-side programming is a different enough environment to need its own stdlib, and there is nothing fundamentally wrong with that. But on the other hand, I would expect some principles about how to grow this kernel-stdlib. (Some people have experience growing standard libraries for languages/environments and some idea are probably worth porting over from the start.)<br>
<p>
For example (this is just a random idea, not a suggestion or anything) Rust-in-kernel could have decided to minimize the diff with outside-kernel Rust code by sticking to subsets of standard APIs or well-known third party packages whenever possible, or taking other steps to avoid divergence and reuse existing design choices. I see no trace of such a process in the [Either patchset](<a href="https://lwn.net/ml/linux-kernel/[email protected]/">https://lwn.net/ml/linux-kernel/20221110164152.26136-28-o...</a>), which does not make any mention of pre-existing Either code in Rust outside the kernel.<br>
</div>
Sat, 19 Nov 2022 11:06:50 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915461/
https://lwn.net/Articles/915461/Wol<div class="FormattedComment">
Bear in mind the kernel does not use the standard C stdlib either. Could they be re-writing the Rust stdlib for the exact same reason, namely (a) the stdlib breaks kernel invariants, and (b) the stdlib does not take into account that hardware breaks stdlib invariants?<br>
<p>
Cheers,<br>
Wol<br>
</div>
Sat, 19 Nov 2022 09:42:44 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915460/
https://lwn.net/Articles/915460/gasche<div class="FormattedComment">
`Either` sounds like a generic type that would have its place in any "standard library for building stuff" for the Rust language, not particularly related to kernel programming. Do I correctly understand that the Rust-in-kernel people are not using any of the existing Rust stdlib, and are in fact reinventing their own stdlib? If so, then what are the mechanisms in place to ensure the ongoing quality and consistency of the design?<br>
</div>
Sat, 19 Nov 2022 09:02:02 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915459/
https://lwn.net/Articles/915459/gasche<div class="FormattedComment">
I know about the Calculus of Construction, and I can tell you that this is mostly wrong. There is no obvious relation between Rust and the Calculus of Construction (which is about dependent types, no linear types), and the subarctic blog you cite is wrong. This also has no relevance to the Linux kernel or string types whatsoever.<br>
</div>
Sat, 19 Nov 2022 08:56:04 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915455/
https://lwn.net/Articles/915455/eean<div class="FormattedComment">
they're a vtuber so it actually isn't that bad, ha. it's cool that people are making content like this for different audiences.<br>
</div>
Sat, 19 Nov 2022 06:23:24 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915439/
https://lwn.net/Articles/915439/ssokolow<div class="FormattedComment">
Unless "you" was being used in the broader sense of "anyone who chooses to interview her", rather than LWN specifically.<br>
</div>
Fri, 18 Nov 2022 22:09:26 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915438/
https://lwn.net/Articles/915438/gspr<div class="FormattedComment">
Has LWN done a lot of voice interviews? No. The comment clearly brought up something completely irrelevant in order to be mean.<br>
</div>
Fri, 18 Nov 2022 22:00:39 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915436/
https://lwn.net/Articles/915436/zdzichu<div class="FormattedComment">
Which is, again, not relevant when discussing _writing_and article. It should ever be here on LWN, which we all consider a civilised place.<br>
</div>
Fri, 18 Nov 2022 22:00:04 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915434/
https://lwn.net/Articles/915434/beagnach<div class="FormattedComment">
It's not actually... the complaint is about a very high-pitched machine-generated fake voice that the developer of the M1 GPU driver adds to their YouTube videos. So not a personal attach. <br>
<p>
I also find it unbearable.<br>
<p>
Example:<br>
<a href="https://www.youtube.com/watch?v=XG9xUxIf73o">https://www.youtube.com/watch?v=XG9xUxIf73o</a><br>
</div>
Fri, 18 Nov 2022 21:15:40 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915418/
https://lwn.net/Articles/915418/khim<p>If someone claims that use of <code>std::string_view</code> doesn't lead to the problems then you can safely say that it's another crop of the “just don't do any mistakes and then C works fine… oh, and don't upgrade the compiler ever because these evil guys make it break it my programs”, just with C++ theme.</p>
<p>Here is <a href="https://github.com/isocpp/CppCoreGuidelines/issues/1038">discussion about dangers of std::string_view</a> on the Core Guidelines site, here is <a href="https://alexgaynor.net/2019/apr/21/modern-c++-wont-save-us/">article</a> with more arguments and there are more, but they all are, obviously, wrong, because admitting that they are right means years of investment in C++ are in jeopardy.</p>
<p>Just leave these guys alone. It's the same thing as with <code>systemd</code> introduction: there would be lots of complains and there would be holdouts and yet it would happen in the classic <a href="https://en.wikipedia.org/wiki/Planck%27s_principle">planck's principle</a> way:</p>
<font class="QuotedText">> An important scientific innovation rarely makes its way by gradually winning over and converting its opponents: it rarely happens that Saul becomes Paul. What does happen is that its opponents gradually die out, and that the growing generation is familiarized with the ideas from the beginning.</font>
Fri, 18 Nov 2022 18:02:38 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915413/
https://lwn.net/Articles/915413/farnz<p>It does need to be kept track of - you need to ensure that the underlying string is not deallocated before the string view is deallocated.
<p>For the very specific case of just passing a string view of a string you own down a call stack, there's no issues, but as soon as the string view relates to a string whose lifespan is not determined purely by the enclosing scope (e.g. because you put the string view in a heap-allocated data structure), you have a lifespan tracking issue to worry about.
Fri, 18 Nov 2022 17:05:32 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915410/
https://lwn.net/Articles/915410/ncmIn fact, <tt>std::string_view</tt> validity does not need to be "kept track of". Passed down a call chain, it remains valid throughout, with no phony "complication".
When you need to lie to make your case, it tells us all we need to know about your case.
Hype reliant on spurious denigration of other languages adds no value here.
Fri, 18 Nov 2022 16:48:48 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915397/
https://lwn.net/Articles/915397/mathstuf<div class="FormattedComment">
By "standard" do you mean the `log` crate? I believe some of its guarantees are around flushing and such, so `PR_CONT` might be tougher to implement using the APIs set down in the crate itself.<br>
</div>
Fri, 18 Nov 2022 16:11:15 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915383/
https://lwn.net/Articles/915383/Lumia<div class="FormattedComment">
What an unpleasant thing to say.<br>
</div>
Fri, 18 Nov 2022 15:24:15 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915381/
https://lwn.net/Articles/915381/corbetThere's an awful lot of Rust infrastructure that has been posted in the past, including complete drivers; it's just not being pushed upstream yet. I've been fairly deliberately looking closely at the code as it heads toward the mainline just because it breaks the problem down into manageable pieces. The whole Rust-for-Linux patch set is a fair amount to absorb all at once.
Fri, 18 Nov 2022 14:26:17 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915380/
https://lwn.net/Articles/915380/xav<div class="FormattedComment">
I wonder why they didn't use the standard log::info, log:debug etc. (and just added the missing levels) ?<br>
</div>
Fri, 18 Nov 2022 14:23:36 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915379/
https://lwn.net/Articles/915379/xav<div class="FormattedComment">
It is yes, but AFAIK it's an oversight and could be replaced soon with a thin pointer - this is alluded to here for example: <a href="https://github.com/m-ou-se/rfcs/blob/c-str-literal/text/3348-c-str-literal.md">https://github.com/m-ou-se/rfcs/blob/c-str-literal/text/3...</a><br>
</div>
Fri, 18 Nov 2022 14:21:22 +0000Rust in the 6.2 kernel
https://lwn.net/Articles/915348/
https://lwn.net/Articles/915348/[email protected]<div class="FormattedComment">
This is a mean thing you're going entirely out of the way to say, particularly given how entirely unrelated it is to the original request for her to _write_ a guest post. <br>
<p>
If you choose to post again here, I personally would appreciate it if you would choose to stay remotely on topic and to be a nicer person :-D. <br>
</div>
Fri, 18 Nov 2022 13:57:21 +0000