mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-02-03 08:45:32 +08:00
84592a9f13
After numerous tests it was found the splice features were at best the same performance as standard IO and at worse actually slower. To simplify the code all splice features are removed.
12 lines
158 B
C
12 lines
158 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct fuse_msgbuf_t fuse_msgbuf_t;
|
|
struct fuse_msgbuf_t
|
|
{
|
|
char *mem;
|
|
uint32_t size;
|
|
uint32_t used;
|
|
};
|