From e50f67cd2a1b22d57f11f3ec867f29e91331a9d5 Mon Sep 17 00:00:00 2001
From: alex <alex>
Date: Mon, 24 May 2004 08:57:47 +0000
Subject: [PATCH] - ll_update_inode() puts number of MDS holding inode to
 inode->i_dev. this   fix the problem some apps confuses on: they see the same
 inode number for   different objects. thanks to Andreas for the idea.

---
 lustre/llite/llite_lib.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lustre/llite/llite_lib.c b/lustre/llite/llite_lib.c
index dc5d2432f1..432e1e581c 100644
--- a/lustre/llite/llite_lib.c
+++ b/lustre/llite/llite_lib.c
@@ -1171,6 +1171,7 @@ void ll_update_inode(struct inode *inode, struct lustre_md *md)
                 set_bit(LLI_F_HAVE_MDS_SIZE_LOCK, &lli->lli_flags);
 
         lli->lli_mds = body->mds;
+        inode->i_dev = (kdev_t) body->mds;
         LASSERT(body->mds < 1000);
 }
 
-- 
GitLab