vfs_addr.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * linux/fs/9p/vfs_addr.c
  3. *
  4. * This file contians vfs address (mmap) ops for 9P2000.
  5. *
  6. * Copyright (C) 2005 by Eric Van Hensbergen <ericvh@gmail.com>
  7. * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to:
  20. * Free Software Foundation
  21. * 51 Franklin Street, Fifth Floor
  22. * Boston, MA 02111-1301 USA
  23. *
  24. */
  25. #include <linux/module.h>
  26. #include <linux/errno.h>
  27. #include <linux/fs.h>
  28. #include <linux/file.h>
  29. #include <linux/stat.h>
  30. #include <linux/string.h>
  31. #include <linux/inet.h>
  32. #include <linux/pagemap.h>
  33. #include <linux/idr.h>
  34. #include <linux/sched.h>
  35. #include <net/9p/9p.h>
  36. #include <net/9p/client.h>
  37. #include "v9fs.h"
  38. #include "v9fs_vfs.h"
  39. /**
  40. * v9fs_vfs_readpage - read an entire page in from 9P
  41. *
  42. * @filp: file being read
  43. * @page: structure to page
  44. *
  45. */
  46. static int v9fs_vfs_readpage(struct file *filp, struct page *page)
  47. {
  48. int retval;
  49. loff_t offset;
  50. char *buffer;
  51. P9_DPRINTK(P9_DEBUG_VFS, "\n");
  52. buffer = kmap(page);
  53. offset = page_offset(page);
  54. retval = v9fs_file_readn(filp, buffer, NULL, PAGE_CACHE_SIZE, offset);
  55. if (retval < 0)
  56. goto done;
  57. memset(buffer + retval, 0, PAGE_CACHE_SIZE - retval);
  58. flush_dcache_page(page);
  59. SetPageUptodate(page);
  60. retval = 0;
  61. done:
  62. kunmap(page);
  63. unlock_page(page);
  64. return retval;
  65. }
  66. const struct address_space_operations v9fs_addr_operations = {
  67. .readpage = v9fs_vfs_readpage,
  68. };