We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ffc80c commit d3ee24cCopy full SHA for d3ee24c
rust/kernel/alloc.rs
@@ -66,7 +66,7 @@ pub mod flags {
66
/// The same as [`GFP_KERNEL`], except the allocation is accounted to kmemcg.
67
pub const GFP_KERNEL_ACCOUNT: Flags = Flags(bindings::GFP_KERNEL_ACCOUNT);
68
69
- /// Ror kernel allocations that should not stall for direct reclaim, start physical IO or
+ /// For kernel allocations that should not stall for direct reclaim, start physical IO or
70
/// use any filesystem callback. It is very likely to fail to allocate memory, even for very
71
/// small allocations.
72
pub const GFP_NOWAIT: Flags = Flags(bindings::GFP_NOWAIT);
0 commit comments