-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michael Holzheu
authored and
Linus Torvalds
committed
Jun 23, 2006
1 parent
f973787
commit 1713eca
Showing
8 changed files
with
1,251 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b9e122c80cd2e10fe18678c63db4717871ed31cf | ||
refs/heads/master: 24bbb1faf3f0420eb252dd0fdc1e477b1d4d73bd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# | ||
# Makefile for the linux hypfs filesystem routines. | ||
# | ||
|
||
obj-$(CONFIG_S390_HYPFS_FS) += s390_hypfs.o | ||
|
||
s390_hypfs-objs := inode.o hypfs_diag.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* fs/hypfs/hypfs.h | ||
* Hypervisor filesystem for Linux on s390. | ||
* | ||
* Copyright (C) IBM Corp. 2006 | ||
* Author(s): Michael Holzheu <holzheu@de.ibm.com> | ||
*/ | ||
|
||
#ifndef _HYPFS_H_ | ||
#define _HYPFS_H_ | ||
|
||
#include <linux/fs.h> | ||
#include <linux/types.h> | ||
|
||
#define REG_FILE_MODE 0440 | ||
#define UPDATE_FILE_MODE 0220 | ||
#define DIR_MODE 0550 | ||
|
||
extern struct dentry *hypfs_mkdir(struct super_block *sb, struct dentry *parent, | ||
const char *name); | ||
|
||
extern struct dentry *hypfs_create_u64(struct super_block *sb, | ||
struct dentry *dir, const char *name, | ||
__u64 value); | ||
|
||
extern struct dentry *hypfs_create_str(struct super_block *sb, | ||
struct dentry *dir, const char *name, | ||
char *string); | ||
|
||
#endif /* _HYPFS_H_ */ |
Oops, something went wrong.