CHANGES 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. Mon, 15 Dec 1997 Krzysztof G. Baranowski <kgb@manjak.knm.org.pl>
  2. * namei.c: struct sysv_dir_inode_operations updated to use dentries.
  3. Fri, 23 Jan 1998 Krzysztof G. Baranowski <kgb@manjak.knm.org.pl>
  4. * inode.c: corrected 1 track offset setting (in sb->sv_block_base).
  5. Originally it was overridden (by setting to zero)
  6. in detected_[xenix,sysv4,sysv2,coherent]. Thanks
  7. to Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl>
  8. for identifying the problem.
  9. Tue, 27 Jan 1998 Krzysztof G. Baranowski <kgb@manjak.knm.org.pl>
  10. * inode.c: added 2048-byte block support to SystemV FS.
  11. Merged detected_bs[512,1024,2048]() into one function:
  12. void detected_bs (u_char type, struct super_block *sb).
  13. Thanks to Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl>
  14. for the patch.
  15. Wed, 4 Feb 1998 Krzysztof G. Baranowski <kgb@manjak.knm.org.pl>
  16. * namei.c: removed static subdir(); is_subdir() from dcache.c
  17. is used instead. Cosmetic changes.
  18. Thu, 3 Dec 1998 Al Viro (viro@parcelfarce.linux.theplanet.co.uk)
  19. * namei.c (sysv_rmdir):
  20. Bugectomy: old check for victim being busy
  21. (inode->i_count) wasn't replaced (with checking
  22. dentry->d_count) and escaped Linus in the last round
  23. of changes. Shot and buried.
  24. Wed, 9 Dec 1998 AV
  25. * namei.c (do_sysv_rename):
  26. Fixed incorrect check for other owners + race.
  27. Removed checks that went to VFS.
  28. * namei.c (sysv_unlink):
  29. Removed checks that went to VFS.
  30. Thu, 10 Dec 1998 AV
  31. * namei.c (do_mknod):
  32. Removed dead code - mknod is never asked to
  33. create a symlink or directory. Incidentially,
  34. it wouldn't do it right if it would be called.
  35. Sat, 26 Dec 1998 KGB
  36. * inode.c (detect_sysv4):
  37. Added detection of expanded s_type field (0x10,
  38. 0x20 and 0x30). Forced read-only access in this case.
  39. Sun, 21 Mar 1999 AV
  40. * namei.c (sysv_link):
  41. Fixed i_count usage that resulted in dcache corruption.
  42. * inode.c:
  43. Filled ->delete_inode() method with sysv_delete_inode().
  44. sysv_put_inode() is gone, as it tried to do ->delete_
  45. _inode()'s job.
  46. * ialloc.c: (sysv_free_inode):
  47. Fixed race.
  48. Sun, 30 Apr 1999 AV
  49. * namei.c (sysv_mknod):
  50. Removed dead code (S_IFREG case is now passed to
  51. ->create() by VFS).