Merge branch 'perfcounters-fixes-for-linus-2' of git://git.kernel.org/pub/scm/linux...
[linux-2.6/mini2440.git] / fs / jfs / jfs_inode.c
blobdc0e02159ac9e494fc99a33dcfae47ca3f5a4f5f
1 /*
2 * Copyright (C) International Business Machines Corp., 2000-2004
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.
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.
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
19 #include <linux/fs.h>
20 #include <linux/quotaops.h>
21 #include "jfs_incore.h"
22 #include "jfs_inode.h"
23 #include "jfs_filsys.h"
24 #include "jfs_imap.h"
25 #include "jfs_dinode.h"
26 #include "jfs_debug.h"
29 void jfs_set_inode_flags(struct inode *inode)
31 unsigned int flags = JFS_IP(inode)->mode2;
33 inode->i_flags &= ~(S_IMMUTABLE | S_APPEND |
34 S_NOATIME | S_DIRSYNC | S_SYNC);
36 if (flags & JFS_IMMUTABLE_FL)
37 inode->i_flags |= S_IMMUTABLE;
38 if (flags & JFS_APPEND_FL)
39 inode->i_flags |= S_APPEND;
40 if (flags & JFS_NOATIME_FL)
41 inode->i_flags |= S_NOATIME;
42 if (flags & JFS_DIRSYNC_FL)
43 inode->i_flags |= S_DIRSYNC;
44 if (flags & JFS_SYNC_FL)
45 inode->i_flags |= S_SYNC;
48 void jfs_get_inode_flags(struct jfs_inode_info *jfs_ip)
50 unsigned int flags = jfs_ip->vfs_inode.i_flags;
52 jfs_ip->mode2 &= ~(JFS_IMMUTABLE_FL | JFS_APPEND_FL | JFS_NOATIME_FL |
53 JFS_DIRSYNC_FL | JFS_SYNC_FL);
54 if (flags & S_IMMUTABLE)
55 jfs_ip->mode2 |= JFS_IMMUTABLE_FL;
56 if (flags & S_APPEND)
57 jfs_ip->mode2 |= JFS_APPEND_FL;
58 if (flags & S_NOATIME)
59 jfs_ip->mode2 |= JFS_NOATIME_FL;
60 if (flags & S_DIRSYNC)
61 jfs_ip->mode2 |= JFS_DIRSYNC_FL;
62 if (flags & S_SYNC)
63 jfs_ip->mode2 |= JFS_SYNC_FL;
67 * NAME: ialloc()
69 * FUNCTION: Allocate a new inode
72 struct inode *ialloc(struct inode *parent, umode_t mode)
74 struct super_block *sb = parent->i_sb;
75 struct inode *inode;
76 struct jfs_inode_info *jfs_inode;
77 int rc;
79 inode = new_inode(sb);
80 if (!inode) {
81 jfs_warn("ialloc: new_inode returned NULL!");
82 rc = -ENOMEM;
83 goto fail;
86 jfs_inode = JFS_IP(inode);
88 rc = diAlloc(parent, S_ISDIR(mode), inode);
89 if (rc) {
90 jfs_warn("ialloc: diAlloc returned %d!", rc);
91 if (rc == -EIO)
92 make_bad_inode(inode);
93 goto fail_put;
96 if (insert_inode_locked(inode) < 0) {
97 rc = -EINVAL;
98 goto fail_unlock;
101 inode->i_uid = current_fsuid();
102 if (parent->i_mode & S_ISGID) {
103 inode->i_gid = parent->i_gid;
104 if (S_ISDIR(mode))
105 mode |= S_ISGID;
106 } else
107 inode->i_gid = current_fsgid();
110 * New inodes need to save sane values on disk when
111 * uid & gid mount options are used
113 jfs_inode->saved_uid = inode->i_uid;
114 jfs_inode->saved_gid = inode->i_gid;
117 * Allocate inode to quota.
119 if (vfs_dq_alloc_inode(inode)) {
120 rc = -EDQUOT;
121 goto fail_drop;
124 inode->i_mode = mode;
125 /* inherit flags from parent */
126 jfs_inode->mode2 = JFS_IP(parent)->mode2 & JFS_FL_INHERIT;
128 if (S_ISDIR(mode)) {
129 jfs_inode->mode2 |= IDIRECTORY;
130 jfs_inode->mode2 &= ~JFS_DIRSYNC_FL;
132 else {
133 jfs_inode->mode2 |= INLINEEA | ISPARSE;
134 if (S_ISLNK(mode))
135 jfs_inode->mode2 &= ~(JFS_IMMUTABLE_FL|JFS_APPEND_FL);
137 jfs_inode->mode2 |= mode;
139 inode->i_blocks = 0;
140 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
141 jfs_inode->otime = inode->i_ctime.tv_sec;
142 inode->i_generation = JFS_SBI(sb)->gengen++;
144 jfs_inode->cflag = 0;
146 /* Zero remaining fields */
147 memset(&jfs_inode->acl, 0, sizeof(dxd_t));
148 memset(&jfs_inode->ea, 0, sizeof(dxd_t));
149 jfs_inode->next_index = 0;
150 jfs_inode->acltype = 0;
151 jfs_inode->btorder = 0;
152 jfs_inode->btindex = 0;
153 jfs_inode->bxflag = 0;
154 jfs_inode->blid = 0;
155 jfs_inode->atlhead = 0;
156 jfs_inode->atltail = 0;
157 jfs_inode->xtlid = 0;
158 jfs_set_inode_flags(inode);
160 jfs_info("ialloc returns inode = 0x%p\n", inode);
162 return inode;
164 fail_drop:
165 vfs_dq_drop(inode);
166 inode->i_flags |= S_NOQUOTA;
167 fail_unlock:
168 inode->i_nlink = 0;
169 unlock_new_inode(inode);
170 fail_put:
171 iput(inode);
172 fail:
173 return ERR_PTR(rc);