Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions doc/admin-guide/plugins/slice.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,17 +113,6 @@ The slice plugin supports the following options::
Requires setting up an intermediate loopback remap rule.
-r for short

--throttle (optional)
Under certain circumstances where many contiguous slices are in
RAM cache ATS will aggressively try to push these through the
slice plugin. The downside of this is that all these contiguous
slices end up being marked as fresh even if the downstream
client aborts. This option keeps track of how much data the
client has already passed down and slows down issuing new
slice requests.
Normally leave this off.
-o for short

--prefetch-count=<int> (optional)
Default is 0
Prefetches successive 'n' slice block requests in the background
Expand Down
2 changes: 1 addition & 1 deletion plugins/experimental/slice/Config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Config::fromArgs(int const argc, char const *const argv[])
// getopt assumes args start at '1' so this hack is needed
char *const *argvp = (const_cast<char *const *>(argv) - 1);
for (;;) {
int const opt = getopt_long(argc + 1, argvp, "b:de:i:lop:r:t:", longopts, nullptr);
int const opt = getopt_long(argc + 1, argvp, "b:de:i:lp:r:t:", longopts, nullptr);
if (-1 == opt) {
break;
}
Expand Down