Whamcloud - gitweb
LU-13783 procfs: fix improper prop_ops fields
[fs/lustre-release.git] / lustre / obdecho / debug.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2014, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/obdclass/debug.c
32  *
33  * Helper routines for dumping data structs for debugging.
34  */
35
36 #define DEBUG_SUBSYSTEM D_OTHER
37
38
39 #include <obd_support.h>
40 #include "echo_internal.h"
41 #include <lustre_net.h>
42
43 #define LPDS sizeof(__u64)
44 int block_debug_setup(void *addr, int len, __u64 off, __u64 id)
45 {
46         LASSERT(addr);
47
48         off = cpu_to_le64 (off);
49         id = cpu_to_le64 (id);
50         memcpy(addr, (char *)&off, LPDS);
51         memcpy(addr + LPDS, (char *)&id, LPDS);
52
53         addr += len - LPDS - LPDS;
54         memcpy(addr, (char *)&off, LPDS);
55         memcpy(addr + LPDS, (char *)&id, LPDS);
56
57         return 0;
58 }
59 EXPORT_SYMBOL(block_debug_setup);
60
61 int block_debug_check(char *who, void *addr, int end, __u64 off, __u64 id)
62 {
63         __u64 ne_off;
64         int err = 0;
65
66         LASSERT(addr);
67
68         ne_off = le64_to_cpu(off);
69         id = le64_to_cpu(id);
70         if (memcmp(addr, (char *)&ne_off, LPDS)) {
71                 CDEBUG(D_ERROR,
72                        "%s: id %#llx offset %llu off: %#llx != %#llx\n",
73                        who, id, off, *(__u64 *)addr, ne_off);
74                 err = -EINVAL;
75         }
76         if (memcmp(addr + LPDS, (char *)&id, LPDS)) {
77                 CDEBUG(D_ERROR, "%s: id %#llx offset %llu id: %#llx != %#llx\n",
78                        who, id, off, *(__u64 *)(addr + LPDS), id);
79                 err = -EINVAL;
80         }
81
82         addr += end - LPDS - LPDS;
83         if (memcmp(addr, (char *)&ne_off, LPDS)) {
84                 CDEBUG(D_ERROR,
85                        "%s: id %#llx offset %llu end off: %#llx != %#llx\n",
86                        who, id, off, *(__u64 *)addr, ne_off);
87                 err = -EINVAL;
88         }
89         if (memcmp(addr + LPDS, (char *)&id, LPDS)) {
90                 CDEBUG(D_ERROR,
91                        "%s: id %#llx offset %llu end id: %#llx != %#llx\n",
92                        who, id, off, *(__u64 *)(addr + LPDS), id);
93                 err = -EINVAL;
94         }
95
96         return err;
97 }
98 EXPORT_SYMBOL(block_debug_check);
99 #undef LPDS