Whamcloud - gitweb
LU-7003 utils: must quote the value of the context option
[fs/lustre-release.git] / lustre / utils / ll_decode_filter_fid.c
index 7f2e170..00de58e 100644 (file)
@@ -27,7 +27,7 @@
  * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
  * Use is subject to license terms.
  *
- * Copyright (c) 2011, 2013, Intel Corporation.
+ * Copyright (c) 2011, 2014, Intel Corporation.
  */
 /*
  * This file is part of Lustre, http://www.lustre.org/
@@ -46,7 +46,7 @@
 #include <errno.h>
 #include <sys/types.h>
 #include <sys/xattr.h>
-#include <libcfs/libcfs.h>
+#include <libcfs/byteorder.h>
 #include <lustre/lustre_user.h>
 
 int main(int argc, char *argv[])
@@ -75,17 +75,17 @@ int main(int argc, char *argv[])
                        struct filter_fid_old *ffo = (void *)buf;
 
                        /* old filter_fid */
-                       printf("%s: objid="LPU64" seq="LPU64" parent="DFID
+                       printf("%s: objid=%llu seq=%llu parent="DFID
                               " stripe=%u\n", argv[i],
-                              le64_to_cpu(ffo->ff_objid),
-                              le64_to_cpu(ffo->ff_seq),
-                              le64_to_cpu(ffo->ff_parent.f_seq),
+                              (unsigned long long)le64_to_cpu(ffo->ff_objid),
+                              (unsigned long long)le64_to_cpu(ffo->ff_seq),
+                              (unsigned long long)le64_to_cpu(ffo->ff_parent.f_seq),
                               le32_to_cpu(ffo->ff_parent.f_oid), 0 /* ver */,
                               /* this is stripe_nr actually */
                               le32_to_cpu(ffo->ff_parent.f_stripe_idx));
                } else {
                        printf("%s: parent="DFID" stripe=%u\n", argv[i],
-                              le64_to_cpu(ff->ff_parent.f_seq),
+                              (unsigned long long)le64_to_cpu(ff->ff_parent.f_seq),
                               le32_to_cpu(ff->ff_parent.f_oid), 0, /* ver */
                               /* this is stripe_nr actually */
                               le32_to_cpu(ff->ff_parent.f_stripe_idx));