| /* SPDX-License-Identifier: GPL-2.0+ */ |
| /* |
| * Copyright (C), 2008-2021, OPPO Mobile Comm Corp., Ltd. |
| * Created by Huang Jianan <huangjianan@oppo.com> |
| */ |
| #ifndef __EROFS_COMPRESS_HINTS_H |
| #define __EROFS_COMPRESS_HINTS_H |
| |
| #ifdef __cplusplus |
| extern "C" |
| { |
| #endif |
| |
| #include "erofs/internal.h" |
| #include <sys/types.h> |
| #include <regex.h> |
| |
| struct erofs_compress_hints { |
| struct list_head list; |
| |
| regex_t reg; |
| unsigned int physical_clusterblks; |
| }; |
| |
| bool z_erofs_apply_compress_hints(struct erofs_inode *inode); |
| void erofs_cleanup_compress_hints(void); |
| int erofs_load_compress_hints(void); |
| |
| #ifdef __cplusplus |
| } |
| #endif |
| |
| #endif |