~james-w/+junk/fuse-debian-upstream

« back to all changes in this revision

Viewing changes to lib/fuse_kernel_compat5.h

  • Committer: James Westby
  • Date: 2008-05-16 12:57:48 UTC
  • Revision ID: jw+debian@jameswestby.net-20080516125748-b8m5dtnbbyjtjpkg
Tags: upstream-debian-2.3.0
Import upstream from fuse_2.3.0.orig.tar.gz

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
struct fuse_mkdir_in_compat5 {
 
2
        __u32   mode;
 
3
};
 
4
 
 
5
struct fuse_setattr_in_compat5 {
 
6
        __u32   valid;
 
7
        struct fuse_attr attr;
 
8
};
 
9
 
 
10
struct fuse_open_out_compat5 {
 
11
        __u64   fh;
 
12
        __u32   open_flags;
 
13
};
 
14
 
 
15
struct fuse_write_out_compat5 {
 
16
        __u32   size;
 
17
};
 
18
 
 
19
struct fuse_getxattr_out_compat5 {
 
20
        __u32   size;
 
21
};
 
22
 
 
23
struct fuse_in_header_compat5 {
 
24
        __u32   len;
 
25
        __u32   opcode;
 
26
        __u64   unique;
 
27
        __u64   nodeid;
 
28
        __u32   uid;
 
29
        __u32   gid;
 
30
        __u32   pid;
 
31
};
 
32
 
 
33
struct fuse_dirent_compat5 {
 
34
        __u64   ino;
 
35
        __u32   namelen;
 
36
        __u32   type;
 
37
        char name[0];
 
38
};
 
39
 
 
40
#define FUSE_NAME_OFFSET_COMPAT5 ((unsigned) ((struct fuse_dirent_compat5 *) 0)->name)