ufs_inode_getblock(): pass index instead of 'fragment'
authorAl Viro <viro@zeniv.linux.org.uk>
Fri, 19 Jun 2015 05:06:21 +0000 (01:06 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Mon, 6 Jul 2015 21:39:58 +0000 (17:39 -0400)
commit721435a7679e13f810133dbea769f87ad7bae3a1
tree54dcf11089989e1536cb2bcc612ffccba44c20d7
parent177848a018cb2cb196feac2990814ac8d7bb3c8e
ufs_inode_getblock(): pass index instead of 'fragment'

The value passed to ufs_inode_getblock() as the 3rd argument
had lower bits ignored; the upper bits were shifted down
and used and they actually make sense - those are _lower_ bits
of index in indirect block (i.e. they form the index within
a fragment within an indirect block).

Pass those as argument.  Upper bits of index (i.e. the number
of fragment within indirect block) will join them shortly.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/ufs/inode.c