You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
399 B
16 lines
399 B
/*
|
|
* fs/hypfs/hypfs_diag.h
|
|
* Hypervisor filesystem for Linux on s390.
|
|
*
|
|
* Copyright (C) IBM Corp. 2006
|
|
* Author(s): Michael Holzheu <holzheu@de.ibm.com>
|
|
*/
|
|
|
|
#ifndef _HYPFS_DIAG_H_
|
|
#define _HYPFS_DIAG_H_
|
|
|
|
extern int hypfs_diag_init(void);
|
|
extern void hypfs_diag_exit(void);
|
|
extern int hypfs_diag_create_files(struct super_block *sb, struct dentry *root);
|
|
|
|
#endif /* _HYPFS_DIAG_H_ */
|
|
|