Merge branch 'stable-3.2' into pandora-3.2
[pandora-kernel.git] / fs / aufs / spl.h
1 /*
2  * Copyright (C) 2005-2012 Junjiro R. Okajima
3  *
4  * This program, aufs is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18
19 /*
20  * simple list protected by a spinlock
21  */
22
23 #ifndef __AUFS_SPL_H__
24 #define __AUFS_SPL_H__
25
26 #ifdef __KERNEL__
27
28 struct au_splhead {
29         spinlock_t              spin;
30         struct list_head        head;
31 };
32
33 static inline void au_spl_init(struct au_splhead *spl)
34 {
35         spin_lock_init(&spl->spin);
36         INIT_LIST_HEAD(&spl->head);
37 }
38
39 static inline void au_spl_add(struct list_head *list, struct au_splhead *spl)
40 {
41         spin_lock(&spl->spin);
42         list_add(list, &spl->head);
43         spin_unlock(&spl->spin);
44 }
45
46 static inline void au_spl_del(struct list_head *list, struct au_splhead *spl)
47 {
48         spin_lock(&spl->spin);
49         list_del(list);
50         spin_unlock(&spl->spin);
51 }
52
53 static inline void au_spl_del_rcu(struct list_head *list,
54                                   struct au_splhead *spl)
55 {
56         spin_lock(&spl->spin);
57         list_del_rcu(list);
58         spin_unlock(&spl->spin);
59 }
60
61 #endif /* __KERNEL__ */
62 #endif /* __AUFS_SPL_H__ */