Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) International Business Machines Corp., 2000-2004 |
| 3 | * Portions Copyright (C) Christoph Hellwig, 2001-2002 |
| 4 | * |
| 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 |
Dave Kleikamp | 63f83c9 | 2006-10-02 09:55:27 -0500 | [diff] [blame] | 7 | * the Free Software Foundation; either version 2 of the License, or |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * (at your option) any later version. |
Dave Kleikamp | 63f83c9 | 2006-10-02 09:55:27 -0500 | [diff] [blame] | 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
Dave Kleikamp | 63f83c9 | 2006-10-02 09:55:27 -0500 | [diff] [blame] | 16 | * along with this program; if not, write to the Free Software |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 18 | */ |
| 19 | |
| 20 | #include <linux/fs.h> |
| 21 | #include <linux/mpage.h> |
| 22 | #include <linux/buffer_head.h> |
| 23 | #include <linux/pagemap.h> |
| 24 | #include <linux/quotaops.h> |
Christoph Hellwig | e2e40f2 | 2015-02-22 08:58:50 -0800 | [diff] [blame] | 25 | #include <linux/uio.h> |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 26 | #include <linux/writeback.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "jfs_incore.h" |
Dave Kleikamp | 1868f4a | 2005-05-04 15:29:35 -0500 | [diff] [blame] | 28 | #include "jfs_inode.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include "jfs_filsys.h" |
| 30 | #include "jfs_imap.h" |
| 31 | #include "jfs_extent.h" |
| 32 | #include "jfs_unicode.h" |
| 33 | #include "jfs_debug.h" |
| 34 | |
| 35 | |
David Howells | eab1df7 | 2008-02-07 00:15:43 -0800 | [diff] [blame] | 36 | struct inode *jfs_iget(struct super_block *sb, unsigned long ino) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | { |
David Howells | eab1df7 | 2008-02-07 00:15:43 -0800 | [diff] [blame] | 38 | struct inode *inode; |
| 39 | int ret; |
| 40 | |
| 41 | inode = iget_locked(sb, ino); |
| 42 | if (!inode) |
| 43 | return ERR_PTR(-ENOMEM); |
| 44 | if (!(inode->i_state & I_NEW)) |
| 45 | return inode; |
| 46 | |
| 47 | ret = diRead(inode); |
| 48 | if (ret < 0) { |
| 49 | iget_failed(inode); |
| 50 | return ERR_PTR(ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | if (S_ISREG(inode->i_mode)) { |
| 54 | inode->i_op = &jfs_file_inode_operations; |
| 55 | inode->i_fop = &jfs_file_operations; |
| 56 | inode->i_mapping->a_ops = &jfs_aops; |
| 57 | } else if (S_ISDIR(inode->i_mode)) { |
| 58 | inode->i_op = &jfs_dir_inode_operations; |
| 59 | inode->i_fop = &jfs_dir_operations; |
| 60 | } else if (S_ISLNK(inode->i_mode)) { |
| 61 | if (inode->i_size >= IDATASIZE) { |
| 62 | inode->i_op = &page_symlink_inode_operations; |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 63 | inode_nohighmem(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | inode->i_mapping->a_ops = &jfs_aops; |
Dave Kleikamp | d69e83d | 2008-12-16 10:21:34 -0600 | [diff] [blame] | 65 | } else { |
Dmitry Monakhov | c7f2e1f | 2010-04-16 08:05:50 -0500 | [diff] [blame] | 66 | inode->i_op = &jfs_fast_symlink_inode_operations; |
Al Viro | ad476fe | 2015-05-02 10:41:20 -0400 | [diff] [blame] | 67 | inode->i_link = JFS_IP(inode)->i_inline; |
Dave Kleikamp | d69e83d | 2008-12-16 10:21:34 -0600 | [diff] [blame] | 68 | /* |
| 69 | * The inline data should be null-terminated, but |
| 70 | * don't let on-disk corruption crash the kernel |
| 71 | */ |
Al Viro | ad476fe | 2015-05-02 10:41:20 -0400 | [diff] [blame] | 72 | inode->i_link[inode->i_size] = '\0'; |
Dave Kleikamp | d69e83d | 2008-12-16 10:21:34 -0600 | [diff] [blame] | 73 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } else { |
| 75 | inode->i_op = &jfs_file_inode_operations; |
| 76 | init_special_inode(inode, inode->i_mode, inode->i_rdev); |
| 77 | } |
David Howells | eab1df7 | 2008-02-07 00:15:43 -0800 | [diff] [blame] | 78 | unlock_new_inode(inode); |
| 79 | return inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | /* |
| 83 | * Workhorse of both fsync & write_inode |
| 84 | */ |
| 85 | int jfs_commit_inode(struct inode *inode, int wait) |
| 86 | { |
| 87 | int rc = 0; |
| 88 | tid_t tid; |
| 89 | static int noisy = 5; |
| 90 | |
| 91 | jfs_info("In jfs_commit_inode, inode = 0x%p", inode); |
| 92 | |
| 93 | /* |
| 94 | * Don't commit if inode has been committed since last being |
| 95 | * marked dirty, or if it has been deleted. |
| 96 | */ |
| 97 | if (inode->i_nlink == 0 || !test_cflag(COMMIT_Dirty, inode)) |
| 98 | return 0; |
| 99 | |
| 100 | if (isReadOnly(inode)) { |
| 101 | /* kernel allows writes to devices on read-only |
| 102 | * partitions and may think inode is dirty |
| 103 | */ |
| 104 | if (!special_file(inode->i_mode) && noisy) { |
Joe Perches | 6ed71e9 | 2016-03-30 05:23:18 -0700 | [diff] [blame] | 105 | jfs_err("jfs_commit_inode(0x%p) called on read-only volume", |
| 106 | inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | jfs_err("Is remount racy?"); |
| 108 | noisy--; |
| 109 | } |
| 110 | return 0; |
| 111 | } |
| 112 | |
| 113 | tid = txBegin(inode->i_sb, COMMIT_INODE); |
Ingo Molnar | 1de8744 | 2006-01-24 15:22:50 -0600 | [diff] [blame] | 114 | mutex_lock(&JFS_IP(inode)->commit_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
| 116 | /* |
Ingo Molnar | 1de8744 | 2006-01-24 15:22:50 -0600 | [diff] [blame] | 117 | * Retest inode state after taking commit_mutex |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | */ |
| 119 | if (inode->i_nlink && test_cflag(COMMIT_Dirty, inode)) |
| 120 | rc = txCommit(tid, 1, &inode, wait ? COMMIT_SYNC : 0); |
| 121 | |
| 122 | txEnd(tid); |
Ingo Molnar | 1de8744 | 2006-01-24 15:22:50 -0600 | [diff] [blame] | 123 | mutex_unlock(&JFS_IP(inode)->commit_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | return rc; |
| 125 | } |
| 126 | |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 127 | int jfs_write_inode(struct inode *inode, struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | { |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 129 | int wait = wbc->sync_mode == WB_SYNC_ALL; |
| 130 | |
Dave Kleikamp | 73aaa22 | 2013-05-01 11:08:38 -0500 | [diff] [blame] | 131 | if (inode->i_nlink == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | return 0; |
| 133 | /* |
| 134 | * If COMMIT_DIRTY is not set, the inode isn't really dirty. |
| 135 | * It has been committed since the last change, but was still |
| 136 | * on the dirty inode list. |
| 137 | */ |
Colin Ian King | f7f31ad | 2015-06-04 17:57:03 +0100 | [diff] [blame] | 138 | if (!test_cflag(COMMIT_Dirty, inode)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | /* Make sure committed changes hit the disk */ |
| 140 | jfs_flush_journal(JFS_SBI(inode->i_sb)->log, wait); |
| 141 | return 0; |
Colin Ian King | f7f31ad | 2015-06-04 17:57:03 +0100 | [diff] [blame] | 142 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
| 144 | if (jfs_commit_inode(inode, wait)) { |
| 145 | jfs_err("jfs_write_inode: jfs_commit_inode failed!"); |
| 146 | return -EIO; |
| 147 | } else |
| 148 | return 0; |
| 149 | } |
| 150 | |
Al Viro | 62aff86 | 2010-06-07 00:28:54 -0400 | [diff] [blame] | 151 | void jfs_evict_inode(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | { |
Al Viro | 62aff86 | 2010-06-07 00:28:54 -0400 | [diff] [blame] | 153 | jfs_info("In jfs_evict_inode, inode = 0x%p", inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Al Viro | 62aff86 | 2010-06-07 00:28:54 -0400 | [diff] [blame] | 155 | if (!inode->i_nlink && !is_bad_inode(inode)) { |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 156 | dquot_initialize(inode); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 157 | |
Al Viro | 62aff86 | 2010-06-07 00:28:54 -0400 | [diff] [blame] | 158 | if (JFS_IP(inode)->fileset == FILESYSTEM_I) { |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 159 | truncate_inode_pages_final(&inode->i_data); |
Al Viro | 62aff86 | 2010-06-07 00:28:54 -0400 | [diff] [blame] | 160 | |
| 161 | if (test_cflag(COMMIT_Freewmap, inode)) |
| 162 | jfs_free_zero_link(inode); |
| 163 | |
| 164 | diFree(inode); |
| 165 | |
| 166 | /* |
| 167 | * Free the inode from the quota allocation. |
| 168 | */ |
| 169 | dquot_initialize(inode); |
| 170 | dquot_free_inode(inode); |
| 171 | } |
| 172 | } else { |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 173 | truncate_inode_pages_final(&inode->i_data); |
Dave Kleikamp | b1b5d7f | 2005-08-30 14:28:56 -0500 | [diff] [blame] | 174 | } |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 175 | clear_inode(inode); |
Al Viro | 62aff86 | 2010-06-07 00:28:54 -0400 | [diff] [blame] | 176 | dquot_drop(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Christoph Hellwig | aa38572 | 2011-05-27 06:53:02 -0400 | [diff] [blame] | 179 | void jfs_dirty_inode(struct inode *inode, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | { |
| 181 | static int noisy = 5; |
| 182 | |
| 183 | if (isReadOnly(inode)) { |
| 184 | if (!special_file(inode->i_mode) && noisy) { |
| 185 | /* kernel allows writes to devices on read-only |
| 186 | * partitions and may try to mark inode dirty |
| 187 | */ |
| 188 | jfs_err("jfs_dirty_inode called on read-only volume"); |
| 189 | jfs_err("Is remount racy?"); |
| 190 | noisy--; |
| 191 | } |
| 192 | return; |
| 193 | } |
| 194 | |
| 195 | set_cflag(COMMIT_Dirty, inode); |
| 196 | } |
| 197 | |
Dave Kleikamp | 115ff50 | 2006-07-26 14:52:13 -0500 | [diff] [blame] | 198 | int jfs_get_block(struct inode *ip, sector_t lblock, |
| 199 | struct buffer_head *bh_result, int create) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
| 201 | s64 lblock64 = lblock; |
| 202 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | xad_t xad; |
| 204 | s64 xaddr; |
| 205 | int xflag; |
Dave Kleikamp | 115ff50 | 2006-07-26 14:52:13 -0500 | [diff] [blame] | 206 | s32 xlen = bh_result->b_size >> ip->i_blkbits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
| 208 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | * Take appropriate lock on inode |
| 210 | */ |
Dave Kleikamp | 7fab479 | 2005-05-02 12:25:02 -0600 | [diff] [blame] | 211 | if (create) |
Dave Kleikamp | 82d5b9a | 2007-01-09 14:14:48 -0600 | [diff] [blame] | 212 | IWRITE_LOCK(ip, RDWRLOCK_NORMAL); |
Dave Kleikamp | 7fab479 | 2005-05-02 12:25:02 -0600 | [diff] [blame] | 213 | else |
Dave Kleikamp | 82d5b9a | 2007-01-09 14:14:48 -0600 | [diff] [blame] | 214 | IREAD_LOCK(ip, RDWRLOCK_NORMAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
| 216 | if (((lblock64 << ip->i_sb->s_blocksize_bits) < ip->i_size) && |
Dave Kleikamp | 115ff50 | 2006-07-26 14:52:13 -0500 | [diff] [blame] | 217 | (!xtLookup(ip, lblock64, xlen, &xflag, &xaddr, &xlen, 0)) && |
Dave Kleikamp | 6628465 | 2005-05-02 12:25:13 -0600 | [diff] [blame] | 218 | xaddr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | if (xflag & XAD_NOTRECORDED) { |
| 220 | if (!create) |
| 221 | /* |
| 222 | * Allocated but not recorded, read treats |
| 223 | * this as a hole |
| 224 | */ |
| 225 | goto unlock; |
| 226 | #ifdef _JFS_4K |
| 227 | XADoffset(&xad, lblock64); |
| 228 | XADlength(&xad, xlen); |
| 229 | XADaddress(&xad, xaddr); |
| 230 | #else /* _JFS_4K */ |
| 231 | /* |
| 232 | * As long as block size = 4K, this isn't a problem. |
| 233 | * We should mark the whole page not ABNR, but how |
| 234 | * will we know to mark the other blocks BH_New? |
| 235 | */ |
| 236 | BUG(); |
| 237 | #endif /* _JFS_4K */ |
| 238 | rc = extRecord(ip, &xad); |
| 239 | if (rc) |
| 240 | goto unlock; |
| 241 | set_buffer_new(bh_result); |
| 242 | } |
| 243 | |
| 244 | map_bh(bh_result, ip->i_sb, xaddr); |
| 245 | bh_result->b_size = xlen << ip->i_blkbits; |
| 246 | goto unlock; |
| 247 | } |
| 248 | if (!create) |
| 249 | goto unlock; |
| 250 | |
| 251 | /* |
| 252 | * Allocate a new block |
| 253 | */ |
| 254 | #ifdef _JFS_4K |
| 255 | if ((rc = extHint(ip, lblock64 << ip->i_sb->s_blocksize_bits, &xad))) |
| 256 | goto unlock; |
Richard Knutsson | 4d81715 | 2006-09-30 23:27:14 -0700 | [diff] [blame] | 257 | rc = extAlloc(ip, xlen, lblock64, &xad, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | if (rc) |
| 259 | goto unlock; |
| 260 | |
| 261 | set_buffer_new(bh_result); |
| 262 | map_bh(bh_result, ip->i_sb, addressXAD(&xad)); |
| 263 | bh_result->b_size = lengthXAD(&xad) << ip->i_blkbits; |
| 264 | |
| 265 | #else /* _JFS_4K */ |
| 266 | /* |
| 267 | * We need to do whatever it takes to keep all but the last buffers |
| 268 | * in 4K pages - see jfs_write.c |
| 269 | */ |
| 270 | BUG(); |
| 271 | #endif /* _JFS_4K */ |
| 272 | |
| 273 | unlock: |
| 274 | /* |
| 275 | * Release lock on inode |
| 276 | */ |
Dave Kleikamp | 7fab479 | 2005-05-02 12:25:02 -0600 | [diff] [blame] | 277 | if (create) |
| 278 | IWRITE_UNLOCK(ip); |
| 279 | else |
| 280 | IREAD_UNLOCK(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | return rc; |
| 282 | } |
| 283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | static int jfs_writepage(struct page *page, struct writeback_control *wbc) |
| 285 | { |
Nick Piggin | d5c5f84 | 2007-10-16 01:25:22 -0700 | [diff] [blame] | 286 | return block_write_full_page(page, jfs_get_block, wbc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | static int jfs_writepages(struct address_space *mapping, |
| 290 | struct writeback_control *wbc) |
| 291 | { |
| 292 | return mpage_writepages(mapping, wbc, jfs_get_block); |
| 293 | } |
| 294 | |
| 295 | static int jfs_readpage(struct file *file, struct page *page) |
| 296 | { |
| 297 | return mpage_readpage(page, jfs_get_block); |
| 298 | } |
| 299 | |
| 300 | static int jfs_readpages(struct file *file, struct address_space *mapping, |
| 301 | struct list_head *pages, unsigned nr_pages) |
| 302 | { |
| 303 | return mpage_readpages(mapping, pages, nr_pages, jfs_get_block); |
| 304 | } |
| 305 | |
Marco Stornelli | 86dd07d | 2012-12-15 11:54:25 +0100 | [diff] [blame] | 306 | static void jfs_write_failed(struct address_space *mapping, loff_t to) |
| 307 | { |
| 308 | struct inode *inode = mapping->host; |
| 309 | |
| 310 | if (to > inode->i_size) { |
Kirill A. Shutemov | 7caef26 | 2013-09-12 15:13:56 -0700 | [diff] [blame] | 311 | truncate_pagecache(inode, inode->i_size); |
Marco Stornelli | 86dd07d | 2012-12-15 11:54:25 +0100 | [diff] [blame] | 312 | jfs_truncate(inode); |
| 313 | } |
| 314 | } |
| 315 | |
Nick Piggin | d5c5f84 | 2007-10-16 01:25:22 -0700 | [diff] [blame] | 316 | static int jfs_write_begin(struct file *file, struct address_space *mapping, |
| 317 | loff_t pos, unsigned len, unsigned flags, |
| 318 | struct page **pagep, void **fsdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | { |
Christoph Hellwig | ea0f04e | 2010-06-04 11:29:54 +0200 | [diff] [blame] | 320 | int ret; |
| 321 | |
| 322 | ret = nobh_write_begin(mapping, pos, len, flags, pagep, fsdata, |
Nick Piggin | d5c5f84 | 2007-10-16 01:25:22 -0700 | [diff] [blame] | 323 | jfs_get_block); |
Marco Stornelli | 86dd07d | 2012-12-15 11:54:25 +0100 | [diff] [blame] | 324 | if (unlikely(ret)) |
| 325 | jfs_write_failed(mapping, pos + len); |
Christoph Hellwig | ea0f04e | 2010-06-04 11:29:54 +0200 | [diff] [blame] | 326 | |
| 327 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | static sector_t jfs_bmap(struct address_space *mapping, sector_t block) |
| 331 | { |
| 332 | return generic_block_bmap(mapping, block, jfs_get_block); |
| 333 | } |
| 334 | |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 335 | static ssize_t jfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | { |
| 337 | struct file *file = iocb->ki_filp; |
Marco Stornelli | 86dd07d | 2012-12-15 11:54:25 +0100 | [diff] [blame] | 338 | struct address_space *mapping = file->f_mapping; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | struct inode *inode = file->f_mapping->host; |
Al Viro | a6cbcd4 | 2014-03-04 22:38:00 -0500 | [diff] [blame] | 340 | size_t count = iov_iter_count(iter); |
Christoph Hellwig | eafdc7d | 2010-06-04 11:29:53 +0200 | [diff] [blame] | 341 | ssize_t ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 343 | ret = blockdev_direct_IO(iocb, inode, iter, jfs_get_block); |
Christoph Hellwig | eafdc7d | 2010-06-04 11:29:53 +0200 | [diff] [blame] | 344 | |
| 345 | /* |
| 346 | * In case of error extending write may have instantiated a few |
| 347 | * blocks outside i_size. Trim these off again. |
| 348 | */ |
Omar Sandoval | 6f67376 | 2015-03-16 04:33:52 -0700 | [diff] [blame] | 349 | if (unlikely(iov_iter_rw(iter) == WRITE && ret < 0)) { |
Christoph Hellwig | eafdc7d | 2010-06-04 11:29:53 +0200 | [diff] [blame] | 350 | loff_t isize = i_size_read(inode); |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 351 | loff_t end = iocb->ki_pos + count; |
Christoph Hellwig | eafdc7d | 2010-06-04 11:29:53 +0200 | [diff] [blame] | 352 | |
| 353 | if (end > isize) |
Marco Stornelli | 86dd07d | 2012-12-15 11:54:25 +0100 | [diff] [blame] | 354 | jfs_write_failed(mapping, end); |
Christoph Hellwig | eafdc7d | 2010-06-04 11:29:53 +0200 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | } |
| 359 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 360 | const struct address_space_operations jfs_aops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | .readpage = jfs_readpage, |
| 362 | .readpages = jfs_readpages, |
| 363 | .writepage = jfs_writepage, |
| 364 | .writepages = jfs_writepages, |
Nick Piggin | d5c5f84 | 2007-10-16 01:25:22 -0700 | [diff] [blame] | 365 | .write_begin = jfs_write_begin, |
Nick Piggin | 03158cd | 2007-10-16 01:25:25 -0700 | [diff] [blame] | 366 | .write_end = nobh_write_end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | .bmap = jfs_bmap, |
| 368 | .direct_IO = jfs_direct_IO, |
| 369 | }; |
| 370 | |
| 371 | /* |
| 372 | * Guts of jfs_truncate. Called with locks already held. Can be called |
| 373 | * with directory for truncating directory index table. |
| 374 | */ |
| 375 | void jfs_truncate_nolock(struct inode *ip, loff_t length) |
| 376 | { |
| 377 | loff_t newsize; |
| 378 | tid_t tid; |
| 379 | |
| 380 | ASSERT(length >= 0); |
| 381 | |
| 382 | if (test_cflag(COMMIT_Nolink, ip)) { |
| 383 | xtTruncate(0, ip, length, COMMIT_WMAP); |
| 384 | return; |
| 385 | } |
| 386 | |
| 387 | do { |
| 388 | tid = txBegin(ip->i_sb, 0); |
| 389 | |
| 390 | /* |
Ingo Molnar | 1de8744 | 2006-01-24 15:22:50 -0600 | [diff] [blame] | 391 | * The commit_mutex cannot be taken before txBegin. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | * txBegin may block and there is a chance the inode |
| 393 | * could be marked dirty and need to be committed |
| 394 | * before txBegin unblocks |
| 395 | */ |
Ingo Molnar | 1de8744 | 2006-01-24 15:22:50 -0600 | [diff] [blame] | 396 | mutex_lock(&JFS_IP(ip)->commit_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
| 398 | newsize = xtTruncate(tid, ip, length, |
| 399 | COMMIT_TRUNCATE | COMMIT_PWMAP); |
| 400 | if (newsize < 0) { |
| 401 | txEnd(tid); |
Ingo Molnar | 1de8744 | 2006-01-24 15:22:50 -0600 | [diff] [blame] | 402 | mutex_unlock(&JFS_IP(ip)->commit_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | break; |
| 404 | } |
| 405 | |
Deepa Dinamani | 078cd82 | 2016-09-14 07:48:04 -0700 | [diff] [blame] | 406 | ip->i_mtime = ip->i_ctime = current_time(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | mark_inode_dirty(ip); |
| 408 | |
| 409 | txCommit(tid, 1, &ip, 0); |
| 410 | txEnd(tid); |
Ingo Molnar | 1de8744 | 2006-01-24 15:22:50 -0600 | [diff] [blame] | 411 | mutex_unlock(&JFS_IP(ip)->commit_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | } while (newsize > length); /* Truncate isn't always atomic */ |
| 413 | } |
| 414 | |
| 415 | void jfs_truncate(struct inode *ip) |
| 416 | { |
| 417 | jfs_info("jfs_truncate: size = 0x%lx", (ulong) ip->i_size); |
| 418 | |
Nick Piggin | 03158cd | 2007-10-16 01:25:25 -0700 | [diff] [blame] | 419 | nobh_truncate_page(ip->i_mapping, ip->i_size, jfs_get_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | |
Dave Kleikamp | 82d5b9a | 2007-01-09 14:14:48 -0600 | [diff] [blame] | 421 | IWRITE_LOCK(ip, RDWRLOCK_NORMAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | jfs_truncate_nolock(ip, ip->i_size); |
| 423 | IWRITE_UNLOCK(ip); |
| 424 | } |