Blame view

include/linux/smb_fs_sb.h 2.25 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
  /*
   *  smb_fs_sb.h
   *
   *  Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
   *  Copyright (C) 1997 by Volker Lendecke
   *
   */
  
  #ifndef _SMB_FS_SB
  #define _SMB_FS_SB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
  #include <linux/types.h>
424264b7b   Jens Axboe   smbfs: add bdi ba...
12
  #include <linux/backing-dev.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  #include <linux/smb.h>
  
  /*
   * Upper limit on the total number of active smb_request structs.
   */
  #define MAX_REQUEST_HARD       256
  
  enum smb_receive_state {
  	SMB_RECV_START,		/* No data read, looking for length + sig */
  	SMB_RECV_HEADER,	/* Reading the header data */
  	SMB_RECV_HCOMPLETE,	/* Done with the header */
  	SMB_RECV_PARAM,		/* Reading parameter words */
  	SMB_RECV_DATA,		/* Reading data bytes */
  	SMB_RECV_END,		/* End of request */
  	SMB_RECV_DROP,		/* Dropping this SMB */
  	SMB_RECV_REQUEST,	/* Received a request and not a reply */
  };
  
  /* structure access macros */
  #define server_from_inode(inode) SMB_SB((inode)->i_sb)
  #define server_from_dentry(dentry) SMB_SB((dentry)->d_sb)
  #define SB_of(server) ((server)->super_block)
  
  struct smb_sb_info {
  	/* List of all smbfs superblocks */
  	struct list_head entry;
  
          enum smb_conn_state state;
  	struct file * sock_file;
  	int conn_error;
  	enum smb_receive_state rstate;
  
  	atomic_t nr_requests;
  	struct list_head xmitq;
  	struct list_head recvq;
  	u16 mid;
  
          struct smb_mount_data_kernel *mnt;
  
  	/* Connections are counted. Each time a new socket arrives,
  	 * generation is incremented.
  	 */
  	unsigned int generation;
a71113da4   Eric W. Biederman   [PATCH] smbfs: Ma...
56
  	struct pid *conn_pid;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  	struct smb_conn_opt opt;
  	wait_queue_head_t conn_wq;
  	int conn_complete;
  	struct semaphore sem;
  
  	unsigned char      header[SMB_HEADER_LEN + 20*2 + 2];
  	u32                header_len;
  	u32                smb_len;
  	u32                smb_read;
  
          /* We use our own data_ready callback, but need the original one */
          void *data_ready;
  
  	/* nls pointers for codepage conversions */
  	struct nls_table *remote_nls;
  	struct nls_table *local_nls;
  
  	struct smb_ops *ops;
  
  	struct super_block *super_block;
424264b7b   Jens Axboe   smbfs: add bdi ba...
77
78
  
  	struct backing_dev_info bdi;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
  };
  
  static inline int
  smb_lock_server_interruptible(struct smb_sb_info *server)
  {
  	return down_interruptible(&(server->sem));
  }
  
  static inline void
  smb_lock_server(struct smb_sb_info *server)
  {
  	down(&(server->sem));
  }
  
  static inline void
  smb_unlock_server(struct smb_sb_info *server)
  {
  	up(&(server->sem));
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
98
  #endif