diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-02-19 16:55:40 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-02-19 16:55:40 +0000 |
commit | 76f6578928809ac2e687dc0979f3051a00b56970 (patch) | |
tree | 0fc55deed8e8a746ecfea1ff5596b582f8898c8a /lib/fuse_i.h | |
parent | 18e75e4cb186b5d247caea5c9aa21b69e4914c50 (diff) | |
download | libfuse-76f6578928809ac2e687dc0979f3051a00b56970.tar.gz |
improvements to the kernel interface
Diffstat (limited to 'lib/fuse_i.h')
-rw-r--r-- | lib/fuse_i.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/fuse_i.h b/lib/fuse_i.h index 52f1fdc..4eaa5ba 100644 --- a/lib/fuse_i.h +++ b/lib/fuse_i.h @@ -16,6 +16,7 @@ struct node { struct node *name_next; struct node *ino_next; fino_t ino; + unsigned int generation; fino_t parent; char *name; int mode; @@ -32,6 +33,7 @@ struct fuse { struct node **ino_table; size_t ino_table_size; fino_t ctr; + unsigned int generation; pthread_mutex_t lock; int numworker; int numavail; |