Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d780846e authored by akam kumar bharathi's avatar akam kumar bharathi Committed by Greg Kroah-Hartman
Browse files

staging/lustre/llite: IOC_MDC_GETFILEINFO returns the wrong ino



req_capsule_server_get() through  __req_capsule_get in ll_dir_ioctl()
returns a pointer to a PTLRPC request or reply buffer, which is assigned
to struct mdt_body.

If the command is IOC_MDS_GETFILEINFO then the inode "st.st_ino" should
be assigned from one extracted from mdt_body through cl_fid_build_ino().

Signed-off-by: default avatarJohn Hammond <john.hammond@intel.com>
Signed-off-by: default avatarakam kumar bharathi <azurelustre@gmail.com>
Reviewed-on: http://review.whamcloud.com/17618
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-5954


Reviewed-by: default avatarAndreas Dilger <andreas.dilger@intel.com>
Signed-off-by: default avatarOleg Drokin <green@linuxhacker.ru>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent aae5d55a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1523,7 +1523,9 @@ static long ll_dir_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
			st.st_atime   = body->atime;
			st.st_mtime   = body->mtime;
			st.st_ctime   = body->ctime;
			st.st_ino     = inode->i_ino;
			st.st_ino     = cl_fid_build_ino(&body->fid1,
							 sbi->ll_flags &
							 LL_SBI_32BIT_API);

			lmdp = (struct lov_user_mds_data __user *)arg;
			if (copy_to_user(&lmdp->lmd_st, &st, sizeof(st))) {