inode.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:16k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  inode.c
  3.  *
  4.  *  Copyright (C) 1995, 1996 by Paal-Kr. Engstad and Volker Lendecke
  5.  *  Copyright (C) 1997 by Volker Lendecke
  6.  *
  7.  *  Please add a note about your changes to smbfs in the ChangeLog file.
  8.  */
  9. #include <linux/config.h>
  10. #include <linux/module.h>
  11. #include <linux/sched.h>
  12. #include <linux/kernel.h>
  13. #include <linux/mm.h>
  14. #include <linux/string.h>
  15. #include <linux/stat.h>
  16. #include <linux/errno.h>
  17. #include <linux/locks.h>
  18. #include <linux/slab.h>
  19. #include <linux/init.h>
  20. #include <linux/file.h>
  21. #include <linux/dcache.h>
  22. #include <linux/smp_lock.h>
  23. #include <linux/nls.h>
  24. #include <linux/seq_file.h>
  25. #include <linux/smb_fs.h>
  26. #include <linux/smbno.h>
  27. #include <linux/smb_mount.h>
  28. #include <asm/system.h>
  29. #include <asm/uaccess.h>
  30. #include "smb_debug.h"
  31. #include "getopt.h"
  32. #include "proto.h"
  33. /* Always pick a default string */
  34. #ifdef CONFIG_SMB_NLS_REMOTE
  35. #define SMB_NLS_REMOTE CONFIG_SMB_NLS_REMOTE
  36. #else
  37. #define SMB_NLS_REMOTE ""
  38. #endif
  39. #define SMB_TTL_DEFAULT 1000
  40. static void smb_delete_inode(struct inode *);
  41. static void smb_put_super(struct super_block *);
  42. static int  smb_statfs(struct super_block *, struct statfs *);
  43. static int  smb_show_options(struct seq_file *, struct vfsmount *);
  44. static struct super_operations smb_sops =
  45. {
  46. put_inode: force_delete,
  47. delete_inode: smb_delete_inode,
  48. put_super: smb_put_super,
  49. statfs: smb_statfs,
  50. show_options: smb_show_options,
  51. };
  52. /* We are always generating a new inode here */
  53. struct inode *
  54. smb_iget(struct super_block *sb, struct smb_fattr *fattr)
  55. {
  56. struct inode *result;
  57. DEBUG1("smb_iget: %pn", fattr);
  58. result = new_inode(sb);
  59. if (!result)
  60. return result;
  61. result->i_ino = fattr->f_ino;
  62. memset(&(result->u.smbfs_i), 0, sizeof(result->u.smbfs_i));
  63. smb_set_inode_attr(result, fattr);
  64. if (S_ISREG(result->i_mode)) {
  65. result->i_op = &smb_file_inode_operations;
  66. result->i_fop = &smb_file_operations;
  67. result->i_data.a_ops = &smb_file_aops;
  68. } else if (S_ISDIR(result->i_mode)) {
  69. result->i_op = &smb_dir_inode_operations;
  70. result->i_fop = &smb_dir_operations;
  71. }
  72. insert_inode_hash(result);
  73. return result;
  74. }
  75. /*
  76.  * Copy the inode data to a smb_fattr structure.
  77.  */
  78. void
  79. smb_get_inode_attr(struct inode *inode, struct smb_fattr *fattr)
  80. {
  81. memset(fattr, 0, sizeof(struct smb_fattr));
  82. fattr->f_mode = inode->i_mode;
  83. fattr->f_nlink = inode->i_nlink;
  84. fattr->f_ino = inode->i_ino;
  85. fattr->f_uid = inode->i_uid;
  86. fattr->f_gid = inode->i_gid;
  87. fattr->f_rdev = inode->i_rdev;
  88. fattr->f_size = inode->i_size;
  89. fattr->f_mtime = inode->i_mtime;
  90. fattr->f_ctime = inode->i_ctime;
  91. fattr->f_atime = inode->i_atime;
  92. fattr->f_blksize= inode->i_blksize;
  93. fattr->f_blocks = inode->i_blocks;
  94. fattr->attr = inode->u.smbfs_i.attr;
  95. /*
  96.  * Keep the attributes in sync with the inode permissions.
  97.  */
  98. if (fattr->f_mode & S_IWUSR)
  99. fattr->attr &= ~aRONLY;
  100. else
  101. fattr->attr |= aRONLY;
  102. }
  103. /*
  104.  * Update the inode, possibly causing it to invalidate its pages if mtime/size
  105.  * is different from last time.
  106.  */
  107. void
  108. smb_set_inode_attr(struct inode *inode, struct smb_fattr *fattr)
  109. {
  110. /*
  111.  * A size change should have a different mtime, or same mtime
  112.  * but different size.
  113.  */
  114. time_t last_time = inode->i_mtime;
  115. loff_t last_sz = inode->i_size;
  116. inode->i_mode = fattr->f_mode;
  117. inode->i_nlink = fattr->f_nlink;
  118. inode->i_uid = fattr->f_uid;
  119. inode->i_gid = fattr->f_gid;
  120. inode->i_rdev = fattr->f_rdev;
  121. inode->i_ctime = fattr->f_ctime;
  122. inode->i_blksize= fattr->f_blksize;
  123. inode->i_blocks = fattr->f_blocks;
  124. inode->i_size = fattr->f_size;
  125. inode->i_mtime = fattr->f_mtime;
  126. inode->i_atime = fattr->f_atime;
  127. inode->u.smbfs_i.attr = fattr->attr;
  128. /*
  129.  * Update the "last time refreshed" field for revalidation.
  130.  */
  131. inode->u.smbfs_i.oldmtime = jiffies;
  132. if (inode->i_mtime != last_time || inode->i_size != last_sz) {
  133. VERBOSE("%ld changed, old=%ld, new=%ld, oz=%ld, nz=%ldn",
  134. inode->i_ino,
  135. (long) last_time, (long) inode->i_mtime,
  136. (long) last_sz, (long) inode->i_size);
  137. if (!S_ISDIR(inode->i_mode))
  138. invalidate_inode_pages(inode);
  139. }
  140. }
  141. /*
  142.  * This is called if the connection has gone bad ...
  143.  * try to kill off all the current inodes.
  144.  */
  145. void
  146. smb_invalidate_inodes(struct smb_sb_info *server)
  147. {
  148. VERBOSE("n");
  149. shrink_dcache_sb(SB_of(server));
  150. invalidate_inodes(SB_of(server));
  151. }
  152. /*
  153.  * This is called to update the inode attributes after
  154.  * we've made changes to a file or directory.
  155.  */
  156. static int
  157. smb_refresh_inode(struct dentry *dentry)
  158. {
  159. struct inode *inode = dentry->d_inode;
  160. int error;
  161. struct smb_fattr fattr;
  162. error = smb_proc_getattr(dentry, &fattr);
  163. if (!error) {
  164. smb_renew_times(dentry);
  165. /*
  166.  * Check whether the type part of the mode changed,
  167.  * and don't update the attributes if it did.
  168.  */
  169. if ((inode->i_mode & S_IFMT) == (fattr.f_mode & S_IFMT)) {
  170. smb_set_inode_attr(inode, &fattr);
  171. } else {
  172. /*
  173.  * Big trouble! The inode has become a new object,
  174.  * so any operations attempted on it are invalid.
  175.  *
  176.  * To limit damage, mark the inode as bad so that
  177.  * subsequent lookup validations will fail.
  178.  */
  179. PARANOIA("%s/%s changed mode, %07o to %07on",
  180.  DENTRY_PATH(dentry),
  181.  inode->i_mode, fattr.f_mode);
  182. fattr.f_mode = inode->i_mode; /* save mode */
  183. make_bad_inode(inode);
  184. inode->i_mode = fattr.f_mode; /* restore mode */
  185. /*
  186.  * No need to worry about unhashing the dentry: the
  187.  * lookup validation will see that the inode is bad.
  188.  * But we do want to invalidate the caches ...
  189.  */
  190. if (!S_ISDIR(inode->i_mode))
  191. invalidate_inode_pages(inode);
  192. else
  193. smb_invalid_dir_cache(inode);
  194. error = -EIO;
  195. }
  196. }
  197. return error;
  198. }
  199. /*
  200.  * This is called when we want to check whether the inode
  201.  * has changed on the server.  If it has changed, we must
  202.  * invalidate our local caches.
  203.  */
  204. int
  205. smb_revalidate_inode(struct dentry *dentry)
  206. {
  207. struct smb_sb_info *s = server_from_dentry(dentry);
  208. struct inode *inode = dentry->d_inode;
  209. int error = 0;
  210. DEBUG1("smb_revalidate_inoden");
  211. lock_kernel();
  212. /*
  213.  * Check whether we've recently refreshed the inode.
  214.  */
  215. if (time_before(jiffies, inode->u.smbfs_i.oldmtime + SMB_MAX_AGE(s))) {
  216. VERBOSE("up-to-date, ino=%ld, jiffies=%lu, oldtime=%lun",
  217. inode->i_ino, jiffies, inode->u.smbfs_i.oldmtime);
  218. goto out;
  219. }
  220. error = smb_refresh_inode(dentry);
  221. out:
  222. unlock_kernel();
  223. return error;
  224. }
  225. /*
  226.  * This routine is called when i_nlink == 0 and i_count goes to 0.
  227.  * All blocking cleanup operations need to go here to avoid races.
  228.  */
  229. static void
  230. smb_delete_inode(struct inode *ino)
  231. {
  232. DEBUG1("ino=%ldn", ino->i_ino);
  233. lock_kernel();
  234. if (smb_close(ino))
  235. PARANOIA("could not close inode %ldn", ino->i_ino);
  236. unlock_kernel();
  237. clear_inode(ino);
  238. }
  239. static struct option opts[] = {
  240. { "version", 0, 'v' },
  241. { "win95", SMB_MOUNT_WIN95, 1 },
  242. { "oldattr", SMB_MOUNT_OLDATTR, 1 },
  243. { "dirattr", SMB_MOUNT_DIRATTR, 1 },
  244. { "case", SMB_MOUNT_CASE, 1 },
  245. { "uid", 0, 'u' },
  246. { "gid", 0, 'g' },
  247. { "file_mode", 0, 'f' },
  248. { "dir_mode", 0, 'd' },
  249. { "iocharset", 0, 'i' },
  250. { "codepage", 0, 'c' },
  251. { "ttl", 0, 't' },
  252. { NULL, 0, 0}
  253. };
  254. static int
  255. parse_options(struct smb_mount_data_kernel *mnt, char *options)
  256. {
  257. int c;
  258. unsigned long flags;
  259. unsigned long value;
  260. char *optarg;
  261. char *optopt;
  262. flags = 0;
  263. while ( (c = smb_getopt("smbfs", &options, opts,
  264. &optopt, &optarg, &flags, &value)) > 0) {
  265. VERBOSE("'%s' -> '%s'n", optopt, optarg ? optarg : "<none>");
  266. switch (c) {
  267. case 1:
  268. /* got a "flag" option */
  269. break;
  270. case 'v':
  271. if (value != SMB_MOUNT_VERSION) {
  272. printk ("smbfs: Bad mount version %ld, expected %dn",
  273. value, SMB_MOUNT_VERSION);
  274. return 0;
  275. }
  276. mnt->version = value;
  277. break;
  278. case 'u':
  279. mnt->uid = value;
  280. break;
  281. case 'g':
  282. mnt->gid = value;
  283. break;
  284. case 'f':
  285. mnt->file_mode = (value & S_IRWXUGO) | S_IFREG;
  286. break;
  287. case 'd':
  288. mnt->dir_mode = (value & S_IRWXUGO) | S_IFDIR;
  289. break;
  290. case 'i':
  291. strncpy(mnt->codepage.local_name, optarg, 
  292. SMB_NLS_MAXNAMELEN);
  293. break;
  294. case 'c':
  295. strncpy(mnt->codepage.remote_name, optarg,
  296. SMB_NLS_MAXNAMELEN);
  297. break;
  298. case 't':
  299. mnt->ttl = value;
  300. break;
  301. default:
  302. printk ("smbfs: Unrecognized mount option %sn",
  303. optopt);
  304. return -1;
  305. }
  306. }
  307. mnt->flags = flags;
  308. return c;
  309. }
  310. /*
  311.  * smb_show_options() is for displaying mount options in /proc/mounts.
  312.  * It tries to avoid showing settings that were not changed from their
  313.  * defaults.
  314.  */
  315. static int
  316. smb_show_options(struct seq_file *s, struct vfsmount *m)
  317. {
  318. struct smb_mount_data_kernel *mnt = m->mnt_sb->u.smbfs_sb.mnt;
  319. int i;
  320. for (i = 0; opts[i].name != NULL; i++)
  321. if (mnt->flags & opts[i].flag)
  322. seq_printf(s, ",%s", opts[i].name);
  323. if (mnt->uid != 0)
  324. seq_printf(s, ",uid=%d", mnt->uid);
  325. if (mnt->gid != 0)
  326. seq_printf(s, ",gid=%d", mnt->gid);
  327. if (mnt->mounted_uid != 0)
  328. seq_printf(s, ",mounted_uid=%d", mnt->mounted_uid);
  329. /* 
  330.  * Defaults for file_mode and dir_mode are unknown to us; they
  331.  * depend on the current umask of the user doing the mount.
  332.  */
  333. seq_printf(s, ",file_mode=%04o", mnt->file_mode & S_IRWXUGO);
  334. seq_printf(s, ",dir_mode=%04o", mnt->dir_mode & S_IRWXUGO);
  335. if (strcmp(mnt->codepage.local_name, CONFIG_NLS_DEFAULT))
  336. seq_printf(s, ",iocharset=%s", mnt->codepage.local_name);
  337. if (strcmp(mnt->codepage.remote_name, SMB_NLS_REMOTE))
  338. seq_printf(s, ",codepage=%s", mnt->codepage.remote_name);
  339. if (mnt->ttl != SMB_TTL_DEFAULT)
  340. seq_printf(s, ",ttl=%d", mnt->ttl);
  341. return 0;
  342. }
  343. static void
  344. smb_put_super(struct super_block *sb)
  345. {
  346. struct smb_sb_info *server = &(sb->u.smbfs_sb);
  347. if (server->sock_file) {
  348. smb_dont_catch_keepalive(server);
  349. fput(server->sock_file);
  350. }
  351. if (server->conn_pid)
  352.        kill_proc(server->conn_pid, SIGTERM, 1);
  353. smb_kfree(server->mnt);
  354. smb_kfree(server->temp_buf);
  355. if (server->packet)
  356. smb_vfree(server->packet);
  357. if (server->remote_nls) {
  358. unload_nls(server->remote_nls);
  359. server->remote_nls = NULL;
  360. }
  361. if (server->local_nls) {
  362. unload_nls(server->local_nls);
  363. server->local_nls = NULL;
  364. }
  365. }
  366. struct super_block *
  367. smb_read_super(struct super_block *sb, void *raw_data, int silent)
  368. {
  369. struct smb_sb_info *server = &sb->u.smbfs_sb;
  370. struct smb_mount_data_kernel *mnt;
  371. struct smb_mount_data *oldmnt;
  372. struct inode *root_inode;
  373. struct smb_fattr root;
  374. int ver;
  375. if (!raw_data)
  376. goto out_no_data;
  377. oldmnt = (struct smb_mount_data *) raw_data;
  378. ver = oldmnt->version;
  379. if (ver != SMB_MOUNT_OLDVERSION && cpu_to_be32(ver) != SMB_MOUNT_ASCII)
  380. goto out_wrong_data;
  381. sb->s_blocksize = 1024; /* Eh...  Is this correct? */
  382. sb->s_blocksize_bits = 10;
  383. sb->s_magic = SMB_SUPER_MAGIC;
  384. sb->s_op = &smb_sops;
  385. server->mnt = NULL;
  386. server->sock_file = NULL;
  387. init_MUTEX(&server->sem);
  388. init_waitqueue_head(&server->wait);
  389. server->conn_pid = 0;
  390. server->state = CONN_INVALID; /* no connection yet */
  391. server->generation = 0;
  392. server->packet_size = smb_round_length(SMB_INITIAL_PACKET_SIZE);
  393. server->packet = smb_vmalloc(server->packet_size);
  394. if (!server->packet)
  395. goto out_no_mem;
  396. /* Allocate the global temp buffer */
  397. server->temp_buf = smb_kmalloc(2*SMB_MAXPATHLEN+20, GFP_KERNEL);
  398. if (!server->temp_buf)
  399. goto out_no_temp;
  400. /* Setup NLS stuff */
  401. server->remote_nls = NULL;
  402. server->local_nls = NULL;
  403. server->name_buf = server->temp_buf + SMB_MAXPATHLEN + 20;
  404. /* Allocate the mount data structure */
  405. /* FIXME: merge this with the other malloc and get a whole page? */
  406. mnt = smb_kmalloc(sizeof(struct smb_mount_data_kernel), GFP_KERNEL);
  407. if (!mnt)
  408. goto out_no_mount;
  409. server->mnt = mnt;
  410. memset(mnt, 0, sizeof(struct smb_mount_data_kernel));
  411. strncpy(mnt->codepage.local_name, CONFIG_NLS_DEFAULT,
  412. SMB_NLS_MAXNAMELEN);
  413. strncpy(mnt->codepage.remote_name, SMB_NLS_REMOTE,
  414. SMB_NLS_MAXNAMELEN);
  415. mnt->ttl = SMB_TTL_DEFAULT;
  416. if (ver == SMB_MOUNT_OLDVERSION) {
  417. mnt->version = oldmnt->version;
  418. /* FIXME: is this enough to convert uid/gid's ? */
  419. mnt->mounted_uid = oldmnt->mounted_uid;
  420. mnt->uid = oldmnt->uid;
  421. mnt->gid = oldmnt->gid;
  422. mnt->file_mode = (oldmnt->file_mode & S_IRWXUGO) | S_IFREG;
  423. mnt->dir_mode = (oldmnt->dir_mode & S_IRWXUGO) | S_IFDIR;
  424. mnt->flags = (oldmnt->file_mode >> 9);
  425. } else {
  426. if (parse_options(mnt, raw_data))
  427. goto out_bad_option;
  428. mnt->mounted_uid = current->uid;
  429. }
  430. smb_setcodepage(server, &mnt->codepage);
  431. /*
  432.  * Display the enabled options
  433.  * Note: smb_proc_getattr uses these in 2.4 (but was changed in 2.2)
  434.  */
  435. if (mnt->flags & SMB_MOUNT_OLDATTR)
  436. printk("SMBFS: Using core getattr (Win 95 speedup)n");
  437. else if (mnt->flags & SMB_MOUNT_DIRATTR)
  438. printk("SMBFS: Using dir ff getattrn");
  439. /*
  440.  * Keep the super block locked while we get the root inode.
  441.  */
  442. smb_init_root_dirent(server, &root);
  443. root_inode = smb_iget(sb, &root);
  444. if (!root_inode)
  445. goto out_no_root;
  446. sb->s_root = d_alloc_root(root_inode);
  447. if (!sb->s_root)
  448. goto out_no_root;
  449. smb_new_dentry(sb->s_root);
  450. return sb;
  451. out_no_root:
  452. iput(root_inode);
  453. out_bad_option:
  454. smb_kfree(server->mnt);
  455. out_no_mount:
  456. smb_kfree(server->temp_buf);
  457. out_no_temp:
  458. smb_vfree(server->packet);
  459. out_no_mem:
  460. if (!server->mnt)
  461. printk(KERN_ERR "smb_read_super: allocation failuren");
  462. goto out_fail;
  463. out_wrong_data:
  464. printk(KERN_ERR "smbfs: mount_data version %d is not supportedn", ver);
  465. goto out_fail;
  466. out_no_data:
  467. printk(KERN_ERR "smb_read_super: missing data argumentn");
  468. out_fail:
  469. return NULL;
  470. }
  471. static int
  472. smb_statfs(struct super_block *sb, struct statfs *buf)
  473. {
  474. int result = smb_proc_dskattr(sb, buf);
  475. buf->f_type = SMB_SUPER_MAGIC;
  476. buf->f_namelen = SMB_MAXPATHLEN;
  477. return result;
  478. }
  479. int
  480. smb_notify_change(struct dentry *dentry, struct iattr *attr)
  481. {
  482. struct inode *inode = dentry->d_inode;
  483. struct smb_sb_info *server = server_from_dentry(dentry);
  484. unsigned int mask = (S_IFREG | S_IFDIR | S_IRWXUGO);
  485. int error, changed, refresh = 0;
  486. struct smb_fattr fattr;
  487. error = smb_revalidate_inode(dentry);
  488. if (error)
  489. goto out;
  490. if ((error = inode_change_ok(inode, attr)) < 0)
  491. goto out;
  492. error = -EPERM;
  493. if ((attr->ia_valid & ATTR_UID) && (attr->ia_uid != server->mnt->uid))
  494. goto out;
  495. if ((attr->ia_valid & ATTR_GID) && (attr->ia_uid != server->mnt->gid))
  496. goto out;
  497. if ((attr->ia_valid & ATTR_MODE) && (attr->ia_mode & ~mask))
  498. goto out;
  499. if ((attr->ia_valid & ATTR_SIZE) != 0) {
  500. VERBOSE("changing %s/%s, old size=%ld, new size=%ldn",
  501. DENTRY_PATH(dentry),
  502. (long) inode->i_size, (long) attr->ia_size);
  503. filemap_fdatasync(inode->i_mapping);
  504. filemap_fdatawait(inode->i_mapping);
  505. error = smb_open(dentry, O_WRONLY);
  506. if (error)
  507. goto out;
  508. error = smb_proc_trunc(server, inode->u.smbfs_i.fileid,
  509.  attr->ia_size);
  510. if (error)
  511. goto out;
  512. error = vmtruncate(inode, attr->ia_size);
  513. if (error)
  514. goto out;
  515. refresh = 1;
  516. }
  517. /*
  518.  * Initialize the fattr and check for changed fields.
  519.  * Note: CTIME under SMB is creation time rather than
  520.  * change time, so we don't attempt to change it.
  521.  */
  522. smb_get_inode_attr(inode, &fattr);
  523. changed = 0;
  524. if ((attr->ia_valid & ATTR_MTIME) != 0) {
  525. fattr.f_mtime = attr->ia_mtime;
  526. changed = 1;
  527. }
  528. if ((attr->ia_valid & ATTR_ATIME) != 0) {
  529. fattr.f_atime = attr->ia_atime;
  530. /* Earlier protocols don't have an access time */
  531. if (server->opt.protocol >= SMB_PROTOCOL_LANMAN2)
  532. changed = 1;
  533. }
  534. if (changed) {
  535. error = smb_proc_settime(dentry, &fattr);
  536. if (error)
  537. goto out;
  538. refresh = 1;
  539. }
  540. /*
  541.  * Check for mode changes ... we're extremely limited in
  542.  * what can be set for SMB servers: just the read-only bit.
  543.  */
  544. if ((attr->ia_valid & ATTR_MODE) != 0) {
  545. VERBOSE("%s/%s mode change, old=%x, new=%xn",
  546. DENTRY_PATH(dentry), fattr.f_mode, attr->ia_mode);
  547. changed = 0;
  548. if (attr->ia_mode & S_IWUSR) {
  549. if (fattr.attr & aRONLY) {
  550. fattr.attr &= ~aRONLY;
  551. changed = 1;
  552. }
  553. } else {
  554. if (!(fattr.attr & aRONLY)) {
  555. fattr.attr |= aRONLY;
  556. changed = 1;
  557. }
  558. }
  559. if (changed) {
  560. error = smb_proc_setattr(dentry, &fattr);
  561. if (error)
  562. goto out;
  563. refresh = 1;
  564. }
  565. }
  566. error = 0;
  567. out:
  568. if (refresh)
  569. smb_refresh_inode(dentry);
  570. return error;
  571. }
  572. #ifdef DEBUG_SMB_MALLOC
  573. int smb_malloced;
  574. int smb_current_kmalloced;
  575. int smb_current_vmalloced;
  576. #endif
  577. static DECLARE_FSTYPE( smb_fs_type, "smbfs", smb_read_super, 0);
  578. static int __init init_smb_fs(void)
  579. {
  580. DEBUG1("registering ...n");
  581. #ifdef DEBUG_SMB_MALLOC
  582. smb_malloced = 0;
  583. smb_current_kmalloced = 0;
  584. smb_current_vmalloced = 0;
  585. #endif
  586. return register_filesystem(&smb_fs_type);
  587. }
  588. static void __exit exit_smb_fs(void)
  589. {
  590. DEBUG1("unregistering ...n");
  591. unregister_filesystem(&smb_fs_type);
  592. #ifdef DEBUG_SMB_MALLOC
  593. printk(KERN_DEBUG "smb_malloced: %dn", smb_malloced);
  594. printk(KERN_DEBUG "smb_current_kmalloced: %dn",smb_current_kmalloced);
  595. printk(KERN_DEBUG "smb_current_vmalloced: %dn",smb_current_vmalloced);
  596. #endif
  597. }
  598. EXPORT_NO_SYMBOLS;
  599. module_init(init_smb_fs)
  600. module_exit(exit_smb_fs)
  601. MODULE_LICENSE("GPL");