Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / drivers / staging / lustre / lustre / libcfs / linux / linux-prim.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel Corporation.
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 #define DEBUG_SUBSYSTEM S_LNET
38 #include <linux/module.h>
39 #include <linux/kernel.h>
40 #include <linux/fs_struct.h>
41 #include <linux/sched.h>
42
43 #include "../../../include/linux/libcfs/libcfs.h"
44
45 #if defined(CONFIG_KGDB)
46 #include <linux/kgdb.h>
47 #endif
48
49 /**
50  * wait_queue_t of Linux (version < 2.6.34) is a FIFO list for exclusively
51  * waiting threads, which is not always desirable because all threads will
52  * be waken up again and again, even user only needs a few of them to be
53  * active most time. This is not good for performance because cache can
54  * be polluted by different threads.
55  *
56  * LIFO list can resolve this problem because we always wakeup the most
57  * recent active thread by default.
58  *
59  * NB: please don't call non-exclusive & exclusive wait on the same
60  * waitq if add_wait_queue_exclusive_head is used.
61  */
62 void
63 add_wait_queue_exclusive_head(wait_queue_head_t *waitq, wait_queue_t *link)
64 {
65         unsigned long flags;
66
67         spin_lock_irqsave(&waitq->lock, flags);
68         __add_wait_queue_exclusive(waitq, link);
69         spin_unlock_irqrestore(&waitq->lock, flags);
70 }
71 EXPORT_SYMBOL(add_wait_queue_exclusive_head);
72
73 void cfs_init_timer(struct timer_list *t)
74 {
75         init_timer(t);
76 }
77 EXPORT_SYMBOL(cfs_init_timer);
78
79 void cfs_timer_init(struct timer_list *t, cfs_timer_func_t *func, void *arg)
80 {
81         init_timer(t);
82         t->function = func;
83         t->data = (unsigned long)arg;
84 }
85 EXPORT_SYMBOL(cfs_timer_init);
86
87 void cfs_timer_done(struct timer_list *t)
88 {
89         return;
90 }
91 EXPORT_SYMBOL(cfs_timer_done);
92
93 void cfs_timer_arm(struct timer_list *t, unsigned long deadline)
94 {
95         mod_timer(t, deadline);
96 }
97 EXPORT_SYMBOL(cfs_timer_arm);
98
99 void cfs_timer_disarm(struct timer_list *t)
100 {
101         del_timer(t);
102 }
103 EXPORT_SYMBOL(cfs_timer_disarm);
104
105 int  cfs_timer_is_armed(struct timer_list *t)
106 {
107         return timer_pending(t);
108 }
109 EXPORT_SYMBOL(cfs_timer_is_armed);
110
111 unsigned long cfs_timer_deadline(struct timer_list *t)
112 {
113         return t->expires;
114 }
115 EXPORT_SYMBOL(cfs_timer_deadline);
116
117 void cfs_enter_debugger(void)
118 {
119 #if defined(CONFIG_KGDB)
120         /* BREAKPOINT(); */
121 #else
122         /* nothing */
123 #endif
124 }
125 EXPORT_SYMBOL(cfs_enter_debugger);
126
127
128 sigset_t
129 cfs_block_allsigs(void)
130 {
131         unsigned long     flags;
132         sigset_t        old;
133
134         spin_lock_irqsave(&current->sighand->siglock, flags);
135         old = current->blocked;
136         sigfillset(&current->blocked);
137         recalc_sigpending();
138         spin_unlock_irqrestore(&current->sighand->siglock, flags);
139
140         return old;
141 }
142 EXPORT_SYMBOL(cfs_block_allsigs);
143
144 sigset_t cfs_block_sigs(unsigned long sigs)
145 {
146         unsigned long  flags;
147         sigset_t        old;
148
149         spin_lock_irqsave(&current->sighand->siglock, flags);
150         old = current->blocked;
151         sigaddsetmask(&current->blocked, sigs);
152         recalc_sigpending();
153         spin_unlock_irqrestore(&current->sighand->siglock, flags);
154         return old;
155 }
156 EXPORT_SYMBOL(cfs_block_sigs);
157
158 /* Block all signals except for the @sigs */
159 sigset_t cfs_block_sigsinv(unsigned long sigs)
160 {
161         unsigned long flags;
162         sigset_t old;
163
164         spin_lock_irqsave(&current->sighand->siglock, flags);
165         old = current->blocked;
166         sigaddsetmask(&current->blocked, ~sigs);
167         recalc_sigpending();
168         spin_unlock_irqrestore(&current->sighand->siglock, flags);
169
170         return old;
171 }
172 EXPORT_SYMBOL(cfs_block_sigsinv);
173
174 void
175 cfs_restore_sigs(sigset_t old)
176 {
177         unsigned long  flags;
178
179         spin_lock_irqsave(&current->sighand->siglock, flags);
180         current->blocked = old;
181         recalc_sigpending();
182         spin_unlock_irqrestore(&current->sighand->siglock, flags);
183 }
184 EXPORT_SYMBOL(cfs_restore_sigs);
185
186 int
187 cfs_signal_pending(void)
188 {
189         return signal_pending(current);
190 }
191 EXPORT_SYMBOL(cfs_signal_pending);
192
193 void
194 cfs_clear_sigpending(void)
195 {
196         unsigned long flags;
197
198         spin_lock_irqsave(&current->sighand->siglock, flags);
199         clear_tsk_thread_flag(current, TIF_SIGPENDING);
200         spin_unlock_irqrestore(&current->sighand->siglock, flags);
201 }
202 EXPORT_SYMBOL(cfs_clear_sigpending);
203
204 int
205 libcfs_arch_init(void)
206 {
207         return 0;
208 }
209 EXPORT_SYMBOL(libcfs_arch_init);
210
211 void
212 libcfs_arch_cleanup(void)
213 {
214         return;
215 }
216 EXPORT_SYMBOL(libcfs_arch_cleanup);
217