aops.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  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 #%"MLFu64": signature = %.*s\n",
  67. 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. "%"MLFu64", NULL)\n", err, inode,
  142. (unsigned long long)iblock, 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 = %"MLFu64" "
  149. "blkno=(%"MLFu64")\n", (unsigned long long)iblock,
  150. p_blkno, OCFS2_I(inode)->ip_blkno);
  151. }
  152. past_eof = ocfs2_blocks_for_bytes(inode->i_sb, i_size_read(inode));
  153. mlog(0, "Inode %lu, past_eof = %"MLFu64"\n", inode->i_ino, past_eof);
  154. if (create && (iblock >= past_eof))
  155. set_buffer_new(bh_result);
  156. bail:
  157. if (err < 0)
  158. err = -EIO;
  159. mlog_exit(err);
  160. return err;
  161. }
  162. static int ocfs2_readpage(struct file *file, struct page *page)
  163. {
  164. struct inode *inode = page->mapping->host;
  165. loff_t start = (loff_t)page->index << PAGE_CACHE_SHIFT;
  166. int ret, unlock = 1;
  167. mlog_entry("(0x%p, %lu)\n", file, (page ? page->index : 0));
  168. ret = ocfs2_meta_lock_with_page(inode, NULL, NULL, 0, page);
  169. if (ret != 0) {
  170. if (ret == AOP_TRUNCATED_PAGE)
  171. unlock = 0;
  172. mlog_errno(ret);
  173. goto out;
  174. }
  175. down_read(&OCFS2_I(inode)->ip_alloc_sem);
  176. /*
  177. * i_size might have just been updated as we grabed the meta lock. We
  178. * might now be discovering a truncate that hit on another node.
  179. * block_read_full_page->get_block freaks out if it is asked to read
  180. * beyond the end of a file, so we check here. Callers
  181. * (generic_file_read, fault->nopage) are clever enough to check i_size
  182. * and notice that the page they just read isn't needed.
  183. *
  184. * XXX sys_readahead() seems to get that wrong?
  185. */
  186. if (start >= i_size_read(inode)) {
  187. char *addr = kmap(page);
  188. memset(addr, 0, PAGE_SIZE);
  189. flush_dcache_page(page);
  190. kunmap(page);
  191. SetPageUptodate(page);
  192. ret = 0;
  193. goto out_alloc;
  194. }
  195. ret = ocfs2_data_lock_with_page(inode, 0, page);
  196. if (ret != 0) {
  197. if (ret == AOP_TRUNCATED_PAGE)
  198. unlock = 0;
  199. mlog_errno(ret);
  200. goto out_alloc;
  201. }
  202. ret = block_read_full_page(page, ocfs2_get_block);
  203. unlock = 0;
  204. ocfs2_data_unlock(inode, 0);
  205. out_alloc:
  206. up_read(&OCFS2_I(inode)->ip_alloc_sem);
  207. ocfs2_meta_unlock(inode, 0);
  208. out:
  209. if (unlock)
  210. unlock_page(page);
  211. mlog_exit(ret);
  212. return ret;
  213. }
  214. /* Note: Because we don't support holes, our allocation has
  215. * already happened (allocation writes zeros to the file data)
  216. * so we don't have to worry about ordered writes in
  217. * ocfs2_writepage.
  218. *
  219. * ->writepage is called during the process of invalidating the page cache
  220. * during blocked lock processing. It can't block on any cluster locks
  221. * to during block mapping. It's relying on the fact that the block
  222. * mapping can't have disappeared under the dirty pages that it is
  223. * being asked to write back.
  224. */
  225. static int ocfs2_writepage(struct page *page, struct writeback_control *wbc)
  226. {
  227. int ret;
  228. mlog_entry("(0x%p)\n", page);
  229. ret = block_write_full_page(page, ocfs2_get_block, wbc);
  230. mlog_exit(ret);
  231. return ret;
  232. }
  233. /*
  234. * ocfs2_prepare_write() can be an outer-most ocfs2 call when it is called
  235. * from loopback. It must be able to perform its own locking around
  236. * ocfs2_get_block().
  237. */
  238. int ocfs2_prepare_write(struct file *file, struct page *page,
  239. unsigned from, unsigned to)
  240. {
  241. struct inode *inode = page->mapping->host;
  242. int ret;
  243. mlog_entry("(0x%p, 0x%p, %u, %u)\n", file, page, from, to);
  244. ret = ocfs2_meta_lock_with_page(inode, NULL, NULL, 0, page);
  245. if (ret != 0) {
  246. mlog_errno(ret);
  247. goto out;
  248. }
  249. down_read(&OCFS2_I(inode)->ip_alloc_sem);
  250. ret = block_prepare_write(page, from, to, ocfs2_get_block);
  251. up_read(&OCFS2_I(inode)->ip_alloc_sem);
  252. ocfs2_meta_unlock(inode, 0);
  253. out:
  254. mlog_exit(ret);
  255. return ret;
  256. }
  257. /* Taken from ext3. We don't necessarily need the full blown
  258. * functionality yet, but IMHO it's better to cut and paste the whole
  259. * thing so we can avoid introducing our own bugs (and easily pick up
  260. * their fixes when they happen) --Mark */
  261. static int walk_page_buffers( handle_t *handle,
  262. struct buffer_head *head,
  263. unsigned from,
  264. unsigned to,
  265. int *partial,
  266. int (*fn)( handle_t *handle,
  267. struct buffer_head *bh))
  268. {
  269. struct buffer_head *bh;
  270. unsigned block_start, block_end;
  271. unsigned blocksize = head->b_size;
  272. int err, ret = 0;
  273. struct buffer_head *next;
  274. for ( bh = head, block_start = 0;
  275. ret == 0 && (bh != head || !block_start);
  276. block_start = block_end, bh = next)
  277. {
  278. next = bh->b_this_page;
  279. block_end = block_start + blocksize;
  280. if (block_end <= from || block_start >= to) {
  281. if (partial && !buffer_uptodate(bh))
  282. *partial = 1;
  283. continue;
  284. }
  285. err = (*fn)(handle, bh);
  286. if (!ret)
  287. ret = err;
  288. }
  289. return ret;
  290. }
  291. struct ocfs2_journal_handle *ocfs2_start_walk_page_trans(struct inode *inode,
  292. struct page *page,
  293. unsigned from,
  294. unsigned to)
  295. {
  296. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  297. struct ocfs2_journal_handle *handle = NULL;
  298. int ret = 0;
  299. handle = ocfs2_start_trans(osb, NULL, OCFS2_INODE_UPDATE_CREDITS);
  300. if (!handle) {
  301. ret = -ENOMEM;
  302. mlog_errno(ret);
  303. goto out;
  304. }
  305. if (ocfs2_should_order_data(inode)) {
  306. ret = walk_page_buffers(handle->k_handle,
  307. page_buffers(page),
  308. from, to, NULL,
  309. ocfs2_journal_dirty_data);
  310. if (ret < 0)
  311. mlog_errno(ret);
  312. }
  313. out:
  314. if (ret) {
  315. if (handle)
  316. ocfs2_commit_trans(handle);
  317. handle = ERR_PTR(ret);
  318. }
  319. return handle;
  320. }
  321. static int ocfs2_commit_write(struct file *file, struct page *page,
  322. unsigned from, unsigned to)
  323. {
  324. int ret, extending = 0, locklevel = 0;
  325. loff_t new_i_size;
  326. struct buffer_head *di_bh = NULL;
  327. struct inode *inode = page->mapping->host;
  328. struct ocfs2_journal_handle *handle = NULL;
  329. mlog_entry("(0x%p, 0x%p, %u, %u)\n", file, page, from, to);
  330. /* NOTE: ocfs2_file_aio_write has ensured that it's safe for
  331. * us to sample inode->i_size here without the metadata lock:
  332. *
  333. * 1) We're currently holding the inode alloc lock, so no
  334. * nodes can change it underneath us.
  335. *
  336. * 2) We've had to take the metadata lock at least once
  337. * already to check for extending writes, hence insuring
  338. * that our current copy is also up to date.
  339. */
  340. new_i_size = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
  341. if (new_i_size > i_size_read(inode)) {
  342. extending = 1;
  343. locklevel = 1;
  344. }
  345. ret = ocfs2_meta_lock_with_page(inode, NULL, &di_bh, locklevel, page);
  346. if (ret != 0) {
  347. mlog_errno(ret);
  348. goto out;
  349. }
  350. ret = ocfs2_data_lock_with_page(inode, 1, page);
  351. if (ret != 0) {
  352. mlog_errno(ret);
  353. goto out_unlock_meta;
  354. }
  355. if (extending) {
  356. handle = ocfs2_start_walk_page_trans(inode, page, from, to);
  357. if (IS_ERR(handle)) {
  358. ret = PTR_ERR(handle);
  359. handle = NULL;
  360. goto out_unlock_data;
  361. }
  362. /* Mark our buffer early. We'd rather catch this error up here
  363. * as opposed to after a successful commit_write which would
  364. * require us to set back inode->i_size. */
  365. ret = ocfs2_journal_access(handle, inode, di_bh,
  366. OCFS2_JOURNAL_ACCESS_WRITE);
  367. if (ret < 0) {
  368. mlog_errno(ret);
  369. goto out_commit;
  370. }
  371. }
  372. /* might update i_size */
  373. ret = generic_commit_write(file, page, from, to);
  374. if (ret < 0) {
  375. mlog_errno(ret);
  376. goto out_commit;
  377. }
  378. if (extending) {
  379. loff_t size = (u64) i_size_read(inode);
  380. struct ocfs2_dinode *di =
  381. (struct ocfs2_dinode *)di_bh->b_data;
  382. /* ocfs2_mark_inode_dirty is too heavy to use here. */
  383. inode->i_blocks = ocfs2_align_bytes_to_sectors(size);
  384. inode->i_ctime = inode->i_mtime = CURRENT_TIME;
  385. di->i_size = cpu_to_le64(size);
  386. di->i_ctime = di->i_mtime =
  387. cpu_to_le64(inode->i_mtime.tv_sec);
  388. di->i_ctime_nsec = di->i_mtime_nsec =
  389. cpu_to_le32(inode->i_mtime.tv_nsec);
  390. ret = ocfs2_journal_dirty(handle, di_bh);
  391. if (ret < 0) {
  392. mlog_errno(ret);
  393. goto out_commit;
  394. }
  395. }
  396. BUG_ON(extending && (i_size_read(inode) != new_i_size));
  397. out_commit:
  398. if (handle)
  399. ocfs2_commit_trans(handle);
  400. out_unlock_data:
  401. ocfs2_data_unlock(inode, 1);
  402. out_unlock_meta:
  403. ocfs2_meta_unlock(inode, locklevel);
  404. out:
  405. if (di_bh)
  406. brelse(di_bh);
  407. mlog_exit(ret);
  408. return ret;
  409. }
  410. static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block)
  411. {
  412. sector_t status;
  413. u64 p_blkno = 0;
  414. int err = 0;
  415. struct inode *inode = mapping->host;
  416. mlog_entry("(block = %llu)\n", (unsigned long long)block);
  417. /* We don't need to lock journal system files, since they aren't
  418. * accessed concurrently from multiple nodes.
  419. */
  420. if (!INODE_JOURNAL(inode)) {
  421. err = ocfs2_meta_lock(inode, NULL, NULL, 0);
  422. if (err) {
  423. if (err != -ENOENT)
  424. mlog_errno(err);
  425. goto bail;
  426. }
  427. down_read(&OCFS2_I(inode)->ip_alloc_sem);
  428. }
  429. err = ocfs2_extent_map_get_blocks(inode, block, 1, &p_blkno,
  430. NULL);
  431. if (!INODE_JOURNAL(inode)) {
  432. up_read(&OCFS2_I(inode)->ip_alloc_sem);
  433. ocfs2_meta_unlock(inode, 0);
  434. }
  435. if (err) {
  436. mlog(ML_ERROR, "get_blocks() failed, block = %llu\n",
  437. (unsigned long long)block);
  438. mlog_errno(err);
  439. goto bail;
  440. }
  441. bail:
  442. status = err ? 0 : p_blkno;
  443. mlog_exit((int)status);
  444. return status;
  445. }
  446. /*
  447. * TODO: Make this into a generic get_blocks function.
  448. *
  449. * From do_direct_io in direct-io.c:
  450. * "So what we do is to permit the ->get_blocks function to populate
  451. * bh.b_size with the size of IO which is permitted at this offset and
  452. * this i_blkbits."
  453. *
  454. * This function is called directly from get_more_blocks in direct-io.c.
  455. *
  456. * called like this: dio->get_blocks(dio->inode, fs_startblk,
  457. * fs_count, map_bh, dio->rw == WRITE);
  458. */
  459. static int ocfs2_direct_IO_get_blocks(struct inode *inode, sector_t iblock,
  460. unsigned long max_blocks,
  461. struct buffer_head *bh_result, int create)
  462. {
  463. int ret;
  464. u64 vbo_max; /* file offset, max_blocks from iblock */
  465. u64 p_blkno;
  466. int contig_blocks;
  467. unsigned char blocksize_bits;
  468. if (!inode || !bh_result) {
  469. mlog(ML_ERROR, "inode or bh_result is null\n");
  470. return -EIO;
  471. }
  472. blocksize_bits = inode->i_sb->s_blocksize_bits;
  473. /* This function won't even be called if the request isn't all
  474. * nicely aligned and of the right size, so there's no need
  475. * for us to check any of that. */
  476. vbo_max = ((u64)iblock + max_blocks) << blocksize_bits;
  477. spin_lock(&OCFS2_I(inode)->ip_lock);
  478. if ((iblock + max_blocks) >
  479. ocfs2_clusters_to_blocks(inode->i_sb,
  480. OCFS2_I(inode)->ip_clusters)) {
  481. spin_unlock(&OCFS2_I(inode)->ip_lock);
  482. ret = -EIO;
  483. goto bail;
  484. }
  485. spin_unlock(&OCFS2_I(inode)->ip_lock);
  486. /* This figures out the size of the next contiguous block, and
  487. * our logical offset */
  488. ret = ocfs2_extent_map_get_blocks(inode, iblock, 1, &p_blkno,
  489. &contig_blocks);
  490. if (ret) {
  491. mlog(ML_ERROR, "get_blocks() failed iblock=%llu\n",
  492. (unsigned long long)iblock);
  493. ret = -EIO;
  494. goto bail;
  495. }
  496. map_bh(bh_result, inode->i_sb, p_blkno);
  497. /* make sure we don't map more than max_blocks blocks here as
  498. that's all the kernel will handle at this point. */
  499. if (max_blocks < contig_blocks)
  500. contig_blocks = max_blocks;
  501. bh_result->b_size = contig_blocks << blocksize_bits;
  502. bail:
  503. return ret;
  504. }
  505. /*
  506. * ocfs2_dio_end_io is called by the dio core when a dio is finished. We're
  507. * particularly interested in the aio/dio case. Like the core uses
  508. * i_alloc_sem, we use the rw_lock DLM lock to protect io on one node from
  509. * truncation on another.
  510. */
  511. static void ocfs2_dio_end_io(struct kiocb *iocb,
  512. loff_t offset,
  513. ssize_t bytes,
  514. void *private)
  515. {
  516. struct inode *inode = iocb->ki_filp->f_dentry->d_inode;
  517. /* this io's submitter should not have unlocked this before we could */
  518. BUG_ON(!ocfs2_iocb_is_rw_locked(iocb));
  519. ocfs2_iocb_clear_rw_locked(iocb);
  520. up_read(&inode->i_alloc_sem);
  521. ocfs2_rw_unlock(inode, 0);
  522. }
  523. static ssize_t ocfs2_direct_IO(int rw,
  524. struct kiocb *iocb,
  525. const struct iovec *iov,
  526. loff_t offset,
  527. unsigned long nr_segs)
  528. {
  529. struct file *file = iocb->ki_filp;
  530. struct inode *inode = file->f_dentry->d_inode->i_mapping->host;
  531. int ret;
  532. mlog_entry_void();
  533. ret = blockdev_direct_IO_no_locking(rw, iocb, inode,
  534. inode->i_sb->s_bdev, iov, offset,
  535. nr_segs,
  536. ocfs2_direct_IO_get_blocks,
  537. ocfs2_dio_end_io);
  538. mlog_exit(ret);
  539. return ret;
  540. }
  541. struct address_space_operations ocfs2_aops = {
  542. .readpage = ocfs2_readpage,
  543. .writepage = ocfs2_writepage,
  544. .prepare_write = ocfs2_prepare_write,
  545. .commit_write = ocfs2_commit_write,
  546. .bmap = ocfs2_bmap,
  547. .sync_page = block_sync_page,
  548. .direct_IO = ocfs2_direct_IO
  549. };