]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging/lustre/llite: IOC_MDC_GETFILEINFO returns the wrong ino
authorakam kumar bharathi <azurelustre@gmail.com>
Mon, 20 Jun 2016 20:55:47 +0000 (16:55 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 Jun 2016 21:28:39 +0000 (14:28 -0700)
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: John Hammond <john.hammond@intel.com>
Signed-off-by: akam 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: Andreas Dilger <andreas.dilger@intel.com>
Signed-off-by: Oleg Drokin <green@linuxhacker.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/llite/dir.c

index 92b01fdc828da770c4a2df785608fbef76f951af..5b381779c82725c52c5308b81fc0e227a9124756 100644 (file)
@@ -1523,7 +1523,9 @@ skip_lmm:
                        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))) {