mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-23 03:26:02 +08:00
d119807adb
Does not enable READDIR_AUTO. Might add in the future.
25 lines
396 B
C
25 lines
396 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct fuse_attr_s fuse_attr_t;
|
|
struct fuse_attr_s
|
|
{
|
|
uint64_t ino;
|
|
uint64_t size;
|
|
uint64_t blocks;
|
|
uint64_t atime;
|
|
uint64_t mtime;
|
|
uint64_t ctime;
|
|
uint32_t atimensec;
|
|
uint32_t mtimensec;
|
|
uint32_t ctimensec;
|
|
uint32_t mode;
|
|
uint32_t nlink;
|
|
uint32_t uid;
|
|
uint32_t gid;
|
|
uint32_t rdev;
|
|
uint32_t blksize;
|
|
uint32_t _padding;
|
|
};
|