The patch titled udf: fix link counts has been removed from the -mm tree. Its filename was udf-fix-link-counts.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: udf: fix link counts From: Jan Kara <jack@xxxxxxx> We have to decrease link-count of the parent directory when removing a subdirectory. Signed-off-by: Jan Kara <jack@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/udf/namei.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN fs/udf/namei.c~udf-fix-link-counts fs/udf/namei.c --- a/fs/udf/namei.c~udf-fix-link-counts +++ a/fs/udf/namei.c @@ -878,7 +878,7 @@ static int udf_rmdir(struct inode * dir, inode->i_nlink); clear_nlink(inode); inode->i_size = 0; - inode_dec_link_count(inode); + inode_dec_link_count(dir); inode->i_ctime = dir->i_ctime = dir->i_mtime = current_fs_time(dir->i_sb); mark_inode_dirty(dir); _ Patches currently in -mm which might be from jack@xxxxxxx are origin.patch ext4-copy-i_flags-to-inode-flags-on-write.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html