FreeBSD Bugzilla – Attachment 165691 Details for
Bug 206238
FUSE can't enter to DIRECT_IO mode during file create.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch fuse so that a create with DIRECT_IO opens with DIRECT_IO
fuse-createio.patch (text/plain), 439 bytes, created by
rmacklem
on 2016-01-16 23:24:50 UTC
(
hide
)
Description:
patch fuse so that a create with DIRECT_IO opens with DIRECT_IO
Filename:
MIME Type:
Creator:
rmacklem
Created:
2016-01-16 23:24:50 UTC
Size:
439 bytes
patch
obsolete
>--- fs/fuse/fuse_vnops.c.sav5 2016-01-15 17:14:44.105194000 -0500 >+++ fs/fuse/fuse_vnops.c 2016-01-15 17:14:49.723799000 -0500 >@@ -1158,7 +1158,8 @@ fuse_vnop_open(struct vop_open_args *ap) > fufh_type = FUFH_RDONLY; > } else { > fufh_type = fuse_filehandle_xlate_from_fflags(mode); >- if (fufh_type == FUFH_WRONLY) >+ if (fufh_type == FUFH_WRONLY || >+ (fvdat->flag & FN_DIRECTIO) != 0) > fuse_open_flags = FOPEN_DIRECT_IO; > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 206238
:
165690
| 165691