mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-29 20:13:57 +08:00
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;
|
||
|
};
|