|
Last change
on this file was
2,
checked in by phkim, 11 years ago
|
|
1.phkim
- revision copy newcon3sk r27
|
-
Property svn:executable set to
*
|
|
File size:
717 bytes
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | * efs_fs.h |
|---|
| 3 | * |
|---|
| 4 | * Copyright (c) 1999 Al Smith |
|---|
| 5 | * |
|---|
| 6 | * Portions derived from work (c) 1995,1996 Christian Vogelgsang. |
|---|
| 7 | */ |
|---|
| 8 | |
|---|
| 9 | #ifndef __EFS_FS_H__ |
|---|
| 10 | #define __EFS_FS_H__ |
|---|
| 11 | |
|---|
| 12 | #define EFS_VERSION "1.0a" |
|---|
| 13 | |
|---|
| 14 | static const char cprt[] = "EFS: "EFS_VERSION" - (c) 1999 Al Smith <Al.Smith@aeschi.ch.eu.org>"; |
|---|
| 15 | |
|---|
| 16 | /* 1 block is 512 bytes */ |
|---|
| 17 | #define EFS_BLOCKSIZE_BITS 9 |
|---|
| 18 | #define EFS_BLOCKSIZE (1 << EFS_BLOCKSIZE_BITS) |
|---|
| 19 | |
|---|
| 20 | #include <linux/fs.h> |
|---|
| 21 | #include <linux/efs_fs_i.h> |
|---|
| 22 | #include <linux/efs_fs_sb.h> |
|---|
| 23 | #include <linux/efs_dir.h> |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | struct statfs; |
|---|
| 28 | |
|---|
| 29 | extern struct inode_operations efs_dir_inode_operations; |
|---|
| 30 | extern struct file_operations efs_dir_operations; |
|---|
| 31 | extern struct address_space_operations efs_symlink_aops; |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | |
|---|
| 36 | #endif /* __EFS_FS_H__ */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.