[lustre-devel] [PATCH 5/9] lustre: llite: clear LLIF_FILE_RESTORING when done
NeilBrown
neilb at suse.com
Thu Nov 22 23:15:28 PST 2018
From: Bruno Faccini <bruno.faccini at intel.com>
Clear LLIF_FILE_RESTORING if restore done to ensure to start again
to glimpse new attrs.
Signed-off-by: Bruno Faccini <bruno.faccini at intel.com>
WC-bug-id: https://jira.whamcloud.com/browse/LU-6560
Reviewed-on: http://review.whamcloud.com/14609
Reviewed-by: John L. Hammond <john.hammond at intel.com>
Reviewed-by: Jinshan Xiong <jinshan.xiong at intel.com>
Reviewed-by: Oleg Drokin <oleg.drokin at intel.com>
Signed-off-by: NeilBrown <neilb at suse.com>
---
drivers/staging/lustre/lustre/llite/llite_lib.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/staging/lustre/lustre/llite/llite_lib.c b/drivers/staging/lustre/lustre/llite/llite_lib.c
index fac65845526a..b8693049f3b6 100644
--- a/drivers/staging/lustre/lustre/llite/llite_lib.c
+++ b/drivers/staging/lustre/lustre/llite/llite_lib.c
@@ -1905,8 +1905,14 @@ int ll_update_inode(struct inode *inode, struct lustre_md *md)
}
if (body->mbo_valid & OBD_MD_TSTATE) {
+ /* Set LLIF_FILE_RESTORING if restore ongoing and
+ * clear it when done to ensure to start again
+ * glimpsing updated attrs
+ */
if (body->mbo_t_state & MS_RESTORE)
set_bit(LLIF_FILE_RESTORING, &lli->lli_flags);
+ else
+ clear_bit(LLIF_FILE_RESTORING, &lli->lli_flags);
}
return 0;
More information about the lustre-devel
mailing list