mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
248 B
14 lines
248 B
#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;
|
|
};
|