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

« back to all changes in this revision

Viewing changes to fs/aufs/cpup.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:
17
17
 */
18
18
 
19
19
/*
20
 
 * copy-up or down functions
 
20
 * copy-up/down functions
21
21
 *
22
 
 * $Id: cpup.h,v 1.29 2008/03/31 07:45:32 sfjro Exp $
 
22
 * $Id: cpup.h,v 1.31 2008/04/13 23:38:24 sfjro Exp $
23
23
 */
24
24
 
25
25
#ifndef __AUFS_CPUP_H__
80
80
/* keep timestamps when copyup */
81
81
struct au_dtime {
82
82
        struct dentry *dt_dentry, *dt_h_dentry;
83
 
        struct aufs_hinode *dt_hdir;
 
83
        struct au_hinode *dt_hdir;
84
84
        struct timespec dt_atime, dt_mtime;
85
85
};
86
86
void au_dtime_store(struct au_dtime *dt, struct dentry *dentry,
87
 
                    struct dentry *h_dentry, struct aufs_hinode *hdir);
 
87
                    struct dentry *h_dentry, struct au_hinode *hdir);
88
88
void au_dtime_revert(struct au_dtime *dt);
89
89
 
90
90
#endif /* __KERNEL__ */