aops.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. /* -*- mode: c; c-basic-offset: 8; -*-
  2. * vim: noexpandtab sw=8 ts=8 sts=0:
  3. *
  4. * Copyright (C) 2002, 2004 Oracle. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public
  17. * License along with this program; if not, write to the
  18. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. * Boston, MA 021110-1307, USA.
  20. */
  21. #include <linux/fs.h>
  22. #include <linux/slab.h>
  23. #include <linux/highmem.h>
  24. #include <linux/pagemap.h>
  25. #include <asm/byteorder.h>
  26. #define MLOG_MASK_PREFIX ML_FILE_IO
  27. #include <cluster/masklog.h>
  28. #include "ocfs2.h"
  29. #include "alloc.h"
  30. #include "aops.h"
  31. #include "dlmglue.h"
  32. #include "extent_map.h"
  33. #include "file.h"
  34. #include "inode.h"
  35. #include "journal.h"
  36. #include "super.h"
  37. #include "symlink.h"
  38. #include "buffer_head_io.h"
  39. static int ocfs2_symlink_get_block(struct inode *inode, sector_t iblock,
  40. struct buffer_head *bh_result, int create)
  41. {
  42. int err = -EIO;
  43. int status;
  44. struct ocfs2_dinode *fe = NULL;
  45. struct buffer_head *bh = NULL;
  46. struct buffer_head *buffer_cache_bh = NULL;
  47. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  48. void *kaddr;
  49. mlog_entry("(0x%p, %llu, 0x%p, %d)\n", inode,
  50. (unsigned long long)iblock, bh_result, create);
  51. BUG_ON(ocfs2_inode_is_fast_symlink(inode));
  52. if ((iblock << inode->i_sb->s_blocksize_bits) > PATH_MAX + 1) {
  53. mlog(ML_ERROR, "block offset > PATH_MAX: %llu",
  54. (unsigned long long)iblock);
  55. goto bail;
  56. }
  57. status = ocfs2_read_block(OCFS2_SB(inode->i_sb),
  58. OCFS2_I(inode)->ip_blkno,
  59. &bh, OCFS2_BH_CACHED, inode);
  60. if (status < 0) {
  61. mlog_errno(status);
  62. goto bail;
  63. }
  64. fe = (struct ocfs2_dinode *) bh->b_data;
  65. if (!OCFS2_IS_VALID_DINODE(fe)) {
  66. mlog(ML_ERROR, "Invalid dinode #%llu: signature = %.*s\n",
  67. (unsigned long long)fe->i_blkno, 7, fe->i_signature);
  68. goto bail;
  69. }
  70. if ((u64)iblock >= ocfs2_clusters_to_blocks(inode->i_sb,
  71. le32_to_cpu(fe->i_clusters))) {
  72. mlog(ML_ERROR, "block offset is outside the allocated size: "
  73. "%llu\n", (unsigned long long)iblock);
  74. goto bail;
  75. }
  76. /* We don't use the page cache to create symlink data, so if
  77. * need be, copy it over from the buffer cache. */
  78. if (!buffer_uptodate(bh_result) && ocfs2_inode_is_new(inode)) {
  79. u64 blkno = le64_to_cpu(fe->id2.i_list.l_recs[0].e_blkno) +
  80. iblock;
  81. buffer_cache_bh = sb_getblk(osb->sb, blkno);
  82. if (!buffer_cache_bh) {
  83. mlog(ML_ERROR, "couldn't getblock for symlink!\n");
  84. goto bail;
  85. }
  86. /* we haven't locked out transactions, so a commit
  87. * could've happened. Since we've got a reference on
  88. * the bh, even if it commits while we're doing the
  89. * copy, the data is still good. */
  90. if (buffer_jbd(buffer_cache_bh)
  91. && ocfs2_inode_is_new(inode)) {
  92. kaddr = kmap_atomic(bh_result->b_page, KM_USER0);
  93. if (!kaddr) {
  94. mlog(ML_ERROR, "couldn't kmap!\n");
  95. goto bail;
  96. }
  97. memcpy(kaddr + (bh_result->b_size * iblock),
  98. buffer_cache_bh->b_data,
  99. bh_result->b_size);
  100. kunmap_atomic(kaddr, KM_USER0);
  101. set_buffer_uptodate(bh_result);
  102. }
  103. brelse(buffer_cache_bh);
  104. }
  105. map_bh(bh_result, inode->i_sb,
  106. le64_to_cpu(fe->id2.i_list.l_recs[0].e_blkno) + iblock);
  107. err = 0;
  108. bail:
  109. if (bh)
  110. brelse(bh);
  111. mlog_exit(err);
  112. return err;
  113. }
  114. static int ocfs2_get_block(struct inode *inode, sector_t iblock,
  115. struct buffer_head *bh_result, int create)
  116. {
  117. int err = 0;
  118. u64 p_blkno, past_eof;
  119. mlog_entry("(0x%p, %llu, 0x%p, %d)\n", inode,
  120. (unsigned long long)iblock, bh_result, create);
  121. if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE)
  122. mlog(ML_NOTICE, "get_block on system inode 0x%p (%lu)\n",
  123. inode, inode->i_ino);
  124. if (S_ISLNK(inode->i_mode)) {
  125. /* this always does I/O for some reason. */
  126. err = ocfs2_symlink_get_block(inode, iblock, bh_result, create);
  127. goto bail;
  128. }
  129. /* this can happen if another node truncs after our extend! */
  130. spin_lock(&OCFS2_I(inode)->ip_lock);
  131. if (iblock >= ocfs2_clusters_to_blocks(inode->i_sb,
  132. OCFS2_I(inode)->ip_clusters))
  133. err = -EIO;
  134. spin_unlock(&OCFS2_I(inode)->ip_lock);
  135. if (err)
  136. goto bail;
  137. err = ocfs2_extent_map_get_blocks(inode, iblock, 1, &p_blkno,
  138. NULL);
  139. if (err) {
  140. mlog(ML_ERROR, "Error %d from get_blocks(0x%p, %llu, 1, "
  141. "%llu, NULL)\n", err, inode, (unsigned long long)iblock,
  142. (unsigned long long)p_blkno);
  143. goto bail;
  144. }
  145. map_bh(bh_result, inode->i_sb, p_blkno);
  146. if (bh_result->b_blocknr == 0) {
  147. err = -EIO;
  148. mlog(ML_ERROR, "iblock = %llu p_blkno = %llu blkno=(%llu)\n",
  149. (unsigned long long)iblock,
  150. (unsigned long long)p_blkno,
  151. (unsigned long long)OCFS2_I(inode)->ip_blkno);
  152. }
  153. past_eof = ocfs2_blocks_for_bytes(inode->i_sb, i_size_read(inode));
  154. mlog(0, "Inode %lu, past_eof = %llu\n", inode->i_ino,
  155. (unsigned long long)past_eof);
  156. if (create && (iblock >= past_eof))
  157. set_buffer_new(bh_result);
  158. bail:
  159. if (err < 0)
  160. err = -EIO;
  161. mlog_exit(err);
  162. return err;
  163. }
  164. static int ocfs2_readpage(struct file *file, struct page *page)
  165. {
  166. struct inode *inode = page->mapping->host;
  167. loff_t start = (loff_t)page->index << PAGE_CACHE_SHIFT;
  168. int ret, unlock = 1;
  169. mlog_entry("(0x%p, %lu)\n", file, (page ? page->index : 0));
  170. ret = ocfs2_meta_lock_with_page(inode, NULL, NULL, 0, page);
  171. if (ret != 0) {
  172. if (ret == AOP_TRUNCATED_PAGE)
  173. unlock = 0;
  174. mlog_errno(ret);
  175. goto out;
  176. }
  177. down_read(&OCFS2_I(inode)->ip_alloc_sem);
  178. /*
  179. * i_size might have just been updated as we grabed the meta lock. We
  180. * might now be discovering a truncate that hit on another node.
  181. * block_read_full_page->get_block freaks out if it is asked to read
  182. * beyond the end of a file, so we check here. Callers
  183. * (generic_file_read, fault->nopage) are clever enough to check i_size
  184. * and notice that the page they just read isn't needed.
  185. *
  186. * XXX sys_readahead() seems to get that wrong?
  187. */
  188. if (start >= i_size_read(inode)) {
  189. char *addr = kmap(page);
  190. memset(addr, 0, PAGE_SIZE);
  191. flush_dcache_page(page);
  192. kunmap(page);
  193. SetPageUptodate(page);
  194. ret = 0;
  195. goto out_alloc;
  196. }
  197. ret = ocfs2_data_lock_with_page(inode, 0, page);
  198. if (ret != 0) {
  199. if (ret == AOP_TRUNCATED_PAGE)
  200. unlock = 0;
  201. mlog_errno(ret);
  202. goto out_alloc;
  203. }
  204. ret = block_read_full_page(page, ocfs2_get_block);
  205. unlock = 0;
  206. ocfs2_data_unlock(inode, 0);
  207. out_alloc:
  208. up_read(&OCFS2_I(inode)->ip_alloc_sem);
  209. ocfs2_meta_unlock(inode, 0);
  210. out:
  211. if (unlock)
  212. unlock_page(page);
  213. mlog_exit(ret);
  214. return ret;
  215. }
  216. /* Note: Because we don't support holes, our allocation has
  217. * already happened (allocation writes zeros to the file data)
  218. * so we don't have to worry about ordered writes in
  219. * ocfs2_writepage.
  220. *
  221. * ->writepage is called during the process of invalidating the page cache
  222. * during blocked lock processing. It can't block on any cluster locks
  223. * to during block mapping. It's relying on the fact that the block
  224. * mapping can't have disappeared under the dirty pages that it is
  225. * being asked to write back.
  226. */
  227. static int ocfs2_writepage(struct page *page, struct writeback_control *wbc)
  228. {
  229. int ret;
  230. mlog_entry("(0x%p)\n", page);
  231. ret = block_write_full_page(page, ocfs2_get_block, wbc);
  232. mlog_exit(ret);
  233. return ret;
  234. }
  235. /*
  236. * ocfs2_prepare_write() can be an outer-most ocfs2 call when it is called
  237. * from loopback. It must be able to perform its own locking around
  238. * ocfs2_get_block().
  239. */
  240. int ocfs2_prepare_write(struct file *file, struct page *page,
  241. unsigned from, unsigned to)
  242. {
  243. struct inode *inode = page->mapping->host;
  244. int ret;
  245. mlog_entry("(0x%p, 0x%p, %u, %u)\n", file, page, from, to);
  246. ret = ocfs2_meta_lock_with_page(inode, NULL, NULL, 0, page);
  247. if (ret != 0) {
  248. mlog_errno(ret);
  249. goto out;
  250. }
  251. down_read(&OCFS2_I(inode)->ip_alloc_sem);
  252. ret = block_prepare_write(page, from, to, ocfs2_get_block);
  253. up_read(&OCFS2_I(inode)->ip_alloc_sem);
  254. ocfs2_meta_unlock(inode, 0);
  255. out:
  256. mlog_exit(ret);
  257. return ret;
  258. }
  259. /* Taken from ext3. We don't necessarily need the full blown
  260. * functionality yet, but IMHO it's better to cut and paste the whole
  261. * thing so we can avoid introducing our own bugs (and easily pick up
  262. * their fixes when they happen) --Mark */
  263. static int walk_page_buffers( handle_t *handle,
  264. struct buffer_head *head,
  265. unsigned from,
  266. unsigned to,
  267. int *partial,
  268. int (*fn)( handle_t *handle,
  269. struct buffer_head *bh))
  270. {
  271. struct buffer_head *bh;
  272. unsigned block_start, block_end;
  273. unsigned blocksize = head->b_size;
  274. int err, ret = 0;
  275. struct buffer_head *next;
  276. for ( bh = head, block_start = 0;
  277. ret == 0 && (bh != head || !block_start);
  278. block_start = block_end, bh = next)
  279. {
  280. next = bh->b_this_page;
  281. block_end = block_start + blocksize;
  282. if (block_end <= from || block_start >= to) {
  283. if (partial && !buffer_uptodate(bh))
  284. *partial = 1;
  285. continue;
  286. }
  287. err = (*fn)(handle, bh);
  288. if (!ret)
  289. ret = err;
  290. }
  291. return ret;
  292. }
  293. struct ocfs2_journal_handle *ocfs2_start_walk_page_trans(struct inode *inode,
  294. struct page *page,
  295. unsigned from,
  296. unsigned to)
  297. {
  298. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  299. struct ocfs2_journal_handle *handle = NULL;
  300. int ret = 0;
  301. handle = ocfs2_start_trans(osb, NULL, OCFS2_INODE_UPDATE_CREDITS);
  302. if (!handle) {
  303. ret = -ENOMEM;
  304. mlog_errno(ret);
  305. goto out;
  306. }
  307. if (ocfs2_should_order_data(inode)) {
  308. ret = walk_page_buffers(handle->k_handle,
  309. page_buffers(page),
  310. from, to, NULL,
  311. ocfs2_journal_dirty_data);
  312. if (ret < 0)
  313. mlog_errno(ret);
  314. }
  315. out:
  316. if (ret) {
  317. if (handle)
  318. ocfs2_commit_trans(handle);
  319. handle = ERR_PTR(ret);
  320. }
  321. return handle;
  322. }
  323. static int ocfs2_commit_write(struct file *file, struct page *page,
  324. unsigned from, unsigned to)
  325. {
  326. int ret, extending = 0, locklevel = 0;
  327. loff_t new_i_size;
  328. struct buffer_head *di_bh = NULL;
  329. struct inode *inode = page->mapping->host;
  330. struct ocfs2_journal_handle *handle = NULL;
  331. mlog_entry("(0x%p, 0x%p, %u, %u)\n", file, page, from, to);
  332. /* NOTE: ocfs2_file_aio_write has ensured that it's safe for
  333. * us to sample inode->i_size here without the metadata lock:
  334. *
  335. * 1) We're currently holding the inode alloc lock, so no
  336. * nodes can change it underneath us.
  337. *
  338. * 2) We've had to take the metadata lock at least once
  339. * already to check for extending writes, hence insuring
  340. * that our current copy is also up to date.
  341. */
  342. new_i_size = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
  343. if (new_i_size > i_size_read(inode)) {
  344. extending = 1;
  345. locklevel = 1;
  346. }
  347. ret = ocfs2_meta_lock_with_page(inode, NULL, &di_bh, locklevel, page);
  348. if (ret != 0) {
  349. mlog_errno(ret);
  350. goto out;
  351. }
  352. ret = ocfs2_data_lock_with_page(inode, 1, page);
  353. if (ret != 0) {
  354. mlog_errno(ret);
  355. goto out_unlock_meta;
  356. }
  357. if (extending) {
  358. handle = ocfs2_start_walk_page_trans(inode, page, from, to);
  359. if (IS_ERR(handle)) {
  360. ret = PTR_ERR(handle);
  361. handle = NULL;
  362. goto out_unlock_data;
  363. }
  364. /* Mark our buffer early. We'd rather catch this error up here
  365. * as opposed to after a successful commit_write which would
  366. * require us to set back inode->i_size. */
  367. ret = ocfs2_journal_access(handle, inode, di_bh,
  368. OCFS2_JOURNAL_ACCESS_WRITE);
  369. if (ret < 0) {
  370. mlog_errno(ret);
  371. goto out_commit;
  372. }
  373. }
  374. /* might update i_size */
  375. ret = generic_commit_write(file, page, from, to);
  376. if (ret < 0) {
  377. mlog_errno(ret);
  378. goto out_commit;
  379. }
  380. if (extending) {
  381. loff_t size = (u64) i_size_read(inode);
  382. struct ocfs2_dinode *di =
  383. (struct ocfs2_dinode *)di_bh->b_data;
  384. /* ocfs2_mark_inode_dirty is too heavy to use here. */
  385. inode->i_blocks = ocfs2_align_bytes_to_sectors(size);
  386. inode->i_ctime = inode->i_mtime = CURRENT_TIME;
  387. di->i_size = cpu_to_le64(size);
  388. di->i_ctime = di->i_mtime =
  389. cpu_to_le64(inode->i_mtime.tv_sec);
  390. di->i_ctime_nsec = di->i_mtime_nsec =
  391. cpu_to_le32(inode->i_mtime.tv_nsec);
  392. ret = ocfs2_journal_dirty(handle, di_bh);
  393. if (ret < 0) {
  394. mlog_errno(ret);
  395. goto out_commit;
  396. }
  397. }
  398. BUG_ON(extending && (i_size_read(inode) != new_i_size));
  399. out_commit:
  400. if (handle)
  401. ocfs2_commit_trans(handle);
  402. out_unlock_data:
  403. ocfs2_data_unlock(inode, 1);
  404. out_unlock_meta:
  405. ocfs2_meta_unlock(inode, locklevel);
  406. out:
  407. if (di_bh)
  408. brelse(di_bh);
  409. mlog_exit(ret);
  410. return ret;
  411. }
  412. static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block)
  413. {
  414. sector_t status;
  415. u64 p_blkno = 0;
  416. int err = 0;
  417. struct inode *inode = mapping->host;
  418. mlog_entry("(block = %llu)\n", (unsigned long long)block);
  419. /* We don't need to lock journal system files, since they aren't
  420. * accessed concurrently from multiple nodes.
  421. */
  422. if (!INODE_JOURNAL(inode)) {
  423. err = ocfs2_meta_lock(inode, NULL, NULL, 0);
  424. if (err) {
  425. if (err != -ENOENT)
  426. mlog_errno(err);
  427. goto bail;
  428. }
  429. down_read(&OCFS2_I(inode)->ip_alloc_sem);
  430. }
  431. err = ocfs2_extent_map_get_blocks(inode, block, 1, &p_blkno,
  432. NULL);
  433. if (!INODE_JOURNAL(inode)) {
  434. up_read(&OCFS2_I(inode)->ip_alloc_sem);
  435. ocfs2_meta_unlock(inode, 0);
  436. }
  437. if (err) {
  438. mlog(ML_ERROR, "get_blocks() failed, block = %llu\n",
  439. (unsigned long long)block);
  440. mlog_errno(err);
  441. goto bail;
  442. }
  443. bail:
  444. status = err ? 0 : p_blkno;
  445. mlog_exit((int)status);
  446. return status;
  447. }
  448. /*
  449. * TODO: Make this into a generic get_blocks function.
  450. *
  451. * From do_direct_io in direct-io.c:
  452. * "So what we do is to permit the ->get_blocks function to populate
  453. * bh.b_size with the size of IO which is permitted at this offset and
  454. * this i_blkbits."
  455. *
  456. * This function is called directly from get_more_blocks in direct-io.c.
  457. *
  458. * called like this: dio->get_blocks(dio->inode, fs_startblk,
  459. * fs_count, map_bh, dio->rw == WRITE);
  460. */
  461. static int ocfs2_direct_IO_get_blocks(struct inode *inode, sector_t iblock,
  462. struct buffer_head *bh_result, int create)
  463. {
  464. int ret;
  465. u64 vbo_max; /* file offset, max_blocks from iblock */
  466. u64 p_blkno;
  467. int contig_blocks;
  468. unsigned char blocksize_bits;
  469. unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
  470. if (!inode || !bh_result) {
  471. mlog(ML_ERROR, "inode or bh_result is null\n");
  472. return -EIO;
  473. }
  474. blocksize_bits = inode->i_sb->s_blocksize_bits;
  475. /* This function won't even be called if the request isn't all
  476. * nicely aligned and of the right size, so there's no need
  477. * for us to check any of that. */
  478. vbo_max = ((u64)iblock + max_blocks) << blocksize_bits;
  479. spin_lock(&OCFS2_I(inode)->ip_lock);
  480. if ((iblock + max_blocks) >
  481. ocfs2_clusters_to_blocks(inode->i_sb,
  482. OCFS2_I(inode)->ip_clusters)) {
  483. spin_unlock(&OCFS2_I(inode)->ip_lock);
  484. ret = -EIO;
  485. goto bail;
  486. }
  487. spin_unlock(&OCFS2_I(inode)->ip_lock);
  488. /* This figures out the size of the next contiguous block, and
  489. * our logical offset */
  490. ret = ocfs2_extent_map_get_blocks(inode, iblock, 1, &p_blkno,
  491. &contig_blocks);
  492. if (ret) {
  493. mlog(ML_ERROR, "get_blocks() failed iblock=%llu\n",
  494. (unsigned long long)iblock);
  495. ret = -EIO;
  496. goto bail;
  497. }
  498. map_bh(bh_result, inode->i_sb, p_blkno);
  499. /* make sure we don't map more than max_blocks blocks here as
  500. that's all the kernel will handle at this point. */
  501. if (max_blocks < contig_blocks)
  502. contig_blocks = max_blocks;
  503. bh_result->b_size = contig_blocks << blocksize_bits;
  504. bail:
  505. return ret;
  506. }
  507. /*
  508. * ocfs2_dio_end_io is called by the dio core when a dio is finished. We're
  509. * particularly interested in the aio/dio case. Like the core uses
  510. * i_alloc_sem, we use the rw_lock DLM lock to protect io on one node from
  511. * truncation on another.
  512. */
  513. static void ocfs2_dio_end_io(struct kiocb *iocb,
  514. loff_t offset,
  515. ssize_t bytes,
  516. void *private)
  517. {
  518. struct inode *inode = iocb->ki_filp->f_dentry->d_inode;
  519. /* this io's submitter should not have unlocked this before we could */
  520. BUG_ON(!ocfs2_iocb_is_rw_locked(iocb));
  521. ocfs2_iocb_clear_rw_locked(iocb);
  522. up_read(&inode->i_alloc_sem);
  523. ocfs2_rw_unlock(inode, 0);
  524. }
  525. static ssize_t ocfs2_direct_IO(int rw,
  526. struct kiocb *iocb,
  527. const struct iovec *iov,
  528. loff_t offset,
  529. unsigned long nr_segs)
  530. {
  531. struct file *file = iocb->ki_filp;
  532. struct inode *inode = file->f_dentry->d_inode->i_mapping->host;
  533. int ret;
  534. mlog_entry_void();
  535. ret = blockdev_direct_IO_no_locking(rw, iocb, inode,
  536. inode->i_sb->s_bdev, iov, offset,
  537. nr_segs,
  538. ocfs2_direct_IO_get_blocks,
  539. ocfs2_dio_end_io);
  540. mlog_exit(ret);
  541. return ret;
  542. }
  543. struct address_space_operations ocfs2_aops = {
  544. .readpage = ocfs2_readpage,
  545. .writepage = ocfs2_writepage,
  546. .prepare_write = ocfs2_prepare_write,
  547. .commit_write = ocfs2_commit_write,
  548. .bmap = ocfs2_bmap,
  549. .sync_page = block_sync_page,
  550. .direct_IO = ocfs2_direct_IO
  551. };