The patch titled minix: fix add link's wrong position calculation has been removed from the -mm tree. Its filename was minix-fix-add-links-wrong-position-calculation.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: minix: fix add link's wrong position calculation From: Evgeniy Dushistov <dushistov@xxxxxxx> Fix the add link method. The oosition in the directory was calculated in wrong way - it had the incorrect shift direction. [akpm@xxxxxxxxxxxxxxxxxxxx: coding-style fixes] Signed-off-by: Evgeniy Dushistov <dushistov@xxxxxxx> Cc: Nick Piggin <nickpiggin@xxxxxxxxxxxx> Cc: <stable@xxxxxxxxxx> [2.6.lots] Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/minix/dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/minix/dir.c~minix-fix-add-links-wrong-position-calculation fs/minix/dir.c --- a/fs/minix/dir.c~minix-fix-add-links-wrong-position-calculation +++ a/fs/minix/dir.c @@ -280,7 +280,7 @@ int minix_add_link(struct dentry *dentry return -EINVAL; got_it: - pos = (page->index >> PAGE_CACHE_SHIFT) + p - (char*)page_address(page); + pos = page_offset(page) + p - (char *)page_address(page); err = __minix_write_begin(NULL, page->mapping, pos, sbi->s_dirsize, AOP_FLAG_UNINTERRUPTIBLE, &page, NULL); if (err) _ Patches currently in -mm which might be from dushistov@xxxxxxx are origin.patch ufs-sector_t-cannot-be-negative.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