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 <linux/writeback.h>
26 #include "jfs_incore.h"
27 #include "jfs_inode.h"
28 #include "jfs_filsys.h"
30 #include "jfs_extent.h"
31 #include "jfs_unicode.h"
32 #include "jfs_debug.h"
35 struct inode
*jfs_iget(struct super_block
*sb
, unsigned long ino
)
40 inode
= iget_locked(sb
, ino
);
42 return ERR_PTR(-ENOMEM
);
43 if (!(inode
->i_state
& I_NEW
))
52 if (S_ISREG(inode
->i_mode
)) {
53 inode
->i_op
= &jfs_file_inode_operations
;
54 inode
->i_fop
= &jfs_file_operations
;
55 inode
->i_mapping
->a_ops
= &jfs_aops
;
56 } else if (S_ISDIR(inode
->i_mode
)) {
57 inode
->i_op
= &jfs_dir_inode_operations
;
58 inode
->i_fop
= &jfs_dir_operations
;
59 } else if (S_ISLNK(inode
->i_mode
)) {
60 if (inode
->i_size
>= IDATASIZE
) {
61 inode
->i_op
= &page_symlink_inode_operations
;
62 inode
->i_mapping
->a_ops
= &jfs_aops
;
64 inode
->i_op
= &jfs_fast_symlink_inode_operations
;
66 * The inline data should be null-terminated, but
67 * don't let on-disk corruption crash the kernel
69 JFS_IP(inode
)->i_inline
[inode
->i_size
] = '\0';
72 inode
->i_op
= &jfs_file_inode_operations
;
73 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
75 unlock_new_inode(inode
);
80 * Workhorse of both fsync & write_inode
82 int jfs_commit_inode(struct inode
*inode
, int wait
)
88 jfs_info("In jfs_commit_inode, inode = 0x%p", inode
);
91 * Don't commit if inode has been committed since last being
92 * marked dirty, or if it has been deleted.
94 if (inode
->i_nlink
== 0 || !test_cflag(COMMIT_Dirty
, inode
))
97 if (isReadOnly(inode
)) {
98 /* kernel allows writes to devices on read-only
99 * partitions and may think inode is dirty
101 if (!special_file(inode
->i_mode
) && noisy
) {
102 jfs_err("jfs_commit_inode(0x%p) called on "
103 "read-only volume", inode
);
104 jfs_err("Is remount racy?");
110 tid
= txBegin(inode
->i_sb
, COMMIT_INODE
);
111 mutex_lock(&JFS_IP(inode
)->commit_mutex
);
114 * Retest inode state after taking commit_mutex
116 if (inode
->i_nlink
&& test_cflag(COMMIT_Dirty
, inode
))
117 rc
= txCommit(tid
, 1, &inode
, wait
? COMMIT_SYNC
: 0);
120 mutex_unlock(&JFS_IP(inode
)->commit_mutex
);
124 int jfs_write_inode(struct inode
*inode
, struct writeback_control
*wbc
)
126 int wait
= wbc
->sync_mode
== WB_SYNC_ALL
;
128 if (test_cflag(COMMIT_Nolink
, inode
))
131 * If COMMIT_DIRTY is not set, the inode isn't really dirty.
132 * It has been committed since the last change, but was still
133 * on the dirty inode list.
135 if (!test_cflag(COMMIT_Dirty
, inode
)) {
136 /* Make sure committed changes hit the disk */
137 jfs_flush_journal(JFS_SBI(inode
->i_sb
)->log
, wait
);
141 if (jfs_commit_inode(inode
, wait
)) {
142 jfs_err("jfs_write_inode: jfs_commit_inode failed!");
148 void jfs_evict_inode(struct inode
*inode
)
150 jfs_info("In jfs_evict_inode, inode = 0x%p", inode
);
152 if (!inode
->i_nlink
&& !is_bad_inode(inode
)) {
153 dquot_initialize(inode
);
155 if (JFS_IP(inode
)->fileset
== FILESYSTEM_I
) {
156 truncate_inode_pages(&inode
->i_data
, 0);
158 if (test_cflag(COMMIT_Freewmap
, inode
))
159 jfs_free_zero_link(inode
);
164 * Free the inode from the quota allocation.
166 dquot_initialize(inode
);
167 dquot_free_inode(inode
);
170 truncate_inode_pages(&inode
->i_data
, 0);
172 end_writeback(inode
);
176 void jfs_dirty_inode(struct inode
*inode
)
178 static int noisy
= 5;
180 if (isReadOnly(inode
)) {
181 if (!special_file(inode
->i_mode
) && noisy
) {
182 /* kernel allows writes to devices on read-only
183 * partitions and may try to mark inode dirty
185 jfs_err("jfs_dirty_inode called on read-only volume");
186 jfs_err("Is remount racy?");
192 set_cflag(COMMIT_Dirty
, inode
);
195 int jfs_get_block(struct inode
*ip
, sector_t lblock
,
196 struct buffer_head
*bh_result
, int create
)
198 s64 lblock64
= lblock
;
203 s32 xlen
= bh_result
->b_size
>> ip
->i_blkbits
;
206 * Take appropriate lock on inode
209 IWRITE_LOCK(ip
, RDWRLOCK_NORMAL
);
211 IREAD_LOCK(ip
, RDWRLOCK_NORMAL
);
213 if (((lblock64
<< ip
->i_sb
->s_blocksize_bits
) < ip
->i_size
) &&
214 (!xtLookup(ip
, lblock64
, xlen
, &xflag
, &xaddr
, &xlen
, 0)) &&
216 if (xflag
& XAD_NOTRECORDED
) {
219 * Allocated but not recorded, read treats
224 XADoffset(&xad
, lblock64
);
225 XADlength(&xad
, xlen
);
226 XADaddress(&xad
, xaddr
);
229 * As long as block size = 4K, this isn't a problem.
230 * We should mark the whole page not ABNR, but how
231 * will we know to mark the other blocks BH_New?
235 rc
= extRecord(ip
, &xad
);
238 set_buffer_new(bh_result
);
241 map_bh(bh_result
, ip
->i_sb
, xaddr
);
242 bh_result
->b_size
= xlen
<< ip
->i_blkbits
;
249 * Allocate a new block
252 if ((rc
= extHint(ip
, lblock64
<< ip
->i_sb
->s_blocksize_bits
, &xad
)))
254 rc
= extAlloc(ip
, xlen
, lblock64
, &xad
, false);
258 set_buffer_new(bh_result
);
259 map_bh(bh_result
, ip
->i_sb
, addressXAD(&xad
));
260 bh_result
->b_size
= lengthXAD(&xad
) << ip
->i_blkbits
;
264 * We need to do whatever it takes to keep all but the last buffers
265 * in 4K pages - see jfs_write.c
272 * Release lock on inode
281 static int jfs_writepage(struct page
*page
, struct writeback_control
*wbc
)
283 return block_write_full_page(page
, jfs_get_block
, wbc
);
286 static int jfs_writepages(struct address_space
*mapping
,
287 struct writeback_control
*wbc
)
289 return mpage_writepages(mapping
, wbc
, jfs_get_block
);
292 static int jfs_readpage(struct file
*file
, struct page
*page
)
294 return mpage_readpage(page
, jfs_get_block
);
297 static int jfs_readpages(struct file
*file
, struct address_space
*mapping
,
298 struct list_head
*pages
, unsigned nr_pages
)
300 return mpage_readpages(mapping
, pages
, nr_pages
, jfs_get_block
);
303 static int jfs_write_begin(struct file
*file
, struct address_space
*mapping
,
304 loff_t pos
, unsigned len
, unsigned flags
,
305 struct page
**pagep
, void **fsdata
)
309 ret
= nobh_write_begin(mapping
, pos
, len
, flags
, pagep
, fsdata
,
312 loff_t isize
= mapping
->host
->i_size
;
313 if (pos
+ len
> isize
)
314 vmtruncate(mapping
->host
, isize
);
320 static sector_t
jfs_bmap(struct address_space
*mapping
, sector_t block
)
322 return generic_block_bmap(mapping
, block
, jfs_get_block
);
325 static ssize_t
jfs_direct_IO(int rw
, struct kiocb
*iocb
,
326 const struct iovec
*iov
, loff_t offset
, unsigned long nr_segs
)
328 struct file
*file
= iocb
->ki_filp
;
329 struct inode
*inode
= file
->f_mapping
->host
;
332 ret
= blockdev_direct_IO(rw
, iocb
, inode
, inode
->i_sb
->s_bdev
, iov
,
333 offset
, nr_segs
, jfs_get_block
, NULL
);
336 * In case of error extending write may have instantiated a few
337 * blocks outside i_size. Trim these off again.
339 if (unlikely((rw
& WRITE
) && ret
< 0)) {
340 loff_t isize
= i_size_read(inode
);
341 loff_t end
= offset
+ iov_length(iov
, nr_segs
);
344 vmtruncate(inode
, isize
);
350 const struct address_space_operations jfs_aops
= {
351 .readpage
= jfs_readpage
,
352 .readpages
= jfs_readpages
,
353 .writepage
= jfs_writepage
,
354 .writepages
= jfs_writepages
,
355 .write_begin
= jfs_write_begin
,
356 .write_end
= nobh_write_end
,
358 .direct_IO
= jfs_direct_IO
,
362 * Guts of jfs_truncate. Called with locks already held. Can be called
363 * with directory for truncating directory index table.
365 void jfs_truncate_nolock(struct inode
*ip
, loff_t length
)
372 if (test_cflag(COMMIT_Nolink
, ip
)) {
373 xtTruncate(0, ip
, length
, COMMIT_WMAP
);
378 tid
= txBegin(ip
->i_sb
, 0);
381 * The commit_mutex cannot be taken before txBegin.
382 * txBegin may block and there is a chance the inode
383 * could be marked dirty and need to be committed
384 * before txBegin unblocks
386 mutex_lock(&JFS_IP(ip
)->commit_mutex
);
388 newsize
= xtTruncate(tid
, ip
, length
,
389 COMMIT_TRUNCATE
| COMMIT_PWMAP
);
392 mutex_unlock(&JFS_IP(ip
)->commit_mutex
);
396 ip
->i_mtime
= ip
->i_ctime
= CURRENT_TIME
;
397 mark_inode_dirty(ip
);
399 txCommit(tid
, 1, &ip
, 0);
401 mutex_unlock(&JFS_IP(ip
)->commit_mutex
);
402 } while (newsize
> length
); /* Truncate isn't always atomic */
405 void jfs_truncate(struct inode
*ip
)
407 jfs_info("jfs_truncate: size = 0x%lx", (ulong
) ip
->i_size
);
409 nobh_truncate_page(ip
->i_mapping
, ip
->i_size
, jfs_get_block
);
411 IWRITE_LOCK(ip
, RDWRLOCK_NORMAL
);
412 jfs_truncate_nolock(ip
, ip
->i_size
);