Update checked in manpage

parent c9079857
......@@ -666,8 +666,8 @@ Decreasing ``dsksize``
.. _xfellow.tune():
STRING xfellow.tune([INT logbuffer_size], [DURATION logbuffer_flush_interval], [REAL log_rewrite_ratio], [INT chunk_exponent], [BYTES chunk_bytes], [INT wait_table_exponent], [INT lru_exponent], [INT dsk_reserve_chunks], [INT mem_reserve_chunks], [BYTES objsize_max], [INT objsize_update_min_log2_ratio], [INT objsize_update_max_log2_ratio], [INT objsize_update_min_occupancy], [INT objsize_update_max_occupancy], [INT cram], [INT readahead], [BYTES discard_immediate], [INT io_batch_min], [INT io_batch_max], [ENUM hash_obj], [ENUM hash_log], [ENUM ioerr_obj], [ENUM ioerr_log], [ENUM allocerr_obj], [ENUM allocerr_log])
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
STRING xfellow.tune([INT logbuffer_size], [DURATION logbuffer_flush_interval], [REAL log_rewrite_ratio], [INT chunk_exponent], [BYTES chunk_bytes], [INT wait_table_exponent], [INT lru_exponent], [INT dsk_reserve_chunks], [INT mem_reserve_chunks], [BYTES objsize_max], [INT objsize_update_min_log2_ratio], [INT objsize_update_max_log2_ratio], [INT objsize_update_min_occupancy], [INT objsize_update_max_occupancy], [INT cram], [INT readahead], [BYTES discard_immediate], [INT io_batch_min], [INT io_batch_max], [ENUM hash_obj], [ENUM hash_log], [ENUM ioerr_obj], [ENUM ioerr_log], [ENUM allocerr_obj], [ENUM allocerr_log], [INT panic_flags])
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
::
......@@ -696,7 +696,8 @@ STRING xfellow.tune([INT logbuffer_size], [DURATION logbuffer_flush_interval], [
[ENUM {panic, purge} ioerr_obj],
[ENUM {panic, fail} ioerr_log],
[ENUM {panic, purge} allocerr_obj],
[ENUM {panic, fail} allocerr_log]
[ENUM {panic, fail} allocerr_log],
[INT panic_flags]
)
Using the `xfellow.tune()`_ method, the following parameters of the
......@@ -1087,6 +1088,13 @@ fellow storage can be fine tuned:
normal circumstances and instead wait for LRU to make room,
``panic`` is intended also for production use.
* *panic_flags*
Used to increase verbosity of panic messages, read as a bit field.
0x01 : dump full fellow_cache_seg
0x02 : dump full fellow_cache_seglist / fellow_disk_seglist
.. _xfellow.storage():
STEVEDORE xfellow.storage()
......@@ -1121,8 +1129,8 @@ Restricted to: ``vcl_init``.
.. _slash.tune_fellow():
STRING tune_fellow(STEVEDORE storage, [INT logbuffer_size], [DURATION logbuffer_flush_interval], [REAL log_rewrite_ratio], [INT chunk_exponent], [BYTES chunk_bytes], [INT wait_table_exponent], [INT lru_exponent], [INT dsk_reserve_chunks], [INT mem_reserve_chunks], [BYTES objsize_max], [INT objsize_update_min_log2_ratio], [INT objsize_update_max_log2_ratio], [INT objsize_update_min_occupancy], [INT objsize_update_max_occupancy], [INT cram], [INT readahead], [BYTES discard_immediate], [INT io_batch_min], [INT io_batch_max], [ENUM hash_obj], [ENUM hash_log], [ENUM ioerr_obj], [ENUM ioerr_log], [ENUM allocerr_obj], [ENUM allocerr_log])
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
STRING tune_fellow(STEVEDORE storage, [INT logbuffer_size], [DURATION logbuffer_flush_interval], [REAL log_rewrite_ratio], [INT chunk_exponent], [BYTES chunk_bytes], [INT wait_table_exponent], [INT lru_exponent], [INT dsk_reserve_chunks], [INT mem_reserve_chunks], [BYTES objsize_max], [INT objsize_update_min_log2_ratio], [INT objsize_update_max_log2_ratio], [INT objsize_update_min_occupancy], [INT objsize_update_max_occupancy], [INT cram], [INT readahead], [BYTES discard_immediate], [INT io_batch_min], [INT io_batch_max], [ENUM hash_obj], [ENUM hash_log], [ENUM ioerr_obj], [ENUM ioerr_log], [ENUM allocerr_obj], [ENUM allocerr_log], [INT panic_flags])
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
::
......@@ -1152,7 +1160,8 @@ STRING tune_fellow(STEVEDORE storage, [INT logbuffer_size], [DURATION logbuffer_
[ENUM {panic, purge} ioerr_obj],
[ENUM {panic, fail} ioerr_log],
[ENUM {panic, purge} allocerr_obj],
[ENUM {panic, fail} allocerr_log]
[ENUM {panic, fail} allocerr_log],
[INT panic_flags]
)
Tune the given globally defined fellow storage, for all other
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment