~ubuntu-branches/ubuntu/quantal/aufs/quantal

« back to all changes in this revision

Viewing changes to fs/aufs/dcsub.h

  • Committer: Bazaar Package Importer
  • Author(s): Julian Andres Klode
  • Date: 2007-05-09 15:29:28 UTC
  • Revision ID: james.westby@ubuntu.com-20070509152928-4sywrmkifvz0bq02
Tags: upstream-0+20070509
ImportĀ upstreamĀ versionĀ 0+20070509

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2007 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
/* $Id: dcsub.h,v 1.1 2007/04/16 01:14:30 sfjro Exp $ */
 
20
 
 
21
#ifndef __AUFS_DCSUB_H__
 
22
#define __AUFS_DCSUB_H__
 
23
 
 
24
#include <linux/dcache.h>
 
25
 
 
26
#ifdef __KERNEL__
 
27
 
 
28
struct au_dpage {
 
29
        int ndentry;
 
30
        struct dentry **dentries;
 
31
};
 
32
 
 
33
struct au_dcsub_pages {
 
34
        int ndpage;
 
35
        struct au_dpage *dpages;
 
36
};
 
37
 
 
38
/* ---------------------------------------------------------------------- */
 
39
 
 
40
int au_dpages_init(struct au_dcsub_pages *dpages, gfp_t gfp);
 
41
void au_dpages_free(struct au_dcsub_pages *dpages);
 
42
typedef int (*au_dpages_test)(struct dentry *dentry, void *arg);
 
43
int au_dcsub_pages(struct au_dcsub_pages *dpages, struct dentry *root,
 
44
                   au_dpages_test test, void *arg);
 
45
 
 
46
#endif /* __KERNEL__ */
 
47
#endif /* __AUFS_DCSUB_H__ */