Move the parallel_direct_writes enable action to the init function in high level API,
it is more recommended just like commit
8ee553dac. Besides, add some comments to show
that the feature parallel_direct_writes is depend on the feature direct_io (refer to
link: https://lwn.net/ml/linux-fsdevel/
20230918150313.
3845114-1-bschubert@ddn.com for the reason).
(void) conn;
cfg->use_ino = 1;
+ /* parallel_direct_writes feature depends on direct_io features.
+ To make parallel_direct_writes valid, need either set cfg->direct_io
+ in current function (recommended in high level API) or set fi->direct_io
+ in xmp_create() or xmp_open(). */
+ // cfg->direct_io = 1;
+ cfg->parallel_direct_writes = 1;
+
/* Pick up changes from lower filesystem right away. This is
also necessary for better hardlink support. When the kernel
calls the unlink() handler, it does not know the inode of
return -errno;
fi->fh = res;
- fi->parallel_direct_writes = 1;
return 0;
}
return -errno;
fi->fh = res;
- fi->parallel_direct_writes = 1;
return 0;
}
cfg->use_ino = 1;
cfg->nullpath_ok = 1;
+ /* parallel_direct_writes feature depends on direct_io features.
+ To make parallel_direct_writes valid, need either set cfg->direct_io
+ in current function (recommended in high level API) or set fi->direct_io
+ in xmp_create() or xmp_open(). */
+ // cfg->direct_io = 1;
+ cfg->parallel_direct_writes = 1;
+
/* Pick up changes from lower filesystem right away. This is
also necessary for better hardlink support. When the kernel
calls the unlink() handler, it does not know the inode of
return -errno;
fi->fh = fd;
- fi->parallel_direct_writes = 1;
return 0;
}
return -errno;
fi->fh = fd;
- fi->parallel_direct_writes = 1;
return 0;
}
if (fs.direct_io)
fi->direct_io = 1;
+ /* parallel_direct_writes feature depends on direct_io features.
+ To make parallel_direct_writes valid, need set fi->direct_io
+ in current function. */
fi->parallel_direct_writes = 1;
Inode& inode = get_inode(e.ino);
if (fs.direct_io)
fi->direct_io = 1;
+ /* parallel_direct_writes feature depends on direct_io features.
+ To make parallel_direct_writes valid, need set fi->direct_io
+ in current function. */
fi->parallel_direct_writes = 1;
fi->fh = fd;
else if (lo->cache == CACHE_ALWAYS)
fi->keep_cache = 1;
+ /* parallel_direct_writes feature depends on direct_io features.
+ To make parallel_direct_writes valid, need set fi->direct_io
+ in current function. */
fi->parallel_direct_writes = 1;
err = lo_do_lookup(req, parent, name, &e);
else if (lo->cache == CACHE_ALWAYS)
fi->keep_cache = 1;
+ /* parallel_direct_writes feature depends on direct_io features.
+ To make parallel_direct_writes valid, need set fi->direct_io
+ in current function. */
fi->parallel_direct_writes = 1;
fuse_reply_open(req, fi);