file.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * linux/fs/sysv/file.c
  3. *
  4. * minix/file.c
  5. * Copyright (C) 1991, 1992 Linus Torvalds
  6. *
  7. * coh/file.c
  8. * Copyright (C) 1993 Pascal Haible, Bruno Haible
  9. *
  10. * sysv/file.c
  11. * Copyright (C) 1993 Bruno Haible
  12. *
  13. * SystemV/Coherent regular file handling primitives
  14. */
  15. #include "sysv.h"
  16. /*
  17. * We have mostly NULLs here: the current defaults are OK for
  18. * the coh filesystem.
  19. */
  20. const struct file_operations sysv_file_operations = {
  21. .llseek = generic_file_llseek,
  22. .read = do_sync_read,
  23. .aio_read = generic_file_aio_read,
  24. .write = do_sync_write,
  25. .aio_write = generic_file_aio_write,
  26. .mmap = generic_file_mmap,
  27. .fsync = generic_file_fsync,
  28. .splice_read = generic_file_splice_read,
  29. };
  30. static int sysv_setattr(struct dentry *dentry, struct iattr *attr)
  31. {
  32. struct inode *inode = dentry->d_inode;
  33. int error;
  34. error = inode_change_ok(inode, attr);
  35. if (error)
  36. return error;
  37. if ((attr->ia_valid & ATTR_SIZE) &&
  38. attr->ia_size != i_size_read(inode)) {
  39. error = vmtruncate(inode, attr->ia_size);
  40. if (error)
  41. return error;
  42. }
  43. setattr_copy(inode, attr);
  44. mark_inode_dirty(inode);
  45. return 0;
  46. }
  47. const struct inode_operations sysv_file_inode_operations = {
  48. .truncate = sysv_truncate,
  49. .setattr = sysv_setattr,
  50. .getattr = sysv_getattr,
  51. };