~ubuntu-branches/ubuntu/precise/linux-ti-omap/precise

« back to all changes in this revision

Viewing changes to ubuntu/aufs/spl.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Bader, Amit Kucheria
  • Date: 2010-03-23 18:05:12 UTC
  • Revision ID: james.westby@ubuntu.com-20100323180512-iavj906ocnphdubp
Tags: 2.6.33-500.3
[ Amit Kucheria ]

* [Config] Fix the debug package name to end in -dbgsym
* SAUCE: Add the ubuntu/ drivers to omap
* SAUCE: Re-export the symbols for aufs
* [Config] Enable AUFS and COMPCACHE

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2005-2009 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
#include <linux/spinlock.h>
 
29
#include <linux/list.h>
 
30
 
 
31
struct au_splhead {
 
32
        spinlock_t              spin;
 
33
        struct list_head        head;
 
34
};
 
35
 
 
36
static inline void au_spl_init(struct au_splhead *spl)
 
37
{
 
38
        spin_lock_init(&spl->spin);
 
39
        INIT_LIST_HEAD(&spl->head);
 
40
}
 
41
 
 
42
static inline void au_spl_add(struct list_head *list, struct au_splhead *spl)
 
43
{
 
44
        spin_lock(&spl->spin);
 
45
        list_add(list, &spl->head);
 
46
        spin_unlock(&spl->spin);
 
47
}
 
48
 
 
49
static inline void au_spl_del(struct list_head *list, struct au_splhead *spl)
 
50
{
 
51
        spin_lock(&spl->spin);
 
52
        list_del(list);
 
53
        spin_unlock(&spl->spin);
 
54
}
 
55
 
 
56
#endif /* __KERNEL__ */
 
57
#endif /* __AUFS_SPL_H__ */