30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From da13491740d2bf3086856aefe70481f9d1ca851e Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Sat, 9 Jul 2016 12:22:03 +0100
|
|
Subject: [PATCH 01/11] docs: Small clarification to nbdkit-plugin man page.
|
|
|
|
---
|
|
docs/nbdkit-plugin.pod | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/docs/nbdkit-plugin.pod b/docs/nbdkit-plugin.pod
|
|
index 4a44285..30e1f86 100644
|
|
--- a/docs/nbdkit-plugin.pod
|
|
+++ b/docs/nbdkit-plugin.pod
|
|
@@ -348,9 +348,9 @@ C<.flush> callback has been defined.
|
|
int is_rotational (void *handle);
|
|
|
|
This is called during the option negotiation phase to find out if the
|
|
-backing disk is a rotational medium (like a disk) or not (like an
|
|
-SSD). If true, this may cause the client to reorder requests to make
|
|
-them more efficient for a slow rotating disk.
|
|
+backing disk is a rotational medium (like a traditional hard disk) or
|
|
+not (like an SSD). If true, this may cause the client to reorder
|
|
+requests to make them more efficient for a slow rotating disk.
|
|
|
|
If there is an error, C<.is_rotational> should call C<nbdkit_error>
|
|
with an error message and return C<-1>.
|
|
--
|
|
2.7.4
|
|
|