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
20 #include <linux/quotaops.h>
21 #include "jfs_incore.h"
22 #include "jfs_inode.h"
23 #include "jfs_filsys.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
;
32 unsigned int new_fl
= 0;
34 if (flags
& JFS_IMMUTABLE_FL
)
35 new_fl
|= S_IMMUTABLE
;
36 if (flags
& JFS_APPEND_FL
)
38 if (flags
& JFS_NOATIME_FL
)
40 if (flags
& JFS_DIRSYNC_FL
)
42 if (flags
& JFS_SYNC_FL
)
44 inode_set_flags(inode
, new_fl
, S_IMMUTABLE
| S_APPEND
| S_NOATIME
|
51 * FUNCTION: Allocate a new inode
54 struct inode
*ialloc(struct inode
*parent
, umode_t mode
)
56 struct super_block
*sb
= parent
->i_sb
;
58 struct jfs_inode_info
*jfs_inode
;
61 inode
= new_inode(sb
);
63 jfs_warn("ialloc: new_inode returned NULL!");
68 jfs_inode
= JFS_IP(inode
);
70 rc
= diAlloc(parent
, S_ISDIR(mode
), inode
);
72 jfs_warn("ialloc: diAlloc returned %d!", rc
);
74 make_bad_inode(inode
);
78 if (insert_inode_locked(inode
) < 0) {
83 inode_init_owner(inode
, parent
, mode
);
85 * New inodes need to save sane values on disk when
86 * uid & gid mount options are used
88 jfs_inode
->saved_uid
= inode
->i_uid
;
89 jfs_inode
->saved_gid
= inode
->i_gid
;
92 * Allocate inode to quota.
94 rc
= dquot_initialize(inode
);
97 rc
= dquot_alloc_inode(inode
);
101 /* inherit flags from parent */
102 jfs_inode
->mode2
= JFS_IP(parent
)->mode2
& JFS_FL_INHERIT
;
105 jfs_inode
->mode2
|= IDIRECTORY
;
106 jfs_inode
->mode2
&= ~JFS_DIRSYNC_FL
;
109 jfs_inode
->mode2
|= INLINEEA
| ISPARSE
;
111 jfs_inode
->mode2
&= ~(JFS_IMMUTABLE_FL
|JFS_APPEND_FL
);
113 jfs_inode
->mode2
|= inode
->i_mode
;
116 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= current_time(inode
);
117 jfs_inode
->otime
= inode
->i_ctime
.tv_sec
;
118 inode
->i_generation
= JFS_SBI(sb
)->gengen
++;
120 jfs_inode
->cflag
= 0;
122 /* Zero remaining fields */
123 memset(&jfs_inode
->acl
, 0, sizeof(dxd_t
));
124 memset(&jfs_inode
->ea
, 0, sizeof(dxd_t
));
125 jfs_inode
->next_index
= 0;
126 jfs_inode
->acltype
= 0;
127 jfs_inode
->btorder
= 0;
128 jfs_inode
->btindex
= 0;
129 jfs_inode
->bxflag
= 0;
131 jfs_inode
->atlhead
= 0;
132 jfs_inode
->atltail
= 0;
133 jfs_inode
->xtlid
= 0;
134 jfs_set_inode_flags(inode
);
136 jfs_info("ialloc returns inode = 0x%p", inode
);
142 inode
->i_flags
|= S_NOQUOTA
;
144 unlock_new_inode(inode
);