blob: 51e888fcef2d8ac186d2c6329da5d28aa27aa92f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/cifsfs.c
3 *
4 * Copyright (C) International Business Machines Corp., 2002,2004
5 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * Common Internet FileSystem (CIFS) client
8 *
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24/* Note that BB means BUGBUG (ie something to fix eventually) */
25
26#include <linux/module.h>
27#include <linux/fs.h>
28#include <linux/mount.h>
29#include <linux/slab.h>
30#include <linux/init.h>
31#include <linux/list.h>
32#include <linux/seq_file.h>
33#include <linux/vfs.h>
34#include <linux/mempool.h>
Steve French6ab16d22005-11-29 20:55:11 -080035#include <linux/delay.h>
Steve French45af7a02006-04-21 22:52:25 +000036#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "cifsfs.h"
38#include "cifspdu.h"
39#define DECLARE_GLOBALS_HERE
40#include "cifsglob.h"
41#include "cifsproto.h"
42#include "cifs_debug.h"
43#include "cifs_fs_sb.h"
44#include <linux/mm.h>
45#define CIFS_MAGIC_NUMBER 0xFF534D42 /* the first four bytes of SMB PDUs */
46
47#ifdef CONFIG_CIFS_QUOTA
48static struct quotactl_ops cifs_quotactl_ops;
49#endif
50
51int cifsFYI = 0;
52int cifsERROR = 1;
53int traceSMB = 0;
54unsigned int oplockEnabled = 1;
55unsigned int experimEnabled = 0;
56unsigned int linuxExtEnabled = 1;
57unsigned int lookupCacheEnabled = 1;
58unsigned int multiuser_mount = 0;
Steve French39798772006-05-31 22:40:51 +000059unsigned int extended_security = CIFSSEC_DEF;
60/* unsigned int ntlmv2_support = 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061unsigned int sign_CIFS_PDUs = 1;
62extern struct task_struct * oplockThread; /* remove sparse warning */
63struct task_struct * oplockThread = NULL;
Steve French8d0d5092005-08-18 09:41:43 -070064extern struct task_struct * dnotifyThread; /* remove sparse warning */
65struct task_struct * dnotifyThread = NULL;
Steve Frenche33c74d2006-09-28 20:35:48 +000066static struct super_operations cifs_super_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE;
68module_param(CIFSMaxBufSize, int, 0);
69MODULE_PARM_DESC(CIFSMaxBufSize,"Network buffer size (not including header). Default: 16384 Range: 8192 to 130048");
70unsigned int cifs_min_rcv = CIFS_MIN_RCV_POOL;
71module_param(cifs_min_rcv, int, 0);
72MODULE_PARM_DESC(cifs_min_rcv,"Network buffers in pool. Default: 4 Range: 1 to 64");
73unsigned int cifs_min_small = 30;
74module_param(cifs_min_small, int, 0);
75MODULE_PARM_DESC(cifs_min_small,"Small network buffers in pool. Default: 30 Range: 2 to 256");
76unsigned int cifs_max_pending = CIFS_MAX_REQ;
77module_param(cifs_max_pending, int, 0);
78MODULE_PARM_DESC(cifs_max_pending,"Simultaneous requests to server. Default: 50 Range: 2 to 256");
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080extern mempool_t *cifs_sm_req_poolp;
81extern mempool_t *cifs_req_poolp;
82extern mempool_t *cifs_mid_poolp;
83
84extern kmem_cache_t *cifs_oplock_cachep;
85
86static int
87cifs_read_super(struct super_block *sb, void *data,
88 const char *devname, int silent)
89{
90 struct inode *inode;
91 struct cifs_sb_info *cifs_sb;
92 int rc = 0;
93
94 sb->s_flags |= MS_NODIRATIME; /* and probably even noatime */
Eric Sesterhenna048d7a2006-02-21 22:33:09 +000095 sb->s_fs_info = kzalloc(sizeof(struct cifs_sb_info),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 cifs_sb = CIFS_SB(sb);
97 if(cifs_sb == NULL)
98 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 rc = cifs_mount(sb, cifs_sb, data, devname);
101
102 if (rc) {
103 if (!silent)
104 cERROR(1,
105 ("cifs_mount failed w/return code = %d", rc));
106 goto out_mount_failed;
107 }
108
109 sb->s_magic = CIFS_MAGIC_NUMBER;
110 sb->s_op = &cifs_super_ops;
111/* if(cifs_sb->tcon->ses->server->maxBuf > MAX_CIFS_HDR_SIZE + 512)
112 sb->s_blocksize = cifs_sb->tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE; */
113#ifdef CONFIG_CIFS_QUOTA
114 sb->s_qcop = &cifs_quotactl_ops;
115#endif
116 sb->s_blocksize = CIFS_MAX_MSGSIZE;
117 sb->s_blocksize_bits = 14; /* default 2**14 = CIFS_MAX_MSGSIZE */
118 inode = iget(sb, ROOT_I);
119
120 if (!inode) {
121 rc = -ENOMEM;
122 goto out_no_root;
123 }
124
125 sb->s_root = d_alloc_root(inode);
126
127 if (!sb->s_root) {
128 rc = -ENOMEM;
129 goto out_no_root;
130 }
131
132 return 0;
133
134out_no_root:
135 cERROR(1, ("cifs_read_super: get root inode failed"));
136 if (inode)
137 iput(inode);
138
139out_mount_failed:
140 if(cifs_sb) {
141 if(cifs_sb->local_nls)
142 unload_nls(cifs_sb->local_nls);
143 kfree(cifs_sb);
144 }
145 return rc;
146}
147
148static void
149cifs_put_super(struct super_block *sb)
150{
151 int rc = 0;
152 struct cifs_sb_info *cifs_sb;
153
154 cFYI(1, ("In cifs_put_super"));
155 cifs_sb = CIFS_SB(sb);
156 if(cifs_sb == NULL) {
157 cFYI(1,("Empty cifs superblock info passed to unmount"));
158 return;
159 }
160 rc = cifs_umount(sb, cifs_sb);
161 if (rc) {
162 cERROR(1, ("cifs_umount failed with return code %d", rc));
163 }
164 unload_nls(cifs_sb->local_nls);
165 kfree(cifs_sb);
166 return;
167}
168
169static int
David Howells726c3342006-06-23 02:02:58 -0700170cifs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
David Howells726c3342006-06-23 02:02:58 -0700172 struct super_block *sb = dentry->d_sb;
Steve Frenchc81156d2005-04-28 22:41:07 -0700173 int xid;
174 int rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 struct cifs_sb_info *cifs_sb;
176 struct cifsTconInfo *pTcon;
177
178 xid = GetXid();
179
180 cifs_sb = CIFS_SB(sb);
181 pTcon = cifs_sb->tcon;
182
183 buf->f_type = CIFS_MAGIC_NUMBER;
184
185 /* instead could get the real value via SMB_QUERY_FS_ATTRIBUTE_INFO */
Steve Frenchc81156d2005-04-28 22:41:07 -0700186 buf->f_namelen = PATH_MAX; /* PATH_MAX may be too long - it would
187 presumably be total path, but note
188 that some servers (includinng Samba 3)
189 have a shorter maximum path */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 buf->f_files = 0; /* undefined */
191 buf->f_ffree = 0; /* unlimited */
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/* BB we could add a second check for a QFS Unix capability bit */
Steve Frenchf28ac912005-04-28 22:41:07 -0700194/* BB FIXME check CIFS_POSIX_EXTENSIONS Unix cap first FIXME BB */
Steve Frenchc81156d2005-04-28 22:41:07 -0700195 if ((pTcon->ses->capabilities & CAP_UNIX) && (CIFS_POSIX_EXTENSIONS &
196 le64_to_cpu(pTcon->fsUnixInfo.Capability)))
Steve French737b7582005-04-28 22:41:06 -0700197 rc = CIFSSMBQFSPosixInfo(xid, pTcon, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /* Only need to call the old QFSInfo if failed
200 on newer one */
201 if(rc)
Steve French737b7582005-04-28 22:41:06 -0700202 rc = CIFSSMBQFSInfo(xid, pTcon, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Steve French20962432005-09-21 22:05:57 -0700204 /* Old Windows servers do not support level 103, retry with level
205 one if old server failed the previous call */
206 if(rc)
207 rc = SMBOldQFSInfo(xid, pTcon, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /*
209 int f_type;
210 __fsid_t f_fsid;
211 int f_namelen; */
Steve Frenchc81156d2005-04-28 22:41:07 -0700212 /* BB get from info in tcon struct at mount time call to QFSAttrInfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 FreeXid(xid);
Steve Frenchc81156d2005-04-28 22:41:07 -0700214 return 0; /* always return success? what if volume is no
215 longer available? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218static int cifs_permission(struct inode * inode, int mask, struct nameidata *nd)
219{
220 struct cifs_sb_info *cifs_sb;
221
222 cifs_sb = CIFS_SB(inode->i_sb);
223
224 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) {
225 return 0;
226 } else /* file mode might have been restricted at mount time
227 on the client (above and beyond ACL on servers) for
228 servers which do not support setting and viewing mode bits,
229 so allowing client to check permissions is useful */
230 return generic_permission(inode, mask, NULL);
231}
232
233static kmem_cache_t *cifs_inode_cachep;
234static kmem_cache_t *cifs_req_cachep;
235static kmem_cache_t *cifs_mid_cachep;
236kmem_cache_t *cifs_oplock_cachep;
237static kmem_cache_t *cifs_sm_req_cachep;
238mempool_t *cifs_sm_req_poolp;
239mempool_t *cifs_req_poolp;
240mempool_t *cifs_mid_poolp;
241
242static struct inode *
243cifs_alloc_inode(struct super_block *sb)
244{
245 struct cifsInodeInfo *cifs_inode;
246 cifs_inode = kmem_cache_alloc(cifs_inode_cachep, SLAB_KERNEL);
247 if (!cifs_inode)
248 return NULL;
249 cifs_inode->cifsAttrs = 0x20; /* default */
250 atomic_set(&cifs_inode->inUse, 0);
251 cifs_inode->time = 0;
252 /* Until the file is open and we have gotten oplock
253 info back from the server, can not assume caching of
254 file data or metadata */
255 cifs_inode->clientCanCacheRead = FALSE;
256 cifs_inode->clientCanCacheAll = FALSE;
257 cifs_inode->vfs_inode.i_blksize = CIFS_MAX_MSGSIZE;
258 cifs_inode->vfs_inode.i_blkbits = 14; /* 2**14 = CIFS_MAX_MSGSIZE */
Steve Frenche30dcf32005-09-20 20:49:16 -0700259 cifs_inode->vfs_inode.i_flags = S_NOATIME | S_NOCMTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 INIT_LIST_HEAD(&cifs_inode->openFileList);
261 return &cifs_inode->vfs_inode;
262}
263
264static void
265cifs_destroy_inode(struct inode *inode)
266{
267 kmem_cache_free(cifs_inode_cachep, CIFS_I(inode));
268}
269
270/*
271 * cifs_show_options() is for displaying mount options in /proc/mounts.
272 * Not all settable options are displayed but most of the important
273 * ones are.
274 */
275static int
276cifs_show_options(struct seq_file *s, struct vfsmount *m)
277{
278 struct cifs_sb_info *cifs_sb;
279
280 cifs_sb = CIFS_SB(m->mnt_sb);
281
282 if (cifs_sb) {
283 if (cifs_sb->tcon) {
284 seq_printf(s, ",unc=%s", cifs_sb->tcon->treeName);
285 if (cifs_sb->tcon->ses) {
286 if (cifs_sb->tcon->ses->userName)
287 seq_printf(s, ",username=%s",
288 cifs_sb->tcon->ses->userName);
289 if(cifs_sb->tcon->ses->domainName)
290 seq_printf(s, ",domain=%s",
291 cifs_sb->tcon->ses->domainName);
292 }
293 }
294 seq_printf(s, ",rsize=%d",cifs_sb->rsize);
295 seq_printf(s, ",wsize=%d",cifs_sb->wsize);
296 }
297 return 0;
298}
299
300#ifdef CONFIG_CIFS_QUOTA
301int cifs_xquota_set(struct super_block * sb, int quota_type, qid_t qid,
302 struct fs_disk_quota * pdquota)
303{
304 int xid;
305 int rc = 0;
306 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
307 struct cifsTconInfo *pTcon;
308
309 if(cifs_sb)
310 pTcon = cifs_sb->tcon;
311 else
312 return -EIO;
313
314
315 xid = GetXid();
316 if(pTcon) {
317 cFYI(1,("set type: 0x%x id: %d",quota_type,qid));
318 } else {
319 return -EIO;
320 }
321
322 FreeXid(xid);
323 return rc;
324}
325
326int cifs_xquota_get(struct super_block * sb, int quota_type, qid_t qid,
327 struct fs_disk_quota * pdquota)
328{
329 int xid;
330 int rc = 0;
331 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
332 struct cifsTconInfo *pTcon;
333
334 if(cifs_sb)
335 pTcon = cifs_sb->tcon;
336 else
337 return -EIO;
338
339 xid = GetXid();
340 if(pTcon) {
341 cFYI(1,("set type: 0x%x id: %d",quota_type,qid));
342 } else {
343 rc = -EIO;
344 }
345
346 FreeXid(xid);
347 return rc;
348}
349
350int cifs_xstate_set(struct super_block * sb, unsigned int flags, int operation)
351{
352 int xid;
353 int rc = 0;
354 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
355 struct cifsTconInfo *pTcon;
356
357 if(cifs_sb)
358 pTcon = cifs_sb->tcon;
359 else
360 return -EIO;
361
362 xid = GetXid();
363 if(pTcon) {
364 cFYI(1,("flags: 0x%x operation: 0x%x",flags,operation));
365 } else {
366 rc = -EIO;
367 }
368
369 FreeXid(xid);
370 return rc;
371}
372
373int cifs_xstate_get(struct super_block * sb, struct fs_quota_stat *qstats)
374{
375 int xid;
376 int rc = 0;
377 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
378 struct cifsTconInfo *pTcon;
379
380 if(cifs_sb) {
381 pTcon = cifs_sb->tcon;
382 } else {
383 return -EIO;
384 }
385 xid = GetXid();
386 if(pTcon) {
387 cFYI(1,("pqstats %p",qstats));
388 } else {
389 rc = -EIO;
390 }
391
392 FreeXid(xid);
393 return rc;
394}
395
396static struct quotactl_ops cifs_quotactl_ops = {
397 .set_xquota = cifs_xquota_set,
398 .get_xquota = cifs_xquota_set,
399 .set_xstate = cifs_xstate_set,
400 .get_xstate = cifs_xstate_get,
401};
402#endif
403
Trond Myklebust8b512d92006-06-09 09:34:18 -0400404static void cifs_umount_begin(struct vfsmount * vfsmnt, int flags)
Steve French68058e72005-10-10 10:34:22 -0700405{
Steve French5e1253b2005-10-10 14:06:37 -0700406 struct cifs_sb_info *cifs_sb;
Steve French9e2e85f2005-10-10 14:28:38 -0700407 struct cifsTconInfo * tcon;
Steve French68058e72005-10-10 10:34:22 -0700408
Trond Myklebust8b512d92006-06-09 09:34:18 -0400409 if (!(flags & MNT_FORCE))
410 return;
411 cifs_sb = CIFS_SB(vfsmnt->mnt_sb);
Steve French5e1253b2005-10-10 14:06:37 -0700412 if(cifs_sb == NULL)
Steve French9e2e85f2005-10-10 14:28:38 -0700413 return;
414
415 tcon = cifs_sb->tcon;
416 if(tcon == NULL)
417 return;
Steve French5e1253b2005-10-10 14:06:37 -0700418 down(&tcon->tconSem);
419 if (atomic_read(&tcon->useCount) == 1)
420 tcon->tidStatus = CifsExiting;
421 up(&tcon->tconSem);
422
Steve French3a5ff612006-07-14 22:37:11 +0000423 /* cancel_brl_requests(tcon); */ /* BB mark all brl mids as exiting */
Steve French7b7abfe2005-11-09 15:21:09 -0800424 /* cancel_notify_requests(tcon); */
Steve French9e2e85f2005-10-10 14:28:38 -0700425 if(tcon->ses && tcon->ses->server)
Steve French5e1253b2005-10-10 14:06:37 -0700426 {
Steve French7b7abfe2005-11-09 15:21:09 -0800427 cFYI(1,("wake up tasks now - umount begin not complete"));
Steve French9e2e85f2005-10-10 14:28:38 -0700428 wake_up_all(&tcon->ses->server->request_q);
Steve French6ab16d22005-11-29 20:55:11 -0800429 wake_up_all(&tcon->ses->server->response_q);
430 msleep(1); /* yield */
431 /* we have to kick the requests once more */
432 wake_up_all(&tcon->ses->server->response_q);
433 msleep(1);
Steve French5e1253b2005-10-10 14:06:37 -0700434 }
435/* BB FIXME - finish add checks for tidStatus BB */
Steve French68058e72005-10-10 10:34:22 -0700436
437 return;
438}
Steve French68058e72005-10-10 10:34:22 -0700439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440static int cifs_remount(struct super_block *sb, int *flags, char *data)
441{
442 *flags |= MS_NODIRATIME;
443 return 0;
444}
445
Steve French2cd646a2006-09-28 19:43:08 +0000446static struct super_operations cifs_super_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 .read_inode = cifs_read_inode,
448 .put_super = cifs_put_super,
449 .statfs = cifs_statfs,
450 .alloc_inode = cifs_alloc_inode,
451 .destroy_inode = cifs_destroy_inode,
452/* .drop_inode = generic_delete_inode,
453 .delete_inode = cifs_delete_inode, *//* Do not need the above two functions
454 unless later we add lazy close of inodes or unless the kernel forgets to call
455 us with the same number of releases (closes) as opens */
456 .show_options = cifs_show_options,
Steve French7b7abfe2005-11-09 15:21:09 -0800457 .umount_begin = cifs_umount_begin,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 .remount_fs = cifs_remount,
459};
460
David Howells454e2392006-06-23 02:02:57 -0700461static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462cifs_get_sb(struct file_system_type *fs_type,
David Howells454e2392006-06-23 02:02:57 -0700463 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
465 int rc;
466 struct super_block *sb = sget(fs_type, NULL, set_anon_super, NULL);
467
468 cFYI(1, ("Devname: %s flags: %d ", dev_name, flags));
469
470 if (IS_ERR(sb))
David Howells454e2392006-06-23 02:02:57 -0700471 return PTR_ERR(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 sb->s_flags = flags;
474
Theodore Ts'o9b04c992006-03-24 03:15:10 -0800475 rc = cifs_read_super(sb, data, dev_name, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (rc) {
477 up_write(&sb->s_umount);
478 deactivate_super(sb);
David Howells454e2392006-06-23 02:02:57 -0700479 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481 sb->s_flags |= MS_ACTIVE;
David Howells454e2392006-06-23 02:02:57 -0700482 return simple_set_mnt(mnt, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Steve French87c89dd2005-11-17 17:03:00 -0800485static ssize_t cifs_file_writev(struct file *file, const struct iovec *iov,
486 unsigned long nr_segs, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Steve French87c89dd2005-11-17 17:03:00 -0800488 struct inode *inode = file->f_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 ssize_t written;
490
Steve French87c89dd2005-11-17 17:03:00 -0800491 written = generic_file_writev(file, iov, nr_segs, ppos);
492 if (!CIFS_I(inode)->clientCanCacheAll)
493 filemap_fdatawrite(inode->i_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return written;
495}
496
Steve French87c89dd2005-11-17 17:03:00 -0800497static ssize_t cifs_file_aio_write(struct kiocb *iocb, const char __user *buf,
498 size_t count, loff_t pos)
499{
500 struct inode *inode = iocb->ki_filp->f_dentry->d_inode;
501 ssize_t written;
502
503 written = generic_file_aio_write(iocb, buf, count, pos);
504 if (!CIFS_I(inode)->clientCanCacheAll)
505 filemap_fdatawrite(inode->i_mapping);
506 return written;
507}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Steve Frenchc32a0b62006-01-12 14:41:28 -0800509static loff_t cifs_llseek(struct file *file, loff_t offset, int origin)
510{
511 /* origin == SEEK_END => we must revalidate the cached file length */
Steve French0889a942006-09-23 22:11:07 +0000512 if (origin == SEEK_END) {
Steve Frenchc32a0b62006-01-12 14:41:28 -0800513 int retval = cifs_revalidate(file->f_dentry);
514 if (retval < 0)
515 return (loff_t)retval;
516 }
517 return remote_llseek(file, offset, origin);
518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520static struct file_system_type cifs_fs_type = {
521 .owner = THIS_MODULE,
522 .name = "cifs",
523 .get_sb = cifs_get_sb,
524 .kill_sb = kill_anon_super,
525 /* .fs_flags */
526};
527struct inode_operations cifs_dir_inode_ops = {
528 .create = cifs_create,
529 .lookup = cifs_lookup,
530 .getattr = cifs_getattr,
531 .unlink = cifs_unlink,
532 .link = cifs_hardlink,
533 .mkdir = cifs_mkdir,
534 .rmdir = cifs_rmdir,
535 .rename = cifs_rename,
536 .permission = cifs_permission,
537/* revalidate:cifs_revalidate, */
538 .setattr = cifs_setattr,
539 .symlink = cifs_symlink,
540 .mknod = cifs_mknod,
541#ifdef CONFIG_CIFS_XATTR
542 .setxattr = cifs_setxattr,
543 .getxattr = cifs_getxattr,
544 .listxattr = cifs_listxattr,
545 .removexattr = cifs_removexattr,
546#endif
547};
548
549struct inode_operations cifs_file_inode_ops = {
550/* revalidate:cifs_revalidate, */
551 .setattr = cifs_setattr,
552 .getattr = cifs_getattr, /* do we need this anymore? */
553 .rename = cifs_rename,
554 .permission = cifs_permission,
555#ifdef CONFIG_CIFS_XATTR
556 .setxattr = cifs_setxattr,
557 .getxattr = cifs_getxattr,
558 .listxattr = cifs_listxattr,
559 .removexattr = cifs_removexattr,
560#endif
561};
562
563struct inode_operations cifs_symlink_inode_ops = {
564 .readlink = generic_readlink,
565 .follow_link = cifs_follow_link,
566 .put_link = cifs_put_link,
567 .permission = cifs_permission,
568 /* BB add the following two eventually */
569 /* revalidate: cifs_revalidate,
570 setattr: cifs_notify_change, *//* BB do we need notify change */
571#ifdef CONFIG_CIFS_XATTR
572 .setxattr = cifs_setxattr,
573 .getxattr = cifs_getxattr,
574 .listxattr = cifs_listxattr,
575 .removexattr = cifs_removexattr,
576#endif
577};
578
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800579const struct file_operations cifs_file_ops = {
Steve French87c89dd2005-11-17 17:03:00 -0800580 .read = do_sync_read,
581 .write = do_sync_write,
582 .readv = generic_file_readv,
583 .writev = cifs_file_writev,
584 .aio_read = generic_file_aio_read,
585 .aio_write = cifs_file_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 .open = cifs_open,
587 .release = cifs_close,
588 .lock = cifs_lock,
589 .fsync = cifs_fsync,
590 .flush = cifs_flush,
591 .mmap = cifs_file_mmap,
592 .sendfile = generic_file_sendfile,
Steve Frenchc32a0b62006-01-12 14:41:28 -0800593 .llseek = cifs_llseek,
Steve Frenchc67593a2005-04-28 22:41:04 -0700594#ifdef CONFIG_CIFS_POSIX
595 .ioctl = cifs_ioctl,
596#endif /* CONFIG_CIFS_POSIX */
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598#ifdef CONFIG_CIFS_EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 .dir_notify = cifs_dir_notify,
600#endif /* CONFIG_CIFS_EXPERIMENTAL */
601};
602
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800603const struct file_operations cifs_file_direct_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /* no mmap, no aio, no readv -
605 BB reevaluate whether they can be done with directio, no cache */
606 .read = cifs_user_read,
607 .write = cifs_user_write,
608 .open = cifs_open,
609 .release = cifs_close,
610 .lock = cifs_lock,
611 .fsync = cifs_fsync,
612 .flush = cifs_flush,
613 .sendfile = generic_file_sendfile, /* BB removeme BB */
Steve Frenchc67593a2005-04-28 22:41:04 -0700614#ifdef CONFIG_CIFS_POSIX
615 .ioctl = cifs_ioctl,
616#endif /* CONFIG_CIFS_POSIX */
Steve Frenchc32a0b62006-01-12 14:41:28 -0800617 .llseek = cifs_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618#ifdef CONFIG_CIFS_EXPERIMENTAL
619 .dir_notify = cifs_dir_notify,
620#endif /* CONFIG_CIFS_EXPERIMENTAL */
621};
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800622const struct file_operations cifs_file_nobrl_ops = {
Steve French87c89dd2005-11-17 17:03:00 -0800623 .read = do_sync_read,
624 .write = do_sync_write,
625 .readv = generic_file_readv,
626 .writev = cifs_file_writev,
627 .aio_read = generic_file_aio_read,
628 .aio_write = cifs_file_aio_write,
629 .open = cifs_open,
630 .release = cifs_close,
631 .fsync = cifs_fsync,
632 .flush = cifs_flush,
633 .mmap = cifs_file_mmap,
634 .sendfile = generic_file_sendfile,
Steve Frenchc32a0b62006-01-12 14:41:28 -0800635 .llseek = cifs_llseek,
Steve French8b94bcb2005-11-11 11:41:00 -0800636#ifdef CONFIG_CIFS_POSIX
Steve French87c89dd2005-11-17 17:03:00 -0800637 .ioctl = cifs_ioctl,
Steve French8b94bcb2005-11-11 11:41:00 -0800638#endif /* CONFIG_CIFS_POSIX */
639
640#ifdef CONFIG_CIFS_EXPERIMENTAL
Steve French87c89dd2005-11-17 17:03:00 -0800641 .dir_notify = cifs_dir_notify,
Steve French8b94bcb2005-11-11 11:41:00 -0800642#endif /* CONFIG_CIFS_EXPERIMENTAL */
643};
644
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800645const struct file_operations cifs_file_direct_nobrl_ops = {
Steve French87c89dd2005-11-17 17:03:00 -0800646 /* no mmap, no aio, no readv -
647 BB reevaluate whether they can be done with directio, no cache */
648 .read = cifs_user_read,
649 .write = cifs_user_write,
650 .open = cifs_open,
651 .release = cifs_close,
652 .fsync = cifs_fsync,
653 .flush = cifs_flush,
654 .sendfile = generic_file_sendfile, /* BB removeme BB */
Steve French8b94bcb2005-11-11 11:41:00 -0800655#ifdef CONFIG_CIFS_POSIX
Steve French87c89dd2005-11-17 17:03:00 -0800656 .ioctl = cifs_ioctl,
Steve French8b94bcb2005-11-11 11:41:00 -0800657#endif /* CONFIG_CIFS_POSIX */
Steve Frenchc32a0b62006-01-12 14:41:28 -0800658 .llseek = cifs_llseek,
Steve French8b94bcb2005-11-11 11:41:00 -0800659#ifdef CONFIG_CIFS_EXPERIMENTAL
Steve French87c89dd2005-11-17 17:03:00 -0800660 .dir_notify = cifs_dir_notify,
Steve French8b94bcb2005-11-11 11:41:00 -0800661#endif /* CONFIG_CIFS_EXPERIMENTAL */
662};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800664const struct file_operations cifs_dir_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 .readdir = cifs_readdir,
666 .release = cifs_closedir,
667 .read = generic_read_dir,
668#ifdef CONFIG_CIFS_EXPERIMENTAL
669 .dir_notify = cifs_dir_notify,
670#endif /* CONFIG_CIFS_EXPERIMENTAL */
Steve Frenchf28ac912005-04-28 22:41:07 -0700671 .ioctl = cifs_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672};
673
674static void
675cifs_init_once(void *inode, kmem_cache_t * cachep, unsigned long flags)
676{
677 struct cifsInodeInfo *cifsi = inode;
678
679 if ((flags & (SLAB_CTOR_VERIFY | SLAB_CTOR_CONSTRUCTOR)) ==
680 SLAB_CTOR_CONSTRUCTOR) {
681 inode_init_once(&cifsi->vfs_inode);
682 INIT_LIST_HEAD(&cifsi->lockList);
683 }
684}
685
686static int
687cifs_init_inodecache(void)
688{
689 cifs_inode_cachep = kmem_cache_create("cifs_inode_cache",
690 sizeof (struct cifsInodeInfo),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800691 0, (SLAB_RECLAIM_ACCOUNT|
692 SLAB_MEM_SPREAD),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 cifs_init_once, NULL);
694 if (cifs_inode_cachep == NULL)
695 return -ENOMEM;
696
697 return 0;
698}
699
700static void
701cifs_destroy_inodecache(void)
702{
703 if (kmem_cache_destroy(cifs_inode_cachep))
704 printk(KERN_WARNING "cifs_inode_cache: error freeing\n");
705}
706
707static int
708cifs_init_request_bufs(void)
709{
710 if(CIFSMaxBufSize < 8192) {
711 /* Buffer size can not be smaller than 2 * PATH_MAX since maximum
712 Unicode path name has to fit in any SMB/CIFS path based frames */
713 CIFSMaxBufSize = 8192;
714 } else if (CIFSMaxBufSize > 1024*127) {
715 CIFSMaxBufSize = 1024 * 127;
716 } else {
717 CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/
718 }
719/* cERROR(1,("CIFSMaxBufSize %d 0x%x",CIFSMaxBufSize,CIFSMaxBufSize)); */
720 cifs_req_cachep = kmem_cache_create("cifs_request",
721 CIFSMaxBufSize +
722 MAX_CIFS_HDR_SIZE, 0,
723 SLAB_HWCACHE_ALIGN, NULL, NULL);
724 if (cifs_req_cachep == NULL)
725 return -ENOMEM;
726
727 if(cifs_min_rcv < 1)
728 cifs_min_rcv = 1;
729 else if (cifs_min_rcv > 64) {
730 cifs_min_rcv = 64;
731 cERROR(1,("cifs_min_rcv set to maximum (64)"));
732 }
733
Matthew Dobson93d23412006-03-26 01:37:50 -0800734 cifs_req_poolp = mempool_create_slab_pool(cifs_min_rcv,
735 cifs_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 if(cifs_req_poolp == NULL) {
738 kmem_cache_destroy(cifs_req_cachep);
739 return -ENOMEM;
740 }
Steve Frenchec637e32005-12-12 20:53:18 -0800741 /* MAX_CIFS_SMALL_BUFFER_SIZE bytes is enough for most SMB responses and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 almost all handle based requests (but not write response, nor is it
743 sufficient for path based requests). A smaller size would have
744 been more efficient (compacting multiple slab items on one 4k page)
745 for the case in which debug was on, but this larger size allows
746 more SMBs to use small buffer alloc and is still much more
747 efficient to alloc 1 per page off the slab compared to 17K (5page)
748 alloc of large cifs buffers even when page debugging is on */
749 cifs_sm_req_cachep = kmem_cache_create("cifs_small_rq",
Steve Frenchec637e32005-12-12 20:53:18 -0800750 MAX_CIFS_SMALL_BUFFER_SIZE, 0, SLAB_HWCACHE_ALIGN,
751 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (cifs_sm_req_cachep == NULL) {
753 mempool_destroy(cifs_req_poolp);
754 kmem_cache_destroy(cifs_req_cachep);
755 return -ENOMEM;
756 }
757
758 if(cifs_min_small < 2)
759 cifs_min_small = 2;
760 else if (cifs_min_small > 256) {
761 cifs_min_small = 256;
762 cFYI(1,("cifs_min_small set to maximum (256)"));
763 }
764
Matthew Dobson93d23412006-03-26 01:37:50 -0800765 cifs_sm_req_poolp = mempool_create_slab_pool(cifs_min_small,
766 cifs_sm_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 if(cifs_sm_req_poolp == NULL) {
769 mempool_destroy(cifs_req_poolp);
770 kmem_cache_destroy(cifs_req_cachep);
771 kmem_cache_destroy(cifs_sm_req_cachep);
772 return -ENOMEM;
773 }
774
775 return 0;
776}
777
778static void
779cifs_destroy_request_bufs(void)
780{
781 mempool_destroy(cifs_req_poolp);
782 if (kmem_cache_destroy(cifs_req_cachep))
783 printk(KERN_WARNING
784 "cifs_destroy_request_cache: error not all structures were freed\n");
785 mempool_destroy(cifs_sm_req_poolp);
786 if (kmem_cache_destroy(cifs_sm_req_cachep))
787 printk(KERN_WARNING
788 "cifs_destroy_request_cache: cifs_small_rq free error\n");
789}
790
791static int
792cifs_init_mids(void)
793{
794 cifs_mid_cachep = kmem_cache_create("cifs_mpx_ids",
795 sizeof (struct mid_q_entry), 0,
796 SLAB_HWCACHE_ALIGN, NULL, NULL);
797 if (cifs_mid_cachep == NULL)
798 return -ENOMEM;
799
Matthew Dobson93d23412006-03-26 01:37:50 -0800800 /* 3 is a reasonable minimum number of simultaneous operations */
801 cifs_mid_poolp = mempool_create_slab_pool(3, cifs_mid_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if(cifs_mid_poolp == NULL) {
803 kmem_cache_destroy(cifs_mid_cachep);
804 return -ENOMEM;
805 }
806
807 cifs_oplock_cachep = kmem_cache_create("cifs_oplock_structs",
808 sizeof (struct oplock_q_entry), 0,
809 SLAB_HWCACHE_ALIGN, NULL, NULL);
810 if (cifs_oplock_cachep == NULL) {
811 kmem_cache_destroy(cifs_mid_cachep);
812 mempool_destroy(cifs_mid_poolp);
813 return -ENOMEM;
814 }
815
816 return 0;
817}
818
819static void
820cifs_destroy_mids(void)
821{
822 mempool_destroy(cifs_mid_poolp);
823 if (kmem_cache_destroy(cifs_mid_cachep))
824 printk(KERN_WARNING
825 "cifs_destroy_mids: error not all structures were freed\n");
826
827 if (kmem_cache_destroy(cifs_oplock_cachep))
828 printk(KERN_WARNING
829 "error not all oplock structures were freed\n");
830}
831
832static int cifs_oplock_thread(void * dummyarg)
833{
834 struct oplock_q_entry * oplock_item;
835 struct cifsTconInfo *pTcon;
836 struct inode * inode;
837 __u16 netfid;
838 int rc;
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 do {
Steve Frenchede13272005-08-30 20:10:14 -0700841 if (try_to_freeze())
842 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 spin_lock(&GlobalMid_Lock);
845 if(list_empty(&GlobalOplock_Q)) {
846 spin_unlock(&GlobalMid_Lock);
847 set_current_state(TASK_INTERRUPTIBLE);
848 schedule_timeout(39*HZ);
849 } else {
850 oplock_item = list_entry(GlobalOplock_Q.next,
851 struct oplock_q_entry, qhead);
852 if(oplock_item) {
853 cFYI(1,("found oplock item to write out"));
854 pTcon = oplock_item->tcon;
855 inode = oplock_item->pinode;
856 netfid = oplock_item->netfid;
857 spin_unlock(&GlobalMid_Lock);
858 DeleteOplockQEntry(oplock_item);
859 /* can not grab inode sem here since it would
860 deadlock when oplock received on delete
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800861 since vfs_unlink holds the i_mutex across
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 the call */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800863 /* mutex_lock(&inode->i_mutex);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (S_ISREG(inode->i_mode)) {
865 rc = filemap_fdatawrite(inode->i_mapping);
866 if(CIFS_I(inode)->clientCanCacheRead == 0) {
867 filemap_fdatawait(inode->i_mapping);
868 invalidate_remote_inode(inode);
869 }
870 } else
871 rc = 0;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800872 /* mutex_unlock(&inode->i_mutex);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (rc)
874 CIFS_I(inode)->write_behind_rc = rc;
875 cFYI(1,("Oplock flush inode %p rc %d",inode,rc));
876
877 /* releasing a stale oplock after recent reconnection
878 of smb session using a now incorrect file
879 handle is not a data integrity issue but do
880 not bother sending an oplock release if session
881 to server still is disconnected since oplock
882 already released by the server in that case */
883 if(pTcon->tidStatus != CifsNeedReconnect) {
884 rc = CIFSSMBLock(0, pTcon, netfid,
885 0 /* len */ , 0 /* offset */, 0,
886 0, LOCKING_ANDX_OPLOCK_RELEASE,
887 0 /* wait flag */);
888 cFYI(1,("Oplock release rc = %d ",rc));
889 }
890 } else
891 spin_unlock(&GlobalMid_Lock);
Steve French68058e72005-10-10 10:34:22 -0700892 set_current_state(TASK_INTERRUPTIBLE);
893 schedule_timeout(1); /* yield in case q were corrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Steve French45af7a02006-04-21 22:52:25 +0000895 } while (!kthread_should_stop());
896
897 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
Steve French8d0d5092005-08-18 09:41:43 -0700900static int cifs_dnotify_thread(void * dummyarg)
901{
Steve French6ab16d22005-11-29 20:55:11 -0800902 struct list_head *tmp;
903 struct cifsSesInfo *ses;
904
Steve French8d0d5092005-08-18 09:41:43 -0700905 do {
Pavel Machek0fd1ffe2006-06-13 21:31:39 +0000906 if (try_to_freeze())
Steve French16abbec2005-08-30 13:10:14 -0700907 continue;
Steve French8d0d5092005-08-18 09:41:43 -0700908 set_current_state(TASK_INTERRUPTIBLE);
Steve French6ab16d22005-11-29 20:55:11 -0800909 schedule_timeout(15*HZ);
910 read_lock(&GlobalSMBSeslock);
911 /* check if any stuck requests that need
912 to be woken up and wakeq so the
913 thread can wake up and error out */
914 list_for_each(tmp, &GlobalSMBSessionList) {
915 ses = list_entry(tmp, struct cifsSesInfo,
916 cifsSessionList);
917 if(ses && ses->server &&
Steve French2a138ebb2005-11-29 21:22:19 -0800918 atomic_read(&ses->server->inFlight))
Steve French6ab16d22005-11-29 20:55:11 -0800919 wake_up_all(&ses->server->response_q);
920 }
921 read_unlock(&GlobalSMBSeslock);
Steve French45af7a02006-04-21 22:52:25 +0000922 } while (!kthread_should_stop());
923
924 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
927static int __init
928init_cifs(void)
929{
930 int rc = 0;
931#ifdef CONFIG_PROC_FS
932 cifs_proc_init();
933#endif
Steve French2cd646a2006-09-28 19:43:08 +0000934/* INIT_LIST_HEAD(&GlobalServerList);*/ /* BB not implemented yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 INIT_LIST_HEAD(&GlobalSMBSessionList);
936 INIT_LIST_HEAD(&GlobalTreeConnectionList);
937 INIT_LIST_HEAD(&GlobalOplock_Q);
Steve French4ca9c192005-10-10 19:52:13 -0700938#ifdef CONFIG_CIFS_EXPERIMENTAL
939 INIT_LIST_HEAD(&GlobalDnotifyReqList);
940 INIT_LIST_HEAD(&GlobalDnotifyRsp_Q);
941#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942/*
943 * Initialize Global counters
944 */
945 atomic_set(&sesInfoAllocCount, 0);
946 atomic_set(&tconInfoAllocCount, 0);
947 atomic_set(&tcpSesAllocCount,0);
948 atomic_set(&tcpSesReconnectCount, 0);
949 atomic_set(&tconInfoReconnectCount, 0);
950
951 atomic_set(&bufAllocCount, 0);
Steve French4498eed52005-12-03 13:58:57 -0800952 atomic_set(&smBufAllocCount, 0);
953#ifdef CONFIG_CIFS_STATS2
954 atomic_set(&totBufAllocCount, 0);
955 atomic_set(&totSmBufAllocCount, 0);
956#endif /* CONFIG_CIFS_STATS2 */
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 atomic_set(&midCount, 0);
959 GlobalCurrentXid = 0;
960 GlobalTotalActiveXid = 0;
961 GlobalMaxActiveXid = 0;
Steve French2cd646a2006-09-28 19:43:08 +0000962 memset(Local_System_Name, 0, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 rwlock_init(&GlobalSMBSeslock);
964 spin_lock_init(&GlobalMid_Lock);
965
966 if(cifs_max_pending < 2) {
967 cifs_max_pending = 2;
968 cFYI(1,("cifs_max_pending set to min of 2"));
969 } else if(cifs_max_pending > 256) {
970 cifs_max_pending = 256;
971 cFYI(1,("cifs_max_pending set to max of 256"));
972 }
973
974 rc = cifs_init_inodecache();
Steve French45af7a02006-04-21 22:52:25 +0000975 if (rc)
976 goto out_clean_proc;
977
978 rc = cifs_init_mids();
979 if (rc)
980 goto out_destroy_inodecache;
981
982 rc = cifs_init_request_bufs();
983 if (rc)
984 goto out_destroy_mids;
985
986 rc = register_filesystem(&cifs_fs_type);
987 if (rc)
988 goto out_destroy_request_bufs;
989
990 oplockThread = kthread_run(cifs_oplock_thread, NULL, "cifsoplockd");
991 if (IS_ERR(oplockThread)) {
992 rc = PTR_ERR(oplockThread);
993 cERROR(1,("error %d create oplock thread", rc));
994 goto out_unregister_filesystem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
Steve French45af7a02006-04-21 22:52:25 +0000996
997 dnotifyThread = kthread_run(cifs_dnotify_thread, NULL, "cifsdnotifyd");
998 if (IS_ERR(dnotifyThread)) {
999 rc = PTR_ERR(dnotifyThread);
1000 cERROR(1,("error %d create dnotify thread", rc));
1001 goto out_stop_oplock_thread;
1002 }
1003
1004 return 0;
1005
1006 out_stop_oplock_thread:
1007 kthread_stop(oplockThread);
1008 out_unregister_filesystem:
1009 unregister_filesystem(&cifs_fs_type);
1010 out_destroy_request_bufs:
1011 cifs_destroy_request_bufs();
1012 out_destroy_mids:
1013 cifs_destroy_mids();
1014 out_destroy_inodecache:
1015 cifs_destroy_inodecache();
1016 out_clean_proc:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017#ifdef CONFIG_PROC_FS
1018 cifs_proc_clean();
1019#endif
1020 return rc;
1021}
1022
1023static void __exit
1024exit_cifs(void)
1025{
1026 cFYI(0, ("In unregister ie exit_cifs"));
1027#ifdef CONFIG_PROC_FS
1028 cifs_proc_clean();
1029#endif
1030 unregister_filesystem(&cifs_fs_type);
1031 cifs_destroy_inodecache();
1032 cifs_destroy_mids();
1033 cifs_destroy_request_bufs();
Steve French45af7a02006-04-21 22:52:25 +00001034 kthread_stop(oplockThread);
1035 kthread_stop(dnotifyThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
1037
1038MODULE_AUTHOR("Steve French <sfrench@us.ibm.com>");
1039MODULE_LICENSE("GPL"); /* combination of LGPL + GPL source behaves as GPL */
1040MODULE_DESCRIPTION
1041 ("VFS to access servers complying with the SNIA CIFS Specification e.g. Samba and Windows");
1042MODULE_VERSION(CIFS_VERSION);
1043module_init(init_cifs)
1044module_exit(exit_cifs)