You've already forked linux-apfs-oot
mirror of
https://github.com/linux-apfs/linux-apfs-oot.git
synced 2026-05-01 15:01:20 -07:00
31 lines
786 B
C
31 lines
786 B
C
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
|
/*
|
||
|
|
* linux/fs/apfs/apfs.h
|
||
|
|
*
|
||
|
|
* Copyright (C) 2018 Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com>
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef _APFS_H
|
||
|
|
#define _APFS_H
|
||
|
|
|
||
|
|
#define EFSBADCRC EBADMSG /* Bad CRC detected */
|
||
|
|
#define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */
|
||
|
|
|
||
|
|
/*
|
||
|
|
* Inode and file operations
|
||
|
|
*/
|
||
|
|
|
||
|
|
/* file.c */
|
||
|
|
extern const struct file_operations apfs_file_operations;
|
||
|
|
extern const struct inode_operations apfs_file_inode_operations;
|
||
|
|
|
||
|
|
/* namei.c */
|
||
|
|
extern const struct inode_operations apfs_dir_inode_operations;
|
||
|
|
extern const struct inode_operations apfs_special_inode_operations;
|
||
|
|
extern const struct dentry_operations apfs_dentry_operations;
|
||
|
|
|
||
|
|
/* symlink.c */
|
||
|
|
extern const struct inode_operations apfs_symlink_inode_operations;
|
||
|
|
|
||
|
|
#endif /* _APFS_H */
|