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