File: ncp_fs_i.h

package info (click to toggle)
kernel-source-2.2.1 2.2.1-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 61,788 kB
  • ctags: 188,316
  • sloc: ansic: 1,114,164; asm: 49,922; makefile: 8,185; sh: 1,745; perl: 856; tcl: 409; lisp: 218; cpp: 186; awk: 133; sed: 72
file content (36 lines) | stat: -rw-r--r-- 676 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 *  ncp_fs_i.h
 *
 *  Copyright (C) 1995 Volker Lendecke
 *
 */

#ifndef _LINUX_NCP_FS_I
#define _LINUX_NCP_FS_I

#include <linux/ncp.h>

#ifdef __KERNEL__

enum ncp_inode_state {
	NCP_INODE_VALID = 19,	/* Inode currently in use */
	NCP_INODE_LOOKED_UP,	/* directly before iget */
	NCP_INODE_CACHED,	/* in a path to an inode which is in use */
	NCP_INODE_INVALID
};

/*
 * ncp fs inode data (in memory only)
 */
struct ncp_inode_info {
	enum ncp_inode_state state;
	int nused;		/* for directories:
				   number of references in memory */
	struct ncp_inode_info *dir;
	struct ncp_inode_info *next, *prev;
	struct inode *inode;
	struct nw_file_info finfo;
};

#endif
#endif