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 87db50e commit 8d38c40Copy full SHA for 8d38c40
src/features.rs
@@ -539,9 +539,13 @@ pub mod balloon {
539
#[doc(alias = "VIRTIO_BALLOON_F_STATS_VQ")]
540
const STATS_VQ = 1 << 1;
541
542
- /// Deflate of the balloon is always? permitted on guest out of memory condition.
+ /// Deflate balloon on guest out of memory condition.
543
///
544
- /// TODO: Spec is a bit confusing on this feature, see <https://github.com/oasis-tcs/virtio-spec/issues/228>
+ /// <div class="warning">
545
+ ///
546
+ /// The specification is a bit confusing on this feature, see [oasis-tcs/virtio-spec#228](https://github.com/oasis-tcs/virtio-spec/issues/228).
547
548
+ /// </div>
549
#[doc(alias = "VIRTIO_BALLOON_F_DEFLATE_ON_OOM")]
550
const DEFLATE_ON_OOM = 1 << 2;
551
0 commit comments