brintos

brintos / linux-shallow public Read only

0
0
Text · 335 B · ad47c70 Raw
18 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Copyright 2023 Red Hat4 */5 6#ifndef VDO_DUMP_H7#define VDO_DUMP_H8 9#include "types.h"10 11int vdo_dump(struct vdo *vdo, unsigned int argc, char *const *argv, const char *why);12 13void vdo_dump_all(struct vdo *vdo, const char *why);14 15void dump_data_vio(void *data);16 17#endif /* VDO_DUMP_H */18