1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright 2018 Google LLC 4 */ 5 6 #ifndef _INCFS_VFS_H 7 #define _INCFS_VFS_H 8 9 void incfs_kill_sb(struct super_block *sb); 10 struct dentry *incfs_mount_fs(struct file_system_type *type, int flags, 11 const char *dev_name, void *data); 12 13 #endif 14