jfs_inode.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *   Copyright (c) International Business Machines Corp., 2000-2002
  3.  *
  4.  *   This program is free software;  you can redistribute it and/or modify
  5.  *   it under the terms of the GNU General Public License as published by
  6.  *   the Free Software Foundation; either version 2 of the License, or 
  7.  *   (at your option) any later version.
  8.  * 
  9.  *   This program is distributed in the hope that it will be useful,
  10.  *   but WITHOUT ANY WARRANTY;  without even the implied warranty of
  11.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
  12.  *   the GNU General Public License for more details.
  13.  *
  14.  *   You should have received a copy of the GNU General Public License
  15.  *   along with this program;  if not, write to the Free Software 
  16.  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17.  */
  18. #include <linux/fs.h>
  19. #include "jfs_incore.h"
  20. #include "jfs_filsys.h"
  21. #include "jfs_imap.h"
  22. #include "jfs_dinode.h"
  23. #include "jfs_debug.h"
  24. kmem_cache_t *jfs_inode_cachep;
  25. /*
  26.  * NAME: ialloc()
  27.  *
  28.  * FUNCTION: Allocate a new inode
  29.  *
  30.  */
  31. struct inode *ialloc(struct inode *parent, umode_t mode)
  32. {
  33. struct super_block *sb = parent->i_sb;
  34. struct inode *inode;
  35. struct jfs_inode_info *jfs_inode;
  36. int rc;
  37. inode = new_inode(sb);
  38. if (!inode) {
  39. jERROR(1, ("ialloc: new_inode returned NULL!n"));
  40. return inode;
  41. }
  42. rc = alloc_jfs_inode(inode);
  43. if (rc) {
  44. make_bad_inode(inode);
  45. iput(inode);
  46. return NULL;
  47. }
  48. jfs_inode = JFS_IP(inode);
  49. rc = diAlloc(parent, S_ISDIR(mode), inode);
  50. if (rc) {
  51. jERROR(1, ("ialloc: diAlloc returned %d!n", rc));
  52. free_jfs_inode(inode);
  53. make_bad_inode(inode);
  54. iput(inode);
  55. return NULL;
  56. }
  57. inode->i_uid = current->fsuid;
  58. if (parent->i_mode & S_ISGID) {
  59. inode->i_gid = parent->i_gid;
  60. if (S_ISDIR(mode))
  61. mode |= S_ISGID;
  62. } else
  63. inode->i_gid = current->fsgid;
  64. inode->i_mode = mode;
  65. if (S_ISDIR(mode))
  66. jfs_inode->mode2 = IDIRECTORY | mode;
  67. else
  68. jfs_inode->mode2 = INLINEEA | ISPARSE | mode;
  69. inode->i_blksize = sb->s_blocksize;
  70. inode->i_blocks = 0;
  71. inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
  72. jfs_inode->otime = inode->i_ctime;
  73. inode->i_generation = JFS_SBI(sb)->gengen++;
  74. jfs_inode->cflag = 0;
  75. set_cflag(COMMIT_New, inode);
  76. /* Zero remaining fields */
  77. memset(&jfs_inode->acl, 0, sizeof(dxd_t));
  78. memset(&jfs_inode->ea, 0, sizeof(dxd_t));
  79. jfs_inode->next_index = 0;
  80. jfs_inode->acltype = 0;
  81. jfs_inode->btorder = 0;
  82. jfs_inode->btindex = 0;
  83. jfs_inode->bxflag = 0;
  84. jfs_inode->blid = 0;
  85. jfs_inode->atlhead = 0;
  86. jfs_inode->atltail = 0;
  87. jfs_inode->xtlid = 0;
  88. jFYI(1, ("ialloc returns inode = 0x%pn", inode));
  89. return inode;
  90. }
  91. /*
  92.  * NAME: alloc_jfs_inode()
  93.  *
  94.  * FUNCTION: Allocate jfs portion of in-memory inode
  95.  *
  96.  */
  97. int alloc_jfs_inode(struct inode *inode)
  98. {
  99. struct jfs_inode_info *jfs_inode;
  100. jfs_inode = kmem_cache_alloc(jfs_inode_cachep, GFP_NOFS);
  101. inode->u.generic_ip = jfs_inode;
  102. if (!jfs_inode)
  103. return -ENOSPC;
  104. jfs_inode->inode = inode;
  105. return 0;
  106. }