// SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2023 Red Hat */ #include "packer.h" #include <linux/atomic.h> #include <linux/blkdev.h> #include "logger.h" #include "memory-alloc.h" #include "permassert.h" #include "string-utils.h" #include "admin-state.h" #include "completion.h" #include "constants.h" #include "data-vio.h" #include "dedupe.h" #include "encodings.h" #include "io-submitter.h" #include "physical-zone.h" #include "status-codes.h" #include "vdo.h" #include "vio.h" static const struct version_number COMPRESSED_BLOCK_1_0 = …; #define COMPRESSED_BLOCK_1_0_SIZE … /** * vdo_get_compressed_block_fragment() - Get a reference to a compressed fragment from a compressed * block. * @mapping_state [in] The mapping state for the look up. * @compressed_block [in] The compressed block that was read from disk. * @fragment_offset [out] The offset of the fragment within a compressed block. * @fragment_size [out] The size of the fragment. * * Return: If a valid compressed fragment is found, VDO_SUCCESS; otherwise, VDO_INVALID_FRAGMENT if * the fragment is invalid. */ int vdo_get_compressed_block_fragment(enum block_mapping_state mapping_state, struct compressed_block *block, u16 *fragment_offset, u16 *fragment_size) { … } /** * assert_on_packer_thread() - Check that we are on the packer thread. * @packer: The packer. * @caller: The function which is asserting. */ static inline void assert_on_packer_thread(struct packer *packer, const char *caller) { … } /** * insert_in_sorted_list() - Insert a bin to the list. * @packer: The packer. * @bin: The bin to move to its sorted position. * * The list is in ascending order of free space. Since all bins are already in the list, this * actually moves the bin to the correct position in the list. */ static void insert_in_sorted_list(struct packer *packer, struct packer_bin *bin) { … } /** * make_bin() - Allocate a bin and put it into the packer's list. * @packer: The packer. */ static int __must_check make_bin(struct packer *packer) { … } /** * vdo_make_packer() - Make a new block packer. * * @vdo: The vdo to which this packer belongs. * @bin_count: The number of partial bins to keep in memory. * @packer_ptr: A pointer to hold the new packer. * * Return: VDO_SUCCESS or an error */ int vdo_make_packer(struct vdo *vdo, block_count_t bin_count, struct packer **packer_ptr) { … } /** * vdo_free_packer() - Free a block packer. * @packer: The packer to free. */ void vdo_free_packer(struct packer *packer) { … } /** * get_packer_from_data_vio() - Get the packer from a data_vio. * @data_vio: The data_vio. * * Return: The packer from the VDO to which the data_vio belongs. */ static inline struct packer *get_packer_from_data_vio(struct data_vio *data_vio) { … } /** * vdo_get_packer_statistics() - Get the current statistics from the packer. * @packer: The packer to query. * * Return: a copy of the current statistics for the packer. */ struct packer_statistics vdo_get_packer_statistics(const struct packer *packer) { … } /** * abort_packing() - Abort packing a data_vio. * @data_vio: The data_vio to abort. */ static void abort_packing(struct data_vio *data_vio) { … } /** * release_compressed_write_waiter() - Update a data_vio for which a successful compressed write * has completed and send it on its way. * @data_vio: The data_vio to release. * @allocation: The allocation to which the compressed block was written. */ static void release_compressed_write_waiter(struct data_vio *data_vio, struct allocation *allocation) { … } /** * finish_compressed_write() - Finish a compressed block write. * @completion: The compressed write completion. * * This callback is registered in continue_after_allocation(). */ static void finish_compressed_write(struct vdo_completion *completion) { … } static void handle_compressed_write_error(struct vdo_completion *completion) { … } /** * add_to_bin() - Put a data_vio in a specific packer_bin in which it will definitely fit. * @bin: The bin in which to put the data_vio. * @data_vio: The data_vio to add. */ static void add_to_bin(struct packer_bin *bin, struct data_vio *data_vio) { … } /** * remove_from_bin() - Get the next data_vio whose compression has not been canceled from a bin. * @packer: The packer. * @bin: The bin from which to get a data_vio. * * Any canceled data_vios will be moved to the canceled bin. * Return: An uncanceled data_vio from the bin or NULL if there are none. */ static struct data_vio *remove_from_bin(struct packer *packer, struct packer_bin *bin) { … } /** * initialize_compressed_block() - Initialize a compressed block. * @block: The compressed block to initialize. * @size: The size of the agent's fragment. * * This method initializes the compressed block in the compressed write agent. Because the * compressor already put the agent's compressed fragment at the start of the compressed block's * data field, it needn't be copied. So all we need do is initialize the header and set the size of * the agent's fragment. */ static void initialize_compressed_block(struct compressed_block *block, u16 size) { … } /** * pack_fragment() - Pack a data_vio's fragment into the compressed block in which it is already * known to fit. * @compression: The agent's compression_state to pack in to. * @data_vio: The data_vio to pack. * @offset: The offset into the compressed block at which to pack the fragment. * @compressed_block: The compressed block which will be written out when batch is fully packed. * * Return: The new amount of space used. */ static block_size_t __must_check pack_fragment(struct compression_state *compression, struct data_vio *data_vio, block_size_t offset, slot_number_t slot, struct compressed_block *block) { … } /** * compressed_write_end_io() - The bio_end_io for a compressed block write. * @bio: The bio for the compressed write. */ static void compressed_write_end_io(struct bio *bio) { … } /** * write_bin() - Write out a bin. * @packer: The packer. * @bin: The bin to write. */ static void write_bin(struct packer *packer, struct packer_bin *bin) { … } /** * add_data_vio_to_packer_bin() - Add a data_vio to a bin's incoming queue * @packer: The packer. * @bin: The bin to which to add the data_vio. * @data_vio: The data_vio to add to the bin's queue. * * Adds a data_vio to a bin's incoming queue, handles logical space change, and calls physical * space processor. */ static void add_data_vio_to_packer_bin(struct packer *packer, struct packer_bin *bin, struct data_vio *data_vio) { … } /** * select_bin() - Select the bin that should be used to pack the compressed data in a data_vio with * other data_vios. * @packer: The packer. * @data_vio: The data_vio. */ static struct packer_bin * __must_check select_bin(struct packer *packer, struct data_vio *data_vio) { … } /** * vdo_attempt_packing() - Attempt to rewrite the data in this data_vio as part of a compressed * block. * @data_vio: The data_vio to pack. */ void vdo_attempt_packing(struct data_vio *data_vio) { … } /** * check_for_drain_complete() - Check whether the packer has drained. * @packer: The packer. */ static void check_for_drain_complete(struct packer *packer) { … } /** * write_all_non_empty_bins() - Write out all non-empty bins on behalf of a flush or suspend. * @packer: The packer being flushed. */ static void write_all_non_empty_bins(struct packer *packer) { … } /** * vdo_flush_packer() - Request that the packer flush asynchronously. * @packer: The packer to flush. * * All bins with at least two compressed data blocks will be written out, and any solitary pending * VIOs will be released from the packer. While flushing is in progress, any VIOs submitted to * vdo_attempt_packing() will be continued immediately without attempting to pack them. */ void vdo_flush_packer(struct packer *packer) { … } /** * vdo_remove_lock_holder_from_packer() - Remove a lock holder from the packer. * @completion: The data_vio which needs a lock held by a data_vio in the packer. The data_vio's * compression.lock_holder field will point to the data_vio to remove. */ void vdo_remove_lock_holder_from_packer(struct vdo_completion *completion) { … } /** * vdo_increment_packer_flush_generation() - Increment the flush generation in the packer. * @packer: The packer. * * This will also cause the packer to flush so that any VIOs from previous generations will exit * the packer. */ void vdo_increment_packer_flush_generation(struct packer *packer) { … } /** * initiate_drain() - Initiate a drain. * * Implements vdo_admin_initiator_fn. */ static void initiate_drain(struct admin_state *state) { … } /** * vdo_drain_packer() - Drain the packer by preventing any more VIOs from entering the packer and * then flushing. * @packer: The packer to drain. * @completion: The completion to finish when the packer has drained. */ void vdo_drain_packer(struct packer *packer, struct vdo_completion *completion) { … } /** * vdo_resume_packer() - Resume a packer which has been suspended. * @packer: The packer to resume. * @parent: The completion to finish when the packer has resumed. */ void vdo_resume_packer(struct packer *packer, struct vdo_completion *parent) { … } static void dump_packer_bin(const struct packer_bin *bin, bool canceled) { … } /** * vdo_dump_packer() - Dump the packer. * @packer: The packer. * * Context: dumps in a thread-unsafe fashion. */ void vdo_dump_packer(const struct packer *packer) { … }