file.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/ext2/file.c
  3.  *
  4.  * Copyright (C) 1992, 1993, 1994, 1995
  5.  * Remy Card (card@masi.ibp.fr)
  6.  * Laboratoire MASI - Institut Blaise Pascal
  7.  * Universite Pierre et Marie Curie (Paris VI)
  8.  *
  9.  *  from
  10.  *
  11.  *  linux/fs/minix/file.c
  12.  *
  13.  *  Copyright (C) 1991, 1992  Linus Torvalds
  14.  *
  15.  *  ext2 fs regular file handling primitives
  16.  *
  17.  *  64-bit file support on 64-bit platforms by Jakub Jelinek
  18.  *  (jj@sunsite.ms.mff.cuni.cz)
  19.  */
  20. #include <linux/fs.h>
  21. #include <linux/ext2_fs.h>
  22. #include <linux/sched.h>
  23. /*
  24.  * Called when an inode is released. Note that this is different
  25.  * from ext2_open_file: open gets called at every open, but release
  26.  * gets called only when /all/ the files are closed.
  27.  */
  28. static int ext2_release_file (struct inode * inode, struct file * filp)
  29. {
  30. if (filp->f_mode & FMODE_WRITE)
  31. ext2_discard_prealloc (inode);
  32. return 0;
  33. }
  34. /*
  35.  * We have mostly NULL's here: the current defaults are ok for
  36.  * the ext2 filesystem.
  37.  */
  38. struct file_operations ext2_file_operations = {
  39. llseek: generic_file_llseek,
  40. read: generic_file_read,
  41. write: generic_file_write,
  42. ioctl: ext2_ioctl,
  43. mmap: generic_file_mmap,
  44. open: generic_file_open,
  45. release: ext2_release_file,
  46. fsync: ext2_sync_file,
  47. };
  48. struct inode_operations ext2_file_inode_operations = {
  49. truncate: ext2_truncate,
  50. };