2022-06-03 19:15:11 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
2018-10-29 13:06:35 +00:00
|
|
|
* Copyright (c) Intel Corporation.
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FTL_RELOC_H
|
|
|
|
#define FTL_RELOC_H
|
|
|
|
|
2019-01-24 18:47:12 +00:00
|
|
|
#include "spdk/stdinc.h"
|
|
|
|
#include "spdk/ftl.h"
|
2018-10-29 13:06:35 +00:00
|
|
|
|
|
|
|
struct ftl_reloc;
|
|
|
|
struct ftl_band;
|
|
|
|
|
|
|
|
struct ftl_reloc *ftl_reloc_init(struct spdk_ftl_dev *dev);
|
|
|
|
void ftl_reloc_free(struct ftl_reloc *reloc);
|
|
|
|
void ftl_reloc_add(struct ftl_reloc *reloc, struct ftl_band *band,
|
2019-10-24 14:36:42 +00:00
|
|
|
size_t offset, size_t num_blocks, int prio, bool is_defrag);
|
2020-07-31 09:15:57 +00:00
|
|
|
bool ftl_reloc(struct ftl_reloc *reloc);
|
2018-10-29 13:06:35 +00:00
|
|
|
void ftl_reloc_halt(struct ftl_reloc *reloc);
|
|
|
|
void ftl_reloc_resume(struct ftl_reloc *reloc);
|
|
|
|
bool ftl_reloc_is_halted(const struct ftl_reloc *reloc);
|
2019-08-21 13:49:55 +00:00
|
|
|
bool ftl_reloc_is_defrag_active(const struct ftl_reloc *reloc);
|
|
|
|
|
2018-10-29 13:06:35 +00:00
|
|
|
#endif /* FTL_RELOC_H */
|