-boolean_t compressor_store_stop_compaction = FALSE;
-boolean_t vm_swapfile_create_needed = FALSE;
-boolean_t vm_swapfile_gc_needed = FALSE;
-
-int vm_swapper_throttle = -1;
-uint64_t vm_swapout_thread_id;
-
-uint64_t vm_swap_put_failures = 0;
-uint64_t vm_swap_get_failures = 0;
-int vm_num_swap_files_config = 0;
-int vm_num_swap_files = 0;
-int vm_num_pinned_swap_files = 0;
-int vm_swapout_thread_processed_segments = 0;
-int vm_swapout_thread_awakened = 0;
-int vm_swapfile_create_thread_awakened = 0;
-int vm_swapfile_create_thread_running = 0;
-int vm_swapfile_gc_thread_awakened = 0;
-int vm_swapfile_gc_thread_running = 0;
-
-int64_t vm_swappin_avail = 0;
-boolean_t vm_swappin_enabled = FALSE;
-unsigned int vm_swapfile_total_segs_alloced = 0;
-unsigned int vm_swapfile_total_segs_used = 0;
-
-char swapfilename[MAX_SWAPFILENAME_LEN + 1] = SWAP_FILE_NAME;
+boolean_t compressor_store_stop_compaction = FALSE;
+boolean_t vm_swapfile_create_needed = FALSE;
+boolean_t vm_swapfile_gc_needed = FALSE;
+
+int vm_swapper_throttle = -1;
+uint64_t vm_swapout_thread_id;
+
+uint64_t vm_swap_put_failures = 0; /* Likely failed I/O. Data is still in memory. */
+uint64_t vm_swap_get_failures = 0; /* Fatal */
+uint64_t vm_swap_put_failures_no_swap_file = 0; /* Possibly not fatal because we might just need a new swapfile. */
+int vm_num_swap_files_config = 0;
+int vm_num_swap_files = 0;
+int vm_num_pinned_swap_files = 0;
+int vm_swapout_thread_processed_segments = 0;
+int vm_swapout_thread_awakened = 0;
+int vm_swapfile_create_thread_awakened = 0;
+int vm_swapfile_create_thread_running = 0;
+int vm_swapfile_gc_thread_awakened = 0;
+int vm_swapfile_gc_thread_running = 0;
+
+int64_t vm_swappin_avail = 0;
+boolean_t vm_swappin_enabled = FALSE;
+unsigned int vm_swapfile_total_segs_alloced = 0;
+unsigned int vm_swapfile_total_segs_used = 0;
+
+char swapfilename[MAX_SWAPFILENAME_LEN + 1] = SWAP_FILE_NAME;