From: Evgeniy Dushistov Date: Tue, 6 Jan 2009 22:42:38 +0000 (-0800) Subject: minix: fix add link's wrong position calculation X-Git-Tag: accepted/tizen/common/20141203.182822~17996 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d6b54841f4ddd836c886d1e6ac381cf309ee98a3;p=platform%2Fkernel%2Flinux-arm64.git minix: fix add link's wrong position calculation Fix the add link method. The oosition in the directory was calculated in wrong way - it had the incorrect shift direction. [akpm@linux-foundation.org: coding-style fixes] Signed-off-by: Evgeniy Dushistov Cc: Nick Piggin Cc: [2.6.lots] Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/minix/dir.c b/fs/minix/dir.c index f704338..d4946c4 100644 --- a/fs/minix/dir.c +++ b/fs/minix/dir.c @@ -280,7 +280,7 @@ int minix_add_link(struct dentry *dentry, struct inode *inode) 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)