X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Fobdclass%2Fdebug.c;h=9f9c0a4f8b7ed0af92176d797c3750175a33e342;hb=3b5fc14da24a5c78346c2f42ea61b51c1d8c6191;hp=1c556bbc8582610d56abac8a8f4ea92a95a74f2b;hpb=52257a67e4d56172a4289a12509525154d8c790d;p=fs%2Flustre-release.git diff --git a/lustre/obdclass/debug.c b/lustre/obdclass/debug.c index 1c556bb..9f9c0a4 100644 --- a/lustre/obdclass/debug.c +++ b/lustre/obdclass/debug.c @@ -27,7 +27,7 @@ * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved. * Use is subject to license terms. * - * Copyright (c) 2012, Whamcloud, Inc. + * Copyright (c) 2012, 2013, Intel Corporation. */ /* * This file is part of Lustre, http://www.lustre.org/ @@ -40,37 +40,21 @@ #define DEBUG_SUBSYSTEM D_OTHER -#ifndef __KERNEL__ -# include -#endif -#include #include #include #include void dump_lniobuf(struct niobuf_local *nb) { - CDEBUG(D_RPCTRACE, - "niobuf_local: offset="LPD64", len=%d, page=%p, rc=%d\n", - nb->offset, nb->len, nb->page, nb->rc); - CDEBUG(D_RPCTRACE, "nb->page: index = %ld\n", - nb->page ? cfs_page_index(nb->page) : -1); + CDEBUG(D_RPCTRACE, + "niobuf_local: file_offset="LPD64", len=%d, page=%p, rc=%d\n", + nb->lnb_file_offset, nb->lnb_len, nb->lnb_page, nb->lnb_rc); + CDEBUG(D_RPCTRACE, "nb->page: index = %ld\n", + nb->lnb_page ? page_index(nb->lnb_page) : -1); } EXPORT_SYMBOL(dump_lniobuf); -void dump_lsm(int level, struct lov_stripe_md *lsm) -{ - CDEBUG(level, "lsm %p, objid "LPX64", maxbytes "LPX64", magic 0x%08X, " - "stripe_size %u, stripe_count %u, refc: %d, " - "layout_gen %u, pool ["LOV_POOLNAMEF"]\n", lsm, - lsm->lsm_object_id, lsm->lsm_maxbytes, lsm->lsm_magic, - lsm->lsm_stripe_size, lsm->lsm_stripe_count, - cfs_atomic_read(&lsm->lsm_refc), lsm->lsm_layout_gen, - lsm->lsm_pool_name); -} -EXPORT_SYMBOL(dump_lsm); - #define LPDS sizeof(__u64) int block_debug_setup(void *addr, int len, __u64 off, __u64 id) {