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

« back to all changes in this revision

Viewing changes to fs/aufs25/file.h

  • Committer: Bazaar Package Importer
  • Author(s): Julian Andres Klode
  • Date: 2008-08-21 14:58:54 UTC
  • mfrom: (1.1.8 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080821145854-4b49x09r4zmvlk5o
Tags: 0+20080719-4
01_vserver_apparmor.dpatch: [UPDATE] Disable vserver patches on kernel 
2.6.26, because they are not needed anymore. (Closes: #495921)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
/*
20
20
 * file operations
21
21
 *
22
 
 * $Id: file.h,v 1.4 2008/05/26 04:04:24 sfjro Exp $
 
22
 * $Id: file.h,v 1.5 2008/06/30 03:53:43 sfjro Exp $
23
23
 */
24
24
 
25
25
#ifndef __AUFS_FILE_H__
67
67
int au_do_open(struct inode *inode, struct file *file,
68
68
               int (*open)(struct file *file, int flags));
69
69
int au_reopen_nondir(struct file *file);
70
 
int au_ready_to_write(struct file *file, loff_t len);
71
 
int au_reval_and_lock_finfo(struct file *file, int (*reopen)(struct file *file),
72
 
                            int wlock, int locked);
 
70
struct au_pin;
 
71
int au_ready_to_write(struct file *file, loff_t len, struct au_pin *pin);
 
72
int au_reval_and_lock_fdi(struct file *file, int (*reopen)(struct file *file),
 
73
                          int wlock, int locked);
73
74
 
74
75
/* f_op.c */
75
76
extern struct file_operations aufs_file_fop;