1a7ce5b29Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 2a7ce5b29Sopenharmony_ci/* 3a7ce5b29Sopenharmony_ci * Copyright (C) 2020 Hyunchul Lee <hyc.lee@gmail.com> 4a7ce5b29Sopenharmony_ci */ 5a7ce5b29Sopenharmony_ci#ifndef _REPAIR_H 6a7ce5b29Sopenharmony_ci#define _REPAIR_H 7a7ce5b29Sopenharmony_ci 8a7ce5b29Sopenharmony_ci#define ER_BS_CHECKSUM 0x00000001 9a7ce5b29Sopenharmony_ci#define ER_BS_BOOT_REGION 0x00000002 10a7ce5b29Sopenharmony_ci#define ER_DE_CHECKSUM 0x00001001 11a7ce5b29Sopenharmony_ci#define ER_DE_UNKNOWN 0x00001002 12a7ce5b29Sopenharmony_ci#define ER_DE_FILE 0x00001010 13a7ce5b29Sopenharmony_ci#define ER_DE_SECONDARY_COUNT 0x00001011 14a7ce5b29Sopenharmony_ci#define ER_DE_STREAM 0x00001020 15a7ce5b29Sopenharmony_ci#define ER_DE_NAME 0x00001030 16a7ce5b29Sopenharmony_ci#define ER_DE_NAME_HASH 0x00001031 17a7ce5b29Sopenharmony_ci#define ER_DE_NAME_LEN 0x00001032 18a7ce5b29Sopenharmony_ci#define ER_DE_DOT_NAME 0x00001033 19a7ce5b29Sopenharmony_ci#define ER_FILE_VALID_SIZE 0x00002001 20a7ce5b29Sopenharmony_ci#define ER_FILE_INVALID_CLUS 0x00002002 21a7ce5b29Sopenharmony_ci#define ER_FILE_FIRST_CLUS 0x00002003 22a7ce5b29Sopenharmony_ci#define ER_FILE_SMALLER_SIZE 0x00002004 23a7ce5b29Sopenharmony_ci#define ER_FILE_LARGER_SIZE 0x00002005 24a7ce5b29Sopenharmony_ci#define ER_FILE_DUPLICATED_CLUS 0x00002006 25a7ce5b29Sopenharmony_ci#define ER_FILE_ZERO_NOFAT 0x00002007 26a7ce5b29Sopenharmony_ci 27a7ce5b29Sopenharmony_citypedef unsigned int er_problem_code_t; 28a7ce5b29Sopenharmony_cistruct exfat_fsck; 29a7ce5b29Sopenharmony_ci 30a7ce5b29Sopenharmony_ciint exfat_repair_ask(struct exfat_fsck *fsck, er_problem_code_t prcode, 31a7ce5b29Sopenharmony_ci const char *fmt, ...); 32a7ce5b29Sopenharmony_ci 33a7ce5b29Sopenharmony_ci#endif 34