X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Flmv%2Flmv_fld.c;h=8d111d9d3e3e2efc4fafc1413b82e6d3f90359e6;hp=f9b6a3ae83fdf738012b31fe4bbf4826b2ea9bc0;hb=06a67987e06f7fa9c0bfde549d54e2bed0a78ade;hpb=70e80ade90af09300396706b8910e196a7928520 diff --git a/lustre/lmv/lmv_fld.c b/lustre/lmv/lmv_fld.c index f9b6a3a..8d111d9 100644 --- a/lustre/lmv/lmv_fld.c +++ b/lustre/lmv/lmv_fld.c @@ -16,8 +16,8 @@ * in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU General Public License - * version 2 along with this program; If not, see [sun.com URL with a - * copy of GPLv2]. + * version 2 along with this program; If not, see + * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or @@ -26,7 +26,7 @@ * GPL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved + * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. * Use is subject to license terms. */ /* @@ -50,8 +50,8 @@ #include #endif -#include #include +#include #include #include #include @@ -68,19 +68,21 @@ int lmv_fld_lookup(struct lmv_obd *lmv, ENTRY; LASSERT(fid_is_sane(fid)); - rc = fld_client_lookup(&lmv->lmv_fld, fid_seq(fid), mds, NULL); + rc = fld_client_lookup(&lmv->lmv_fld, fid_seq(fid), mds, + LU_SEQ_RANGE_MDT, NULL); if (rc) { - CERROR("Error while looking for mds number. Seq "LPU64 + CERROR("Error while looking for mds number. Seq "LPX64 ", err = %d\n", fid_seq(fid), rc); RETURN(rc); } - - CDEBUG(D_INFO, "Got mds "LPU64" for sequence: "LPU64"\n", - *mds, fid_seq(fid)); + + CDEBUG(D_INODE, "FLD lookup got mds #%x for fid="DFID"\n", + *mds, PFID(fid)); if (*mds >= lmv->desc.ld_tgt_count) { - CERROR("Got invalid mds: "LPU64" (max: %d)\n", - *mds, lmv->desc.ld_tgt_count); + CERROR("FLD lookup got invalid mds #%x (max: %x) " + "for fid="DFID"\n", *mds, lmv->desc.ld_tgt_count, + PFID(fid)); rc = -EINVAL; } RETURN(rc);