jfs_inode.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * Copyright (C) International Business Machines Corp., 2000-2004
  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 <linux/quotaops.h>
  20. #include "jfs_incore.h"
  21. #include "jfs_inode.h"
  22. #include "jfs_filsys.h"
  23. #include "jfs_imap.h"
  24. #include "jfs_dinode.h"
  25. #include "jfs_debug.h"
  26. /*
  27. * NAME: ialloc()
  28. *
  29. * FUNCTION: Allocate a new inode
  30. *
  31. */
  32. struct inode *ialloc(struct inode *parent, umode_t mode)
  33. {
  34. struct super_block *sb = parent->i_sb;
  35. struct inode *inode;
  36. struct jfs_inode_info *jfs_inode;
  37. int rc;
  38. inode = new_inode(sb);
  39. if (!inode) {
  40. jfs_warn("ialloc: new_inode returned NULL!");
  41. return inode;
  42. }
  43. jfs_inode = JFS_IP(inode);
  44. rc = diAlloc(parent, S_ISDIR(mode), inode);
  45. if (rc) {
  46. jfs_warn("ialloc: diAlloc returned %d!", rc);
  47. make_bad_inode(inode);
  48. iput(inode);
  49. return NULL;
  50. }
  51. inode->i_uid = current->fsuid;
  52. if (parent->i_mode & S_ISGID) {
  53. inode->i_gid = parent->i_gid;
  54. if (S_ISDIR(mode))
  55. mode |= S_ISGID;
  56. } else
  57. inode->i_gid = current->fsgid;
  58. /*
  59. * Allocate inode to quota.
  60. */
  61. if (DQUOT_ALLOC_INODE(inode)) {
  62. DQUOT_DROP(inode);
  63. inode->i_flags |= S_NOQUOTA;
  64. inode->i_nlink = 0;
  65. iput(inode);
  66. return NULL;
  67. }
  68. inode->i_mode = mode;
  69. if (S_ISDIR(mode))
  70. jfs_inode->mode2 = IDIRECTORY | mode;
  71. else
  72. jfs_inode->mode2 = INLINEEA | ISPARSE | mode;
  73. inode->i_blksize = sb->s_blocksize;
  74. inode->i_blocks = 0;
  75. inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
  76. jfs_inode->otime = inode->i_ctime.tv_sec;
  77. inode->i_generation = JFS_SBI(sb)->gengen++;
  78. jfs_inode->cflag = 0;
  79. /* Zero remaining fields */
  80. memset(&jfs_inode->acl, 0, sizeof(dxd_t));
  81. memset(&jfs_inode->ea, 0, sizeof(dxd_t));
  82. jfs_inode->next_index = 0;
  83. jfs_inode->acltype = 0;
  84. jfs_inode->btorder = 0;
  85. jfs_inode->btindex = 0;
  86. jfs_inode->bxflag = 0;
  87. jfs_inode->blid = 0;
  88. jfs_inode->atlhead = 0;
  89. jfs_inode->atltail = 0;
  90. jfs_inode->xtlid = 0;
  91. jfs_info("ialloc returns inode = 0x%p\n", inode);
  92. return inode;
  93. }