diff options
author | Pavan Sondur <pavan@gluster.com> | 2009-11-03 11:08:32 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-11-03 23:01:22 -0800 |
commit | 7bd570a007202e6eb505091dba611b8320633a26 (patch) | |
tree | 2819051a7cf94e00fd488e0b11bdbd84fe298064 | |
parent | 612aed4b6aab7447195c7e6715bbbf257b4c62f2 (diff) |
Remove fuse_lowlevel.h from xlator.h in libglusterfs.
Signed-off-by: Pavan Vilas Sondur <pavan@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 343 (Placeholder bug for adding volgen into rpm, bdb makefile changes, etc)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=343
-rw-r--r-- | libglusterfs/src/xlator.h | 2 | ||||
-rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.c | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/libglusterfs/src/xlator.h b/libglusterfs/src/xlator.h index 3fda2bc40..d0c8ae836 100644 --- a/libglusterfs/src/xlator.h +++ b/libglusterfs/src/xlator.h @@ -37,8 +37,6 @@ #include "compat.h" #include "list.h" -#include <fuse/fuse_lowlevel.h> - #define FIRST_CHILD(xl) (xl->children->xlator) #define GF_SET_ATTR_MODE 0x1 diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index 5e7e1f4d4..45e23cfc1 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -366,7 +366,7 @@ send_fuse_err (xlator_t *this, fuse_in_header_t *finh, int error) } static inode_t * -fuse_ino_to_inode (fuse_ino_t ino, inode_table_t *table) +fuse_ino_to_inode (uint64_t ino, inode_table_t *table) { inode_t *inode = NULL; @@ -380,7 +380,7 @@ fuse_ino_to_inode (fuse_ino_t ino, inode_table_t *table) return inode; } -static fuse_ino_t +static uint64_t inode_to_nodeid (inode_t *inode) { if (!inode || inode->ino == 1) |