Merge "[DO NOT MERGE] Use FUSE_SHORTCIRCUIT if available" into mnc-dr1.5-dev
This commit is contained in:
commit
b84295d027
1 changed files with 17 additions and 0 deletions
|
|
@ -1214,7 +1214,13 @@ static int handle_open(struct fuse* fuse, struct fuse_handler* handler,
|
||||||
}
|
}
|
||||||
out.fh = ptr_to_id(h);
|
out.fh = ptr_to_id(h);
|
||||||
out.open_flags = 0;
|
out.open_flags = 0;
|
||||||
|
|
||||||
|
#ifdef FUSE_STACKED_IO
|
||||||
|
out.lower_fd = h->fd;
|
||||||
|
#else
|
||||||
out.padding = 0;
|
out.padding = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
fuse_reply(fuse, hdr->unique, &out, sizeof(out));
|
fuse_reply(fuse, hdr->unique, &out, sizeof(out));
|
||||||
return NO_STATUS;
|
return NO_STATUS;
|
||||||
}
|
}
|
||||||
|
|
@ -1378,7 +1384,13 @@ static int handle_opendir(struct fuse* fuse, struct fuse_handler* handler,
|
||||||
}
|
}
|
||||||
out.fh = ptr_to_id(h);
|
out.fh = ptr_to_id(h);
|
||||||
out.open_flags = 0;
|
out.open_flags = 0;
|
||||||
|
|
||||||
|
#ifdef FUSE_STACKED_IO
|
||||||
|
out.lower_fd = -1;
|
||||||
|
#else
|
||||||
out.padding = 0;
|
out.padding = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
fuse_reply(fuse, hdr->unique, &out, sizeof(out));
|
fuse_reply(fuse, hdr->unique, &out, sizeof(out));
|
||||||
return NO_STATUS;
|
return NO_STATUS;
|
||||||
}
|
}
|
||||||
|
|
@ -1460,6 +1472,11 @@ static int handle_init(struct fuse* fuse, struct fuse_handler* handler,
|
||||||
out.major = FUSE_KERNEL_VERSION;
|
out.major = FUSE_KERNEL_VERSION;
|
||||||
out.max_readahead = req->max_readahead;
|
out.max_readahead = req->max_readahead;
|
||||||
out.flags = FUSE_ATOMIC_O_TRUNC | FUSE_BIG_WRITES;
|
out.flags = FUSE_ATOMIC_O_TRUNC | FUSE_BIG_WRITES;
|
||||||
|
|
||||||
|
#ifdef FUSE_STACKED_IO
|
||||||
|
out.flags |= FUSE_STACKED_IO;
|
||||||
|
#endif
|
||||||
|
|
||||||
out.max_background = 32;
|
out.max_background = 32;
|
||||||
out.congestion_threshold = 32;
|
out.congestion_threshold = 32;
|
||||||
out.max_write = MAX_WRITE;
|
out.max_write = MAX_WRITE;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue