/* SPDX-License-Identifier: GPL-2.0-only */ /* * filecheck.h * * Online file check. * * Copyright (C) 2016 SuSE. All rights reserved. */ #ifndef FILECHECK_H #define FILECHECK_H #include <linux/types.h> #include <linux/list.h> /* File check errno */ enum { … }; #define OCFS2_FILECHECK_ERR_START … #define OCFS2_FILECHECK_ERR_END … struct ocfs2_filecheck { … }; #define OCFS2_FILECHECK_MAXSIZE … #define OCFS2_FILECHECK_MINSIZE … /* File check operation type */ enum { … }; struct ocfs2_filecheck_sysfs_entry { … }; int ocfs2_filecheck_create_sysfs(struct ocfs2_super *osb); void ocfs2_filecheck_remove_sysfs(struct ocfs2_super *osb); #endif /* FILECHECK_H */