Whamcloud - gitweb
b=20038
[fs/lustre-release.git] / lustre / include / linux / obd.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef __LINUX_OBD_H
38 #define __LINUX_OBD_H
39
40 #ifndef __OBD_H
41 #error Do not #include this file directly. #include <obd.h> instead
42 #endif
43
44 #include <obd_support.h>
45
46 #ifdef __KERNEL__
47 # include <linux/fs.h>
48 # include <linux/list.h>
49 # include <linux/sched.h>  /* for struct task_struct, for current.h */
50 # include <asm/current.h>  /* for smp_lock.h */
51 # include <linux/smp_lock.h>
52 # include <linux/proc_fs.h>
53 # include <linux/mount.h>
54 # ifndef HAVE_VFS_INTENT_PATCHES
55 #  include <linux/lustre_intent.h>
56 # endif
57 #endif
58
59 typedef struct {
60         spinlock_t          lock;
61         unsigned long       time;
62         struct task_struct *task;
63         const char         *func;
64         int                 line;
65 } client_obd_lock_t;
66
67 static inline void client_obd_list_lock_init(client_obd_lock_t *lock)
68 {
69         spin_lock_init(&lock->lock);
70 }
71
72 static inline void client_obd_list_lock_done(client_obd_lock_t *lock)
73 {}
74
75 static inline void __client_obd_list_lock(client_obd_lock_t *lock,
76                                           const char *func,
77                                           int line)
78 {
79         unsigned long cur = jiffies;
80         while (1) {
81                 if (spin_trylock(&lock->lock)) {
82                         LASSERT(lock->task == NULL);
83                         lock->task = current;
84                         lock->func = func;
85                         lock->line = line;
86                         lock->time = jiffies;
87                         break;
88                 }
89
90                 if ((jiffies - cur > 5 * HZ) &&
91                     (jiffies - lock->time > 5 * HZ)) {
92                         LCONSOLE_WARN("LOCK UP! the lock %p was acquired"
93                                       " by <%s:%d:%s:%d> %lu time, I'm %s:%d\n",
94                                       lock, lock->task->comm, lock->task->pid,
95                                       lock->func, lock->line,
96                                       (jiffies - lock->time),
97                                       current->comm, current->pid);
98                         LCONSOLE_WARN("====== for process holding the "
99                                       "lock =====\n");
100                         libcfs_debug_dumpstack(lock->task);
101                         LCONSOLE_WARN("====== for current process =====\n");
102                         libcfs_debug_dumpstack(NULL);
103                         LCONSOLE_WARN("====== end =======\n");
104                         cfs_pause(1000* HZ);
105                 }
106         }
107 }
108
109 #define client_obd_list_lock(lock) \
110         __client_obd_list_lock(lock, __FUNCTION__, __LINE__)
111
112 static inline void client_obd_list_unlock(client_obd_lock_t *lock)
113 {
114         LASSERT(lock->task != NULL);
115         lock->task = NULL;
116         lock->time = jiffies;
117         spin_unlock(&lock->lock);
118 }
119
120 static inline int client_obd_list_is_locked(client_obd_lock_t *lock)
121 {
122         return spin_is_locked(&lock->lock);
123 }
124
125 #if defined(__KERNEL__) && !defined(HAVE_ADLER)
126 /* zlib_adler() is an inline function defined in zutil.h */
127 #define HAVE_ADLER
128 #endif
129 #endif /* __LINUX_OBD_H */