X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Fobdclass%2Fdebug.c;h=41331c877ae2009f378624a728b72faa1d432aeb;hp=829f1bae08e1249fe17347c6e752b3a1e8f6ed15;hb=adc9384fd11b7fb3b71b363c310c9fa7b37e469f;hpb=65701b4a30efdb695776bcf690a2b3cabc928da1 diff --git a/lustre/obdclass/debug.c b/lustre/obdclass/debug.c index 829f1ba..41331c8 100644 --- a/lustre/obdclass/debug.c +++ b/lustre/obdclass/debug.c @@ -1,6 +1,4 @@ -/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- - * vim:expandtab:shiftwidth=8:tabstop=8: - * +/* * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -29,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, 2014, Intel Corporation. */ /* * This file is part of Lustre, http://www.lustre.org/ @@ -42,36 +40,18 @@ #define DEBUG_SUBSYSTEM D_OTHER -#ifndef EXPORT_SYMTAB -# define EXPORT_SYMTAB -#endif -#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); -} -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, " - "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, - lsm->lsm_layout_gen, lsm->lsm_pool_name); + 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); } #define LPDS sizeof(__u64) @@ -90,6 +70,7 @@ int block_debug_setup(void *addr, int len, __u64 off, __u64 id) return 0; } +EXPORT_SYMBOL(block_debug_setup); int block_debug_check(char *who, void *addr, int end, __u64 off, __u64 id) { @@ -125,9 +106,5 @@ int block_debug_check(char *who, void *addr, int end, __u64 off, __u64 id) return err; } -#undef LPDS - -//EXPORT_SYMBOL(dump_req); -EXPORT_SYMBOL(dump_lsm); -EXPORT_SYMBOL(block_debug_setup); EXPORT_SYMBOL(block_debug_check); +#undef LPDS