From ccf0e17d37c149f991714a8587d955dfe6a46e40 Mon Sep 17 00:00:00 2001 From: braam Date: Mon, 25 Feb 2002 20:45:32 +0000 Subject: [PATCH] Wrong object id sent to obd - fixed --- lustre/llite/rw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/llite/rw.c b/lustre/llite/rw.c index bb58088..149c077 100644 --- a/lustre/llite/rw.c +++ b/lustre/llite/rw.c @@ -119,8 +119,7 @@ inline struct obdo * ll_oa_from_inode(struct inode *inode, int valid) CDEBUG(D_INFO, "src inode %ld, dst obdo %ld valid 0x%08x\n", inode->i_ino, (long)oa->o_id, oa->o_valid); - obdo_from_inode(oa, inode); - +#if 0 /* this will transfer metadata for the logical object to the oa: that metadata could contain the constituent objects */ @@ -130,6 +129,7 @@ inline struct obdo * ll_oa_from_inode(struct inode *inode, int valid) oa->o_obdflags |= OBD_FL_INLINEDATA; oa->o_valid |= OBD_MD_FLINLINE; } +#endif return oa; } /* ll_oa_from_inode */ -- 1.8.3.1