]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/jfs/jfs_inode.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[mirror_ubuntu-artful-kernel.git] / fs / jfs / jfs_inode.c
CommitLineData
1da177e4
LT
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
63f83c9f 6 * the Free Software Foundation; either version 2 of the License, or
1da177e4 7 * (at your option) any later version.
63f83c9f 8 *
1da177e4
LT
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
63f83c9f 15 * along with this program; if not, write to the Free Software
1da177e4
LT
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19#include <linux/fs.h>
20#include <linux/quotaops.h>
21#include "jfs_incore.h"
1868f4aa 22#include "jfs_inode.h"
1da177e4
LT
23#include "jfs_filsys.h"
24#include "jfs_imap.h"
25#include "jfs_dinode.h"
26#include "jfs_debug.h"
27
fa3241d2
HP
28
29void jfs_set_inode_flags(struct inode *inode)
30{
31 unsigned int flags = JFS_IP(inode)->mode2;
24e4a0f3 32 unsigned int new_fl = 0;
fa3241d2
HP
33
34 if (flags & JFS_IMMUTABLE_FL)
24e4a0f3 35 new_fl |= S_IMMUTABLE;
fa3241d2 36 if (flags & JFS_APPEND_FL)
24e4a0f3 37 new_fl |= S_APPEND;
fa3241d2 38 if (flags & JFS_NOATIME_FL)
24e4a0f3 39 new_fl |= S_NOATIME;
fa3241d2 40 if (flags & JFS_DIRSYNC_FL)
24e4a0f3 41 new_fl |= S_DIRSYNC;
fa3241d2 42 if (flags & JFS_SYNC_FL)
24e4a0f3
FF
43 new_fl |= S_SYNC;
44 inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND | S_NOATIME |
45 S_DIRSYNC | S_SYNC);
fa3241d2
HP
46}
47
3e2221c7
DK
48void jfs_get_inode_flags(struct jfs_inode_info *jfs_ip)
49{
50 unsigned int flags = jfs_ip->vfs_inode.i_flags;
51
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;
64}
65
1da177e4
LT
66/*
67 * NAME: ialloc()
68 *
69 * FUNCTION: Allocate a new inode
70 *
71 */
72struct inode *ialloc(struct inode *parent, umode_t mode)
73{
74 struct super_block *sb = parent->i_sb;
75 struct inode *inode;
76 struct jfs_inode_info *jfs_inode;
77 int rc;
78
79 inode = new_inode(sb);
80 if (!inode) {
81 jfs_warn("ialloc: new_inode returned NULL!");
1f3403fa
DK
82 rc = -ENOMEM;
83 goto fail;
1da177e4
LT
84 }
85
86 jfs_inode = JFS_IP(inode);
87
88 rc = diAlloc(parent, S_ISDIR(mode), inode);
89 if (rc) {
90 jfs_warn("ialloc: diAlloc returned %d!", rc);
087387f9
AM
91 if (rc == -EIO)
92 make_bad_inode(inode);
1f3403fa
DK
93 goto fail_put;
94 }
95
96 if (insert_inode_locked(inode) < 0) {
97 rc = -EINVAL;
86609986 98 goto fail_put;
1da177e4
LT
99 }
100
319b2be4 101 inode_init_owner(inode, parent, mode);
69eb66d7
DK
102 /*
103 * New inodes need to save sane values on disk when
104 * uid & gid mount options are used
105 */
106 jfs_inode->saved_uid = inode->i_uid;
107 jfs_inode->saved_gid = inode->i_gid;
108
1da177e4
LT
109 /*
110 * Allocate inode to quota.
111 */
acc84b05
DK
112 rc = dquot_initialize(inode);
113 if (rc)
114 goto fail_drop;
63936dda
CH
115 rc = dquot_alloc_inode(inode);
116 if (rc)
1f3403fa 117 goto fail_drop;
1da177e4 118
fa3241d2
HP
119 /* inherit flags from parent */
120 jfs_inode->mode2 = JFS_IP(parent)->mode2 & JFS_FL_INHERIT;
121
122 if (S_ISDIR(mode)) {
123 jfs_inode->mode2 |= IDIRECTORY;
124 jfs_inode->mode2 &= ~JFS_DIRSYNC_FL;
125 }
4837c672 126 else {
fa3241d2 127 jfs_inode->mode2 |= INLINEEA | ISPARSE;
4837c672
DK
128 if (S_ISLNK(mode))
129 jfs_inode->mode2 &= ~(JFS_IMMUTABLE_FL|JFS_APPEND_FL);
130 }
319b2be4 131 jfs_inode->mode2 |= inode->i_mode;
fa3241d2 132
1da177e4 133 inode->i_blocks = 0;
078cd827 134 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
1da177e4
LT
135 jfs_inode->otime = inode->i_ctime.tv_sec;
136 inode->i_generation = JFS_SBI(sb)->gengen++;
137
138 jfs_inode->cflag = 0;
139
140 /* Zero remaining fields */
141 memset(&jfs_inode->acl, 0, sizeof(dxd_t));
142 memset(&jfs_inode->ea, 0, sizeof(dxd_t));
143 jfs_inode->next_index = 0;
144 jfs_inode->acltype = 0;
145 jfs_inode->btorder = 0;
146 jfs_inode->btindex = 0;
147 jfs_inode->bxflag = 0;
148 jfs_inode->blid = 0;
149 jfs_inode->atlhead = 0;
150 jfs_inode->atltail = 0;
151 jfs_inode->xtlid = 0;
fa3241d2 152 jfs_set_inode_flags(inode);
1da177e4 153
b18db6de 154 jfs_info("ialloc returns inode = 0x%p", inode);
1da177e4
LT
155
156 return inode;
1f3403fa
DK
157
158fail_drop:
9f754758 159 dquot_drop(inode);
1f3403fa 160 inode->i_flags |= S_NOQUOTA;
6d6b77f1 161 clear_nlink(inode);
1f3403fa
DK
162 unlock_new_inode(inode);
163fail_put:
164 iput(inode);
165fail:
166 return ERR_PTR(rc);
1da177e4 167}