mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-22 09:43:45 +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.
10 lines
267 B
C++
10 lines
267 B
C++
#pragma once
|
|
|
|
#include "fuse_msgbuf.h"
|
|
|
|
int fuse_receive_buf(struct fuse_session *se,
|
|
fuse_msgbuf_t *msgbuf);
|
|
void fuse_process_buf(void *data,
|
|
const fuse_msgbuf_t *msgbuf,
|
|
struct fuse_chan *ch);
|