Whamcloud - gitweb
LU-6245 client: remove types abstraction from client code
[fs/lustre-release.git] / lustre / fld / fld_request.c
index 1999dac..374d405 100644 (file)
@@ -92,7 +92,7 @@ again:
                goto again;
        }
 
-        CERROR("%s: Can't find target by hash %d (seq "LPX64"). "
+       CERROR("%s: Can't find target by hash %d (seq %#llx). "
                "Targets (%d):\n", fld->lcf_name, hash, seq,
                fld->lcf_count);
 
@@ -103,7 +103,7 @@ again:
                         (char *)target->ft_exp->exp_obd->obd_uuid.uuid :
                         "<null>";
 
-                CERROR("  exp: 0x%p (%s), srv: 0x%p (%s), idx: "LPU64"\n",
+               CERROR("  exp: 0x%p (%s), srv: 0x%p (%s), idx: %llu\n",
                        target->ft_exp, exp_name, target->ft_srv,
                        srv_name, target->ft_idx);
         }
@@ -140,8 +140,8 @@ fld_client_get_target(struct lu_client_fld *fld, u64 seq)
        spin_unlock(&fld->lcf_lock);
 
         if (target != NULL) {
-                CDEBUG(D_INFO, "%s: Found target (idx "LPU64
-                       ") by seq "LPX64"\n", fld->lcf_name,
+               CDEBUG(D_INFO, "%s: Found target (idx %llu"
+                      ") by seq %#llx\n", fld->lcf_name,
                        target->ft_idx, seq);
         }
 
@@ -164,7 +164,7 @@ int fld_client_add_target(struct lu_client_fld *fld,
         LASSERT(name != NULL);
         LASSERT(tar->ft_srv != NULL || tar->ft_exp != NULL);
 
-       CDEBUG(D_INFO, "%s: Adding target %s (idx "LPU64")\n", fld->lcf_name,
+       CDEBUG(D_INFO, "%s: Adding target %s (idx %llu)\n", fld->lcf_name,
               name, tar->ft_idx);
 
         OBD_ALLOC_PTR(target);
@@ -176,7 +176,7 @@ int fld_client_add_target(struct lu_client_fld *fld,
                if (tmp->ft_idx == tar->ft_idx) {
                        spin_unlock(&fld->lcf_lock);
                         OBD_FREE_PTR(target);
-                        CERROR("Target %s exists in FLD and known as %s:#"LPU64"\n",
+                       CERROR("Target %s exists in FLD and known as %s:#%llu\n",
                                name, fld_target_name(tmp), tmp->ft_idx);
                         RETURN(-EEXIST);
                 }
@@ -482,8 +482,8 @@ int fld_client_lookup(struct lu_client_fld *fld, u64 seq, u32 *mds,
         LASSERT(target != NULL);
        origin = target;
 again:
-        CDEBUG(D_INFO, "%s: Lookup fld entry (seq: "LPX64") on "
-               "target %s (idx "LPU64")\n", fld->lcf_name, seq,
+       CDEBUG(D_INFO, "%s: Lookup fld entry (seq: %#llx) on "
+              "target %s (idx %llu)\n", fld->lcf_name, seq,
                fld_target_name(target), target->ft_idx);
 
        res.lsr_start = seq;