mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-25 09:41:43 +08:00
d119807adb
Does not enable READDIR_AUTO. Might add in the future.
15 lines
248 B
C
15 lines
248 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct fuse_entry_s fuse_entry_t;
|
|
struct fuse_entry_s
|
|
{
|
|
uint64_t nodeid;
|
|
uint64_t generation;
|
|
uint64_t entry_valid;
|
|
uint64_t attr_valid;
|
|
uint32_t entry_valid_nsec;
|
|
uint32_t attr_valid_nsec;
|
|
};
|