Whamcloud - gitweb
Landing b_hd_newconfig on HEAD
[fs/lustre-release.git] / lnet / include / lnet / winnt / lib-types.h
1 /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=4:tabstop=4:
3  *
4  *  Copyright (C) 2001 Cluster File Systems, Inc. <braam@clusterfs.com>
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #ifndef __LNET_WINNT_LIB_TYPES_H__
24 #define __LNET_WINNT_LIB_TYPES_H__
25
26 #ifndef __LNET_LIB_TYPES_H__
27 #error Do not #include this file directly. #include <lnet/lib-types.h> instead
28 #endif
29
30 #include <libcfs/libcfs.h>
31
32 typedef struct {
33     spinlock_t lock;
34 } lib_ni_lock_t;
35
36 static inline void lib_ni_lock_init(lib_ni_lock_t *l)
37 {
38         spin_lock_init(&l->lock);
39 }
40
41 static inline void lib_ni_lock_fini(lib_ni_lock_t *l)
42 {}
43
44 static inline void lib_ni_lock(lib_ni_lock_t *l)
45 {
46         int     flags;
47         spin_lock_irqsave(&l->lock, flags);
48 }
49
50 static inline void lib_ni_unlock(lib_ni_lock_t *l)
51 {
52         spin_unlock_irqrestore(&l->lock, 0);
53 }
54
55 #endif