~ubuntu-branches/ubuntu/vivid/aufs/vivid

« back to all changes in this revision

Viewing changes to fs/aufs25/aufs.h

  • Committer: Bazaar Package Importer
  • Author(s): Julian Andres Klode
  • Date: 2008-05-06 18:35:50 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080506183550-0b6c974kkgc46oeh
Tags: 0+20080506-1
* New upstream release, supports Kernel 2.6.25 (Closes: #479717)
* Fix building with older Kernels (Closes: #475042)
* Update the patches 01, 04 and 07 to also patch fs/aufs25

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2005-2008 Junjiro 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
 * main header files
 
21
 *
 
22
 * $Id: aufs.h,v 1.2 2008/04/21 01:31:49 sfjro Exp $
 
23
 */
 
24
 
 
25
#ifndef __AUFS_H__
 
26
#define __AUFS_H__
 
27
 
 
28
#ifdef __KERNEL__
 
29
 
 
30
#include <linux/version.h>
 
31
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 25)
 
32
#error you got wrong version
 
33
#endif
 
34
 
 
35
#include "debug.h"
 
36
 
 
37
#include "branch.h"
 
38
#include "cpup.h"
 
39
#include "dcsub.h"
 
40
#include "dentry.h"
 
41
#include "dir.h"
 
42
#include "file.h"
 
43
#include "hinode.h"
 
44
#include "inode.h"
 
45
#include "misc.h"
 
46
#include "module.h"
 
47
#include "opts.h"
 
48
#include "super.h"
 
49
#include "sysaufs.h"
 
50
#include "vfsub.h"
 
51
#include "whout.h"
 
52
#include "wkq.h"
 
53
//#include "xattr.h"
 
54
 
 
55
#endif /* __KERNEL__ */
 
56
#endif /* __AUFS_H__ */