2 * Copyright (C) International Business Machines Corp., 2000-2004
3 * Portions Copyright (C) Christoph Hellwig, 2001-2002
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/mpage.h>
22 #include <linux/buffer_head.h>
23 #include <linux/pagemap.h>
24 #include <linux/quotaops.h>
25 #include "jfs_incore.h"
26 #include "jfs_filsys.h"
28 #include "jfs_extent.h"
29 #include "jfs_unicode.h"
30 #include "jfs_debug.h"
33 extern struct inode_operations jfs_dir_inode_operations
;
34 extern struct inode_operations jfs_file_inode_operations
;
35 extern struct inode_operations jfs_symlink_inode_operations
;
36 extern struct file_operations jfs_dir_operations
;
37 extern struct file_operations jfs_file_operations
;
38 struct address_space_operations jfs_aops
;
39 extern int freeZeroLink(struct inode
*);
41 void jfs_read_inode(struct inode
*inode
)
44 make_bad_inode(inode
);
48 if (S_ISREG(inode
->i_mode
)) {
49 inode
->i_op
= &jfs_file_inode_operations
;
50 inode
->i_fop
= &jfs_file_operations
;
51 inode
->i_mapping
->a_ops
= &jfs_aops
;
52 } else if (S_ISDIR(inode
->i_mode
)) {
53 inode
->i_op
= &jfs_dir_inode_operations
;
54 inode
->i_fop
= &jfs_dir_operations
;
55 inode
->i_mapping
->a_ops
= &jfs_aops
;
56 mapping_set_gfp_mask(inode
->i_mapping
, GFP_NOFS
);
57 } else if (S_ISLNK(inode
->i_mode
)) {
58 if (inode
->i_size
>= IDATASIZE
) {
59 inode
->i_op
= &page_symlink_inode_operations
;
60 inode
->i_mapping
->a_ops
= &jfs_aops
;
62 inode
->i_op
= &jfs_symlink_inode_operations
;
64 inode
->i_op
= &jfs_file_inode_operations
;
65 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
70 * Workhorse of both fsync & write_inode
72 int jfs_commit_inode(struct inode
*inode
, int wait
)
78 jfs_info("In jfs_commit_inode, inode = 0x%p", inode
);
81 * Don't commit if inode has been committed since last being
82 * marked dirty, or if it has been deleted.
84 if (test_cflag(COMMIT_Nolink
, inode
) ||
85 !test_cflag(COMMIT_Dirty
, inode
))
88 if (isReadOnly(inode
)) {
89 /* kernel allows writes to devices on read-only
90 * partitions and may think inode is dirty
92 if (!special_file(inode
->i_mode
) && noisy
) {
93 jfs_err("jfs_commit_inode(0x%p) called on "
94 "read-only volume", inode
);
95 jfs_err("Is remount racy?");
101 tid
= txBegin(inode
->i_sb
, COMMIT_INODE
);
102 down(&JFS_IP(inode
)->commit_sem
);
103 rc
= txCommit(tid
, 1, &inode
, wait
? COMMIT_SYNC
: 0);
105 up(&JFS_IP(inode
)->commit_sem
);
109 int jfs_write_inode(struct inode
*inode
, int wait
)
111 if (test_cflag(COMMIT_Nolink
, inode
))
114 * If COMMIT_DIRTY is not set, the inode isn't really dirty.
115 * It has been committed since the last change, but was still
116 * on the dirty inode list.
118 if (!test_cflag(COMMIT_Dirty
, inode
)) {
119 /* Make sure committed changes hit the disk */
120 jfs_flush_journal(JFS_SBI(inode
->i_sb
)->log
, wait
);
124 if (jfs_commit_inode(inode
, wait
)) {
125 jfs_err("jfs_write_inode: jfs_commit_inode failed!");
131 void jfs_delete_inode(struct inode
*inode
)
133 jfs_info("In jfs_delete_inode, inode = 0x%p", inode
);
135 if (test_cflag(COMMIT_Freewmap
, inode
))
141 * Free the inode from the quota allocation.
144 DQUOT_FREE_INODE(inode
);
150 void jfs_dirty_inode(struct inode
*inode
)
152 static int noisy
= 5;
154 if (isReadOnly(inode
)) {
155 if (!special_file(inode
->i_mode
) && noisy
) {
156 /* kernel allows writes to devices on read-only
157 * partitions and may try to mark inode dirty
159 jfs_err("jfs_dirty_inode called on read-only volume");
160 jfs_err("Is remount racy?");
166 set_cflag(COMMIT_Dirty
, inode
);
170 jfs_get_blocks(struct inode
*ip
, sector_t lblock
, unsigned long max_blocks
,
171 struct buffer_head
*bh_result
, int create
)
173 s64 lblock64
= lblock
;
174 int no_size_check
= 0;
183 * If this is a special inode (imap, dmap) or directory,
184 * the lock should already be taken
186 take_locks
= ((JFS_IP(ip
)->fileset
!= AGGREGATE_I
) &&
187 !S_ISDIR(ip
->i_mode
));
189 * Take appropriate lock on inode
199 * A directory's "data" is the inode index table, but i_size is the
200 * size of the d-tree, so don't check the offset against i_size
202 if (S_ISDIR(ip
->i_mode
))
205 if ((no_size_check
||
206 ((lblock64
<< ip
->i_sb
->s_blocksize_bits
) < ip
->i_size
)) &&
207 (xtLookup(ip
, lblock64
, max_blocks
, &xflag
, &xaddr
, &xlen
, no_size_check
)
209 if (xflag
& XAD_NOTRECORDED
) {
212 * Allocated but not recorded, read treats
217 XADoffset(&xad
, lblock64
);
218 XADlength(&xad
, xlen
);
219 XADaddress(&xad
, xaddr
);
222 * As long as block size = 4K, this isn't a problem.
223 * We should mark the whole page not ABNR, but how
224 * will we know to mark the other blocks BH_New?
228 rc
= extRecord(ip
, &xad
);
231 set_buffer_new(bh_result
);
234 map_bh(bh_result
, ip
->i_sb
, xaddr
);
235 bh_result
->b_size
= xlen
<< ip
->i_blkbits
;
242 * Allocate a new block
245 if ((rc
= extHint(ip
, lblock64
<< ip
->i_sb
->s_blocksize_bits
, &xad
)))
247 rc
= extAlloc(ip
, max_blocks
, lblock64
, &xad
, FALSE
);
251 set_buffer_new(bh_result
);
252 map_bh(bh_result
, ip
->i_sb
, addressXAD(&xad
));
253 bh_result
->b_size
= lengthXAD(&xad
) << ip
->i_blkbits
;
257 * We need to do whatever it takes to keep all but the last buffers
258 * in 4K pages - see jfs_write.c
265 * Release lock on inode
276 static int jfs_get_block(struct inode
*ip
, sector_t lblock
,
277 struct buffer_head
*bh_result
, int create
)
279 return jfs_get_blocks(ip
, lblock
, 1, bh_result
, create
);
282 static int jfs_writepage(struct page
*page
, struct writeback_control
*wbc
)
284 return block_write_full_page(page
, jfs_get_block
, wbc
);
287 static int jfs_writepages(struct address_space
*mapping
,
288 struct writeback_control
*wbc
)
290 return mpage_writepages(mapping
, wbc
, jfs_get_block
);
293 static int jfs_readpage(struct file
*file
, struct page
*page
)
295 return mpage_readpage(page
, jfs_get_block
);
298 static int jfs_readpages(struct file
*file
, struct address_space
*mapping
,
299 struct list_head
*pages
, unsigned nr_pages
)
301 return mpage_readpages(mapping
, pages
, nr_pages
, jfs_get_block
);
304 static int jfs_prepare_write(struct file
*file
,
305 struct page
*page
, unsigned from
, unsigned to
)
307 return nobh_prepare_write(page
, from
, to
, jfs_get_block
);
310 static sector_t
jfs_bmap(struct address_space
*mapping
, sector_t block
)
312 return generic_block_bmap(mapping
, block
, jfs_get_block
);
315 static ssize_t
jfs_direct_IO(int rw
, struct kiocb
*iocb
,
316 const struct iovec
*iov
, loff_t offset
, unsigned long nr_segs
)
318 struct file
*file
= iocb
->ki_filp
;
319 struct inode
*inode
= file
->f_mapping
->host
;
321 return blockdev_direct_IO(rw
, iocb
, inode
, inode
->i_sb
->s_bdev
, iov
,
322 offset
, nr_segs
, jfs_get_blocks
, NULL
);
325 struct address_space_operations jfs_aops
= {
326 .readpage
= jfs_readpage
,
327 .readpages
= jfs_readpages
,
328 .writepage
= jfs_writepage
,
329 .writepages
= jfs_writepages
,
330 .sync_page
= block_sync_page
,
331 .prepare_write
= jfs_prepare_write
,
332 .commit_write
= nobh_commit_write
,
334 .direct_IO
= jfs_direct_IO
,
338 * Guts of jfs_truncate. Called with locks already held. Can be called
339 * with directory for truncating directory index table.
341 void jfs_truncate_nolock(struct inode
*ip
, loff_t length
)
348 if (test_cflag(COMMIT_Nolink
, ip
)) {
349 xtTruncate(0, ip
, length
, COMMIT_WMAP
);
354 tid
= txBegin(ip
->i_sb
, 0);
357 * The commit_sem cannot be taken before txBegin.
358 * txBegin may block and there is a chance the inode
359 * could be marked dirty and need to be committed
360 * before txBegin unblocks
362 down(&JFS_IP(ip
)->commit_sem
);
364 newsize
= xtTruncate(tid
, ip
, length
,
365 COMMIT_TRUNCATE
| COMMIT_PWMAP
);
368 up(&JFS_IP(ip
)->commit_sem
);
372 ip
->i_mtime
= ip
->i_ctime
= CURRENT_TIME
;
373 mark_inode_dirty(ip
);
375 txCommit(tid
, 1, &ip
, 0);
377 up(&JFS_IP(ip
)->commit_sem
);
378 } while (newsize
> length
); /* Truncate isn't always atomic */
381 void jfs_truncate(struct inode
*ip
)
383 jfs_info("jfs_truncate: size = 0x%lx", (ulong
) ip
->i_size
);
385 nobh_truncate_page(ip
->i_mapping
, ip
->i_size
);
388 jfs_truncate_nolock(ip
, ip
->i_size
);